:root {
  --primaryLight: #ffba43;
  --secondary: #ffba43;
  --secondaryLight: #ffba43;
  --headerColor: #1a1a1a;
  --bodyTextColor: #4e4b66;
  --bodyTextColorWhite: #fafbfc;
  --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
  --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
  --bodyFontSize: 1rem;
  --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

body {
  margin: 0;
  padding: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}
.cs-topper {
  font-size: var(--topperFontSize);
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: inherit;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
  display: block;
}

.cs-title {
  font-size: var(--headerFontSize);
  font-weight: 900;
  line-height: 1.2em;
  text-align: inherit;
  max-width: 43.75rem;
  margin: 0 0 1rem 0;
  color: var(--headerColor);
  position: relative;
}

.cs-text {
  font-size: var(--bodyFontSize);
  line-height: 1.5em;
  text-align: inherit;
  width: 100%;
  max-width: 40.625rem;
  margin: 0;
  color: var(--bodyTextColor);
}

/* ============================================ */
/*          Age Verification Modal              */
/* ============================================ */
.age-gate-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.age-gate-overlay.hidden {
  display: none;
}

.age-gate-modal {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: ageGateFadeIn 0.3s ease;
}

@keyframes ageGateFadeIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.age-gate-modal img {
  max-width: 140px;
  height: auto;
  margin-bottom: 1.5rem;
}

.age-gate-modal h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.75rem 0;
}

.age-gate-modal p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  margin: 0 0 0.5rem 0;
}

.age-gate-modal .age-gate-question {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 1rem 0 1.5rem 0;
}

.age-gate-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.age-gate-btn {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 130px;
}

.age-gate-btn-yes {
  background: var(--primary-color, #e02c2c);
  color: #fff;
}

.age-gate-btn-yes:hover {
  background: var(--primary-color-dark, #c02020);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(224, 44, 44, 0.3);
}

.age-gate-btn-no {
  background: #e8e8e8;
  color: #333;
}

.age-gate-btn-no:hover {
  background: #d0d0d0;
  transform: translateY(-1px);
}

@media screen and (max-width: 480px) {
  .age-gate-modal {
    padding: 2rem 1.5rem;
  }

  .age-gate-buttons {
    flex-direction: column;
  }

  .age-gate-btn {
    width: 100%;
  }
}
