.age-gate {
   position: fixed;
   inset: 0;
   z-index: 99999;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 20px;
}

.age-gate[hidden] {
   display: none !important;
}

.age-gate__backdrop {
   position: absolute;
   inset: 0;
   background: rgba(0, 0, 0, 0.75);
}

.age-gate__panel {
   position: relative;
   z-index: 1;
   width: 100%;
   max-width: 640px;
   padding: 32px 28px;
   border-radius: 12px;
   background: #fff;
   box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.age-gate__intro {
   margin: 0 0 16px;
   font-size: 17px;
   font-weight: 600;
   line-height: 1.5;
   color: #111;
}

.age-gate__text {
   margin: 0 0 24px;
   font-size: 15px;
   line-height: 1.6;
   color: #444;
}

.age-gate__question {
   margin: 0 0 20px;
   font-size: 20px;
   font-weight: 700;
   line-height: 1.4;
   color: #111;
}

.age-gate__actions {
   display: flex;
   flex-direction: column;
   gap: 12px;
}

.age-gate__btn {
   display: block;
   width: 100%;
   padding: 14px 18px;
   border: 0;
   border-radius: 8px;
   font-size: 16px;
   font-weight: 600;
   line-height: 1.3;
   cursor: pointer;
   transition: opacity 0.2s ease;
}

.age-gate__btn:hover {
   opacity: 0.92;
}

.age-gate__btn--yes {
   background: #0989ff;
   color: #fff;
}

.age-gate__btn--no {
   background: #f2f2f2;
   color: #333;
}

html.age-gate-open,
html.age-gate-open body {
   overflow: hidden;
}

@media (min-width: 576px) {
   .age-gate__panel {
      padding: 40px 36px;
   }
}
