:root {
  --blue-950: #0b1742;
  --blue-850: #102660;
  --blue-700: #1e4fd7;
  --orange-500: #ff7a1a;
  --orange-600: #ec6811;
  --green-500: #20b86b;
  --green-650: #0b8f55;
  --gray-25: #fcfdff;
  --gray-50: #f5f7fb;
  --gray-100: #e9edf5;
  --gray-300: #c5cede;
  --gray-600: #5b667a;
  --gray-800: #232b3b;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(10, 23, 66, 0.12);
  --radius: 8px;
  --radius-sm: 6px;
  --container: 1180px;
}

[hidden] {
  display: none !important;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--gray-800);
  background: var(--gray-25);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Poppins", "Inter", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.12;
  letter-spacing: 0;
  color: var(--blue-950);
}

h1 {
  font-size: clamp(2.35rem, 8vw, 4.9rem);
  max-width: 950px;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.55rem);
}

h3 {
  font-size: 1.15rem;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 32px, 850px);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--orange-500);
  color: var(--blue-950);
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 800;
}

.skip-link:focus {
  top: 12px;
}

.responsible-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 38px;
  padding: 0.45rem 1rem;
  color: var(--white);
  background: var(--blue-950);
  font-size: 0.92rem;
  text-align: center;
}

.age-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 24px;
  padding: 0 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  font-weight: 900;
  color: var(--orange-500);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197, 206, 222, 0.58);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 28px rgba(10, 23, 66, 0.1);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 214px;
  height: 56px;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.desktop-nav a,
.mobile-nav a {
  text-decoration: none;
  font-weight: 750;
  color: var(--gray-800);
  border-radius: var(--radius-sm);
}

.desktop-nav a {
  padding: 0.62rem 0.74rem;
  font-size: 0.94rem;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"],
.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] {
  background: var(--gray-50);
  color: var(--blue-700);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.icon-button,
.menu-toggle,
.back-to-top {
  border: 1px solid var(--gray-100);
  background: var(--white);
  color: var(--blue-950);
  border-radius: var(--radius-sm);
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(10, 23, 66, 0.08);
}

.icon-search {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 999px;
  position: relative;
}

.icon-search::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
  right: -6px;
  bottom: -4px;
  border-radius: 999px;
}

.menu-toggle {
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span:not(.sr-only) {
  width: 21px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  width: min(100% - 32px, var(--container));
  margin: 0 auto 1rem;
  padding: 0.75rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mobile-nav.is-open {
  display: grid;
  gap: 0.25rem;
}

.mobile-nav a {
  padding: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 46px;
  padding: 0.82rem 1.05rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--orange-500);
  color: var(--blue-950);
  box-shadow: 0 12px 24px rgba(255, 122, 26, 0.28);
}

.btn-primary:hover {
  background: var(--orange-600);
}

.btn-secondary {
  background: var(--white);
  border-color: var(--gray-100);
  color: var(--blue-950);
}

.btn-ghost {
  background: transparent;
  border-color: var(--gray-300);
  color: var(--blue-950);
}

.btn-small {
  display: none;
  min-height: 42px;
  padding: 0.68rem 0.9rem;
}

.btn-full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(11, 23, 66, 0.98), rgba(16, 38, 96, 0.96)),
    radial-gradient(circle at 80% 10%, rgba(255, 122, 26, 0.18), transparent 36%);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--orange-500), var(--green-500), var(--blue-700));
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 2rem;
  padding: clamp(3.2rem, 8vw, 6.8rem) 0;
  align-items: center;
}

.hero h1,
.hero h2,
.hero h3 {
  color: var(--white);
}

.hero-lead {
  max-width: 780px;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--green-500);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.trust-row span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
}

.hero-board {
  background: var(--white);
  color: var(--gray-800);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.board-top,
.board-offer,
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.board-top {
  padding: 0.35rem 0.25rem 0.9rem;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-600);
  font-size: 0.9rem;
}

.board-top strong {
  color: var(--green-650);
  font-size: 0.88rem;
}

.board-offer {
  margin-top: 0.85rem;
  padding: 0.8rem;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  background: var(--gray-25);
}

.board-offer.hot {
  border-color: rgba(255, 122, 26, 0.48);
  background: #fff7f0;
}

.board-offer div {
  flex: 1;
  min-width: 0;
}

.board-offer strong,
.board-offer small {
  display: block;
}

.board-offer small {
  color: var(--gray-600);
}

.board-offer b {
  color: var(--blue-700);
}

.mini-logo,
.operator-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--blue-950);
  color: var(--white);
  font-weight: 900;
  flex: 0 0 auto;
}

.mini-logo {
  width: 42px;
  height: 42px;
  font-size: 0.82rem;
}

.mini-logo.green {
  background: var(--green-650);
}

.mini-logo.orange {
  background: var(--orange-500);
  color: var(--blue-950);
}

.hero-stats {
  margin-top: 1rem;
  align-items: stretch;
}

.hero-stats div {
  flex: 1;
  padding: 0.8rem;
  border-radius: var(--radius-sm);
  background: var(--blue-950);
  color: var(--white);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 1.35rem;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
}

.section,
.content-section {
  padding: clamp(2.8rem, 7vw, 5.2rem) 0;
}

.muted {
  background: var(--gray-50);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 1.7rem;
}

.section-heading p:last-child {
  color: var(--gray-600);
  font-size: 1.04rem;
}

.offer-grid,
.info-grid,
.profile-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 1rem;
}

.offer-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 265px), 1fr));
}

.offer-card,
.info-card,
.profile-card,
.form-card,
.support-panel,
.check-panel {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(10, 23, 66, 0.07);
}

.offer-card {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.offer-card-head,
.profile-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.operator-mark {
  width: 56px;
  height: 56px;
  font-size: 1rem;
  background:
    linear-gradient(135deg, var(--blue-950), var(--blue-700));
}

.operator-name {
  margin: 0 0 0.2rem;
  color: var(--gray-600);
  font-size: 0.9rem;
  font-weight: 800;
}

.rank-badge {
  margin-left: auto;
  align-self: flex-start;
  background: #fff1e5;
  color: var(--orange-600);
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  font-weight: 900;
  font-size: 0.8rem;
}

.bonus-amount {
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  background: var(--blue-950);
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 950;
}

.score-line,
.offer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.score-line {
  color: var(--gray-600);
}

.score-line strong {
  color: var(--green-650);
}

.check-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.check-list li {
  position: relative;
  padding-left: 1.45rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: var(--green-500);
  box-shadow: inset 0 0 0 3px var(--white);
  border: 1px solid var(--green-650);
}

.offer-meta {
  flex-wrap: wrap;
}

.offer-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: var(--gray-50);
  color: var(--blue-850);
  font-weight: 800;
  font-size: 0.82rem;
}

.conditions {
  color: var(--gray-600);
  font-size: 0.92rem;
  flex: 1;
}

.content-section h2 {
  margin-bottom: 1rem;
}

.content-section p {
  color: var(--gray-600);
  font-size: 1.02rem;
}

.split-panel {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.check-panel,
.support-panel,
.form-card {
  padding: 1.25rem;
}

.check-panel h3,
.support-panel h2,
.support-panel h3 {
  margin-bottom: 0.8rem;
}

.info-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 245px), 1fr));
}

.info-card {
  padding: 1.2rem;
}

.info-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--orange-500);
  color: var(--blue-950);
  font-weight: 950;
  margin-bottom: 0.9rem;
}

.info-card p,
.profile-card p,
.support-panel p,
.form-note {
  color: var(--gray-600);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.comparison-table {
  width: 100%;
  min-width: 930px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--gray-100);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  background: var(--blue-950);
  color: var(--white);
  font-size: 0.9rem;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.table-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 900;
}

.profile-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.profile-card {
  padding: 1.1rem;
}

.profile-card dl {
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0;
}

.profile-card dt {
  color: var(--blue-850);
  font-weight: 900;
}

.profile-card dd {
  margin: 0.2rem 0 0;
  color: var(--gray-600);
}

.text-link {
  color: var(--blue-700);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background: var(--white);
  color: var(--blue-950);
  border: 0;
  cursor: pointer;
  font-weight: 900;
  text-align: left;
}

.faq-question span {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--gray-50);
  position: relative;
  flex: 0 0 auto;
}

.faq-question span::before,
.faq-question span::after {
  content: "";
  position: absolute;
  inset: 10px 5px auto;
  height: 2px;
  background: var(--blue-950);
}

.faq-question span::after {
  transform: rotate(90deg);
}

.faq-question[aria-expanded="true"] span::after {
  opacity: 0;
}

.faq-answer {
  padding: 0 1rem 1rem;
  color: var(--gray-600);
}

.contact-grid {
  grid-template-columns: 1fr;
  align-items: start;
}

.form-card {
  display: grid;
  gap: 0.7rem;
}

.form-card h2 {
  margin-bottom: 0.2rem;
}

.form-card label {
  font-weight: 850;
  color: var(--blue-950);
}

.form-card input,
.form-card select,
.form-card textarea,
.search-panel input {
  width: 100%;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 0.85rem 0.95rem;
  background: var(--white);
  color: var(--gray-800);
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus,
.search-panel input:focus,
.btn:focus-visible,
.icon-button:focus-visible,
.menu-toggle:focus-visible,
.faq-question:focus-visible {
  outline: 3px solid rgba(32, 184, 107, 0.36);
  outline-offset: 2px;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: start center;
  padding: 6rem 1rem 1rem;
  background: rgba(11, 23, 66, 0.72);
}

.search-panel {
  width: min(100%, 720px);
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  padding: 1.25rem;
}

.search-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.6rem;
  line-height: 1;
}

.search-results {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
  max-height: 360px;
  overflow: auto;
}

.search-results a {
  display: grid;
  gap: 0.12rem;
  text-decoration: none;
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-100);
}

.search-results a:hover {
  border-color: var(--orange-500);
  background: #fff8f1;
}

.search-results small {
  color: var(--gray-600);
}

.site-footer {
  background: var(--blue-950);
  color: rgba(255, 255, 255, 0.82);
  padding: 3rem 0 1.2rem;
}

.footer-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
}

.site-footer h2 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  margin-bottom: 0.45rem;
}

.site-footer a:hover {
  color: var(--orange-500);
}

.footer-warning {
  color: var(--white);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.92rem;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 60;
  background: var(--green-500);
  color: var(--blue-950);
  font-weight: 950;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  background: var(--white);
  color: var(--gray-800);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
  display: grid;
  gap: 1rem;
}

.cookie-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 20px);
  max-width: min(92vw, 520px);
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--blue-950);
  color: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  z-index: 120;
  transition: opacity 160ms ease, transform 160ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 760px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  }

  .split-panel {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr) 380px;
  }

  .cookie-banner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 1040px) {
  .desktop-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .btn-small {
    display: inline-flex;
  }
}

@media (max-width: 520px) {
  .brand img {
    width: 176px;
  }

  .header-inner {
    min-height: 66px;
  }

  .hero-stats {
    display: grid;
  }

  .responsible-bar {
    font-size: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

.operator-logo {
    width: 90px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.operator-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.offer-card-head {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rank-badge {
    margin-left: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(11, 23, 66, 0.86), rgba(16, 38, 96, 0.78)),
    radial-gradient(circle at 80% 10%, rgba(255, 122, 26, 0.18), transparent 36%),
    url("../images/hero-bg.jpg") center center / cover no-repeat;
  color: var(--white);
}

/* Age verification modal (index page) */
.age-banner {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  backdrop-filter: blur(22px) saturate(140%);
}

.age-banner.show {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  animation: age-fade-in 0.35s ease-out forwards;
}

.age-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(34, 211, 238, 0.34), transparent 38%),
    radial-gradient(circle at 80% 0%, rgba(124, 58, 237, 0.30), transparent 42%),
    rgba(2, 6, 23, 0.88);
}

.age-shell {
  position: relative;
  z-index: 1;
  width: min(430px, 100%);
  padding: 30px 26px 24px;
  border-radius: 26px;
  background: rgba(15, 23, 42, 0.92);
  box-shadow:
    0 28px 90px rgba(2, 6, 23, 0.78),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.24);
  overflow: hidden;
}

.age-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.72), rgba(168, 85, 247, 0.34), transparent);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.age-chip-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.age-chip,
.age-chip-soft {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.age-chip {
  background: rgba(34, 211, 238, 0.15);
  color: #22d3ee;
  font-weight: 700;
  border: 1px solid rgba(34, 211, 238, 0.42);
}

.age-chip-soft {
  background: rgba(148, 163, 184, 0.12);
  color: #a8b3c7;
  font-weight: 600;
}

.age-text {
  text-align: center;
}

.age-text h2 {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 800;
  background: linear-gradient(135deg, #22d3ee 0%, #6366f1 48%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.035em;
}

.age-text p {
  margin: 10px 0 0;
  color: #a8b3c7;
  font-size: 0.94rem;
  line-height: 1.65;
}

.age-text strong {
  color: #f8fafc;
  font-weight: 700;
}

.age-actions {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 24px;
}

.age-btn {
  border-radius: 18px;
  border: 0;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 0.94rem;
  cursor: pointer;
  outline: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
  letter-spacing: 0.01em;
}

.age-btn:focus-visible {
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.30);
}

.age-btn.primary {
  background-image: linear-gradient(135deg, #22d3ee 0%, #6366f1 48%, #a855f7 100%);
  color: #ffffff;
  box-shadow:
    0 16px 36px rgba(34, 211, 238, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.age-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 44px rgba(99, 102, 241, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.age-btn.ghost {
  background: rgba(15, 23, 42, 0.72);
  color: #a8b3c7;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.28);
}

.age-btn.ghost:hover {
  color: #f8fafc;
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.52);
}

.age-btn:active {
  transform: translateY(0);
}

@keyframes age-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (min-width: 480px) {
  .age-actions {
    flex-direction: row;
  }

  .age-btn {
    flex: 1;
  }
}