/* Color Variables */
:root {
  --primary-color: #d3442f;
  --secondary-color: #2d2c28;
  --white: #fff;
  --danger-color: #c00;
}

/* Age Gate Container */
.age-gate-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999999;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Age Gate Overlay */
.age-gate-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  z-index: 2;
  filter: blur(1px);
  opacity: 0.9;
}

/* Age Gate Popup Block */
.age-gate-popup {
  background-color: var(--primary-color);
  position: relative;
  max-width: 1079px;
  width: 100%;
  padding: 60px;
  text-align: center;
  z-index: 3;
}

/* Age Gate Logo */
.age-gate-logo {
  width: 170px;
  height: auto;
  margin: 0 auto 30px;
  display: flex;
}

.age-gate-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Age Gate Content */
.age-gate-content h2 {
  color: var(--white);
  font-weight: 700;
  font-size: 46px;
  line-height: 53px;
  margin-bottom: 15px;
}

.age-gate-content h3 {
  color: var(--white);
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 15px;
}

.age-gate-content p {
  color: var(--white);
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 20px;
}

/* Age Gate Buttons */
.age-gate-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 35px;
}

.age-gate-buttons button {
  border: none;
  background-color: var(--white);
  padding: 10px 30px;
  text-decoration: none;
  color: var(--secondary-color);
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  border-radius: 25px;
  text-align: center;
  display: inline-block;
  min-width: 151.72px;
  cursor: pointer;
}

.age-gate-buttons .bg-black {
  background-color: var(--secondary-color);
  color: var(--white);
}

/* Age Gate Bottom Text */
.age-gate-bottom-text {
  display: inline-block;
  color: var(--white);
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 0;
}

/* Danger Message */
.danger {
  color: var(--danger-color);
}

/* Responsive Design */
@media (max-width: 1100px) {
  .age-gate-popup {
    max-width: 940px;
    padding: 60px 50px;
  }
}

@media (max-width: 991px) {
  .age-gate-popup {
    max-width: 700px;
    padding: 50px 30px;
  }

  .age-gate-logo {
    width: 130px;
    margin-bottom: 25px;
  }

  .age-gate-content h2 {
    font-size: 36px;
    line-height: 48px;
  }

  .age-gate-content h3 {
    font-size: 18px;
    line-height: 24px;
  }

  .age-gate-content p {
    font-size: 18px;
    line-height: 24px;
  }

  .age-gate-buttons {
    gap: 20px;
    margin-bottom: 25px;
  }
}

@media (max-width: 767px) {
  .age-gate-popup {
    max-width: 90%;
    padding: 40px 20px 30px;
  }

  .age-gate-logo {
    width: 110px;
    margin-bottom: 20px;
  }

  .age-gate-content h2 {
    font-size: 26px;
    line-height: 34px;
  }

  .age-gate-content h3 {
    font-size: 16px;
    line-height: 22px;
  }

  .age-gate-content p {
    font-size: 16px;
    line-height: 20px;
  }

  .age-gate-buttons button {
    padding: 10px 20px;
    min-width: 140.72px;
  }

  .age-gate-buttons {
    gap: 15px;
    margin-bottom: 20px;
  }

  .age-gate-bottom-text {
    font-size: 12px;
    line-height: 17px;
  }
}

@media (max-width: 350px) {
  .age-gate-popup {
    padding: 30px 15px;
  }

  .age-gate-content h2 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 13px;
  }

  .age-gate-logo {
    width: 100px;
  }
}
