/*
 Theme Name:   Divi Child
 Template:     Divi
*/

body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #f5f5f5 0%, #e9f9f7 100%);
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #252935;
}

/* Center container */
.age-gate-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Main card */
#age-gate-content {
  background: #fff;
  border-radius: 10px;
  padding: 60px 40px;
  max-width: 500px;
  width: calc(100vw - 32px);
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Headline styling */
#age-gate-content h2 div {
  font-size: 30px;
  font-weight: 700;
  margin: 30px 0;
  color: #252935;
}

.Text-sc-42ad1a7e-0.bXWebj {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.4;
  color: #252935;
}

/* Buttons */
.Button-sc-48b57672-0 {
  cursor: pointer;
  margin: 12px;
  border-radius: 9999px;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
}

.kGycOJ {
  background-color: #00cdbe;
  color: #252935;
  border: 1px solid #00cdbe;
}
.kGycOJ:hover {
  background-color: #00b3a6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cncmNk {
  background-color: #fff;
  color: #252935;
  border: 1px solid #60646f;
}
.cncmNk:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Deny overlay */
#deny-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

#deny-message {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  max-width: 300px;
  width: calc(100vw - 40px);
  color: #252935;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: fadeInUp 0.3s ease;
}

#deny-message h3 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  color: #252935;
}

#deny-message button.close-btn {
  background: #00cdbe;
  border: none;
  color: #fff;
  padding: 10px 16px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}
#deny-message button.close-btn:hover {
  background: #00b3a6;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Optional tagline at bottom of card */
#age-gate-content .tagline {
  margin-top: 40px;
  font-size: 14px;
  color: #60646f;
  opacity: 0.8;
}
