:root {
  --bg: #07131d;
  --bg-soft: #102235;
  --surface: #102b3d;
  --text: #f5f7fb;
  --muted: #b6c4d0;
  --accent: #ffb703;
  --accent-2: #00c2a8;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  background: linear-gradient(135deg, var(--bg), #0f2230);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 1.5rem));
  margin: 0 auto;
}

.hero {
  padding: 1rem 0 3rem;
  background: radial-gradient(circle at top left, rgba(0, 194, 168, 0.24), transparent 30%), var(--bg);
}

.topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 1rem 0.65rem;
  padding: 0.8rem 0 1.3rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  width: min(201px, 36vw);
  height: auto;
}

.primary-links {
  grid-column: 1 / -1;
  grid-row: 2;
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding-top: 0.25rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.primary-links.is-open {
  display: flex;
}

.primary-links a {
  width: 100%;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s ease;
}

.primary-links a:hover,
.primary-links a:focus-visible,
.primary-links a.active {
  color: var(--text);
}

.lang-switch {
  justify-self: end;
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.25rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.lang-btn {
  border: 0;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-weight: 700;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-btn.active {
  background: var(--accent-2);
  color: #04141c;
  box-shadow: 0 6px 18px rgba(0, 194, 168, 0.25);
}

.menu-toggle {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  color: var(--text);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 1.4rem;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-grid {
  display: grid;
  gap: 1.25rem;
  padding-top: 1rem;
}

.eyebrow {
  display: inline-block;
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h2 {
  font-size: clamp(1.45rem, 3vw, 2.15rem);
}

.hero-text,
.section-text,
.info-card p,
.offer-item span,
.cta-box p {
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.1rem 0;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #f2c94c);
  color: #03131d;
  box-shadow: 0 12px 28px rgba(255, 183, 3, 0.28);
}

.android-download {
  min-width: 13.5rem;
  gap: 0.55rem;
}

.android-download.is-downloading {
  color: #03150c;
  background: linear-gradient(135deg, #20c96b, #55df91);
  box-shadow: 0 12px 30px rgba(32, 201, 107, 0.35);
  pointer-events: none;
}

.download-spinner {
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  border: 2px solid rgba(3, 21, 12, 0.3);
  border-top-color: #03150c;
  border-radius: 50%;
  animation: download-spin 0.7s linear infinite;
}

@keyframes download-spin {
  to {
    transform: rotate(360deg);
  }
}

.btn-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
}

.btn-app-green {
  border-color: rgba(57, 211, 83, 0.55);
  color: #fff;
  background: linear-gradient(135deg, #087f63 0%, #0cae70 52%, #39d353 100%);
  box-shadow: 0 12px 30px rgba(12, 174, 112, 0.28);
}

.btn-app-green:hover,
.btn-app-green:focus-visible {
  box-shadow: 0 16px 38px rgba(12, 174, 112, 0.42);
}

.btn-bonus-activate {
  max-width: 100%;
  padding: 1.2rem 1.65rem;
  font-size: 1.15rem;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #087f63 0%, #0cae70 48%, #39d353 100%);
  box-shadow:
    0 12px 30px rgba(12, 174, 112, 0.25),
    0 8px 26px rgba(57, 211, 83, 0.2);
}

.btn-bonus-activate:hover,
.btn-bonus-activate:focus-visible {
  box-shadow:
    0 16px 38px rgba(12, 174, 112, 0.38),
    0 10px 32px rgba(57, 211, 83, 0.32);
}

.bonus-hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
}

.bonus-hero-actions .btn {
  width: 100%;
  min-width: 0;
  padding: 1rem 1.2rem;
  text-align: center;
}

.bonus-hero-actions .btn-android-download {
  border: 1px solid rgba(82, 231, 210, 0.55);
  color: #03150f;
  background: linear-gradient(135deg, #00a98f 0%, var(--accent-2) 50%, #55df91 100%);
  box-shadow: 0 12px 30px rgba(0, 194, 168, 0.3);
}

.bonus-hero-actions .btn-bonus-activate {
  border: 1px solid rgba(255, 207, 64, 0.7);
  color: #03131d;
  background: linear-gradient(135deg, var(--accent), #f2c94c);
  box-shadow: 0 12px 30px rgba(255, 183, 3, 0.28);
}

.bonus-hero-actions .btn-bonus-activate:hover,
.bonus-hero-actions .btn-bonus-activate:focus-visible {
  box-shadow:
    0 16px 38px rgba(255, 183, 3, 0.4),
    0 0 22px rgba(242, 201, 76, 0.2);
}

.bonus-hero-actions .btn-android-download:hover,
.bonus-hero-actions .btn-android-download:focus-visible {
  box-shadow:
    0 16px 38px rgba(0, 194, 168, 0.42),
    0 0 22px rgba(85, 223, 145, 0.2);
}

@media (max-width: 600px) {
  .bonus-hero-actions {
    grid-template-columns: 1fr;
  }
}

.home-page .btn {
  max-width: 100%;
  padding: 1.2rem 1.65rem;
  font-size: 1.15rem;
  text-align: center;
}

.app-page .hero-actions .btn {
  max-width: 100%;
  padding: 1.2rem 1.65rem;
  font-size: 1.15rem;
  text-align: center;
}

.app-page .hero-actions .btn-primary {
  border: 1px solid rgba(82, 231, 210, 0.5);
  color: #03150f;
  background: linear-gradient(135deg, #00a98f 0%, var(--accent-2) 50%, #55df91 100%);
  box-shadow: 0 12px 30px rgba(0, 194, 168, 0.3);
}

.app-page .hero-actions .btn-primary:hover,
.app-page .hero-actions .btn-primary:focus-visible {
  box-shadow:
    0 16px 38px rgba(0, 194, 168, 0.42),
    0 0 22px rgba(85, 223, 145, 0.2);
}

.app-page .hero-actions .btn-secondary {
  border-color: #6b7280;
  background: #59636e;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.app-page .hero-actions .btn-secondary:hover,
.app-page .hero-actions .btn-secondary:focus-visible {
  background: #68737f;
}

@media (min-width: 1100px) {
  html[lang="uz"] .app-page .hero-actions {
    flex-wrap: nowrap;
  }

  html[lang="uz"] .app-page .hero-actions .btn {
    padding-inline: 1.25rem;
    font-size: 1rem;
    white-space: nowrap;
  }
}

.block {
  width: 100%;
}

.hero-highlights {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 1.1rem 0 0;
  list-style: none;
}

.home-page .hero-actions + .hero-highlights {
  margin-top: 5.4rem;
}

.hero-highlights li {
  padding: 0.7rem 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
}

.hero-card,
.info-card,
.offer-item,
.cta-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.25rem;
}

.registration-hero-media {
  width: min(100%, 700px);
  margin: 1.5rem 0 0;
}

.registration-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(0, 194, 168, 0.38);
  border-radius: 1.15rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24), 0 0 28px rgba(0, 194, 168, 0.12);
}

.registration-hero-media figcaption {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

.registration-content-media {
  margin-inline: auto;
}

.card-label {
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.section {
  padding: 3rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.03);
}

.home-site-preview {
  padding: 0.5rem 0 3.5rem;
}

.home-site-preview img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(0, 194, 168, 0.38);
  border-radius: 1.2rem;
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.3),
    0 0 32px rgba(0, 194, 168, 0.12);
}

.home-site-preview-figure {
  margin-inline: auto;
}

.home-site-preview figcaption,
.bonuses-media figcaption {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  text-align: center;
}

.section-heading {
  margin-bottom: 1.25rem;
}

.context-link {
  color: inherit;
  text-decoration: none;
}

.context-link:hover,
.context-link:focus-visible {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.info-card {
  padding: 1.1rem;
}

.offers-grid {
  display: grid;
  gap: 1.2rem;
}

.offer-list {
  display: grid;
  gap: 0.8rem;
}

.offer-item {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.home-page .hero-highlights li,
.home-page .hero-card,
.home-page .info-card,
.home-page .offer-item,
.home-page .cta-box {
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.home-page .hero-highlights li,
.home-page .info-card,
.home-page .offer-item {
  box-shadow: 0 10px 28px rgba(0, 194, 168, 0.08);
}

.home-page .info-card:nth-child(2),
.home-page .offer-item:nth-child(2) {
  box-shadow: 0 10px 28px rgba(255, 183, 3, 0.09);
}

.home-page .hero-card,
.home-page .cta-box {
  border-color: rgba(255, 183, 3, 0.3);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.24),
    0 0 30px rgba(255, 183, 3, 0.1),
    0 0 42px rgba(0, 194, 168, 0.08);
}

.home-page .hero-highlights li:hover,
.home-page .info-card:hover,
.home-page .offer-item:hover {
  transform: translateY(-4px);
  border-color: rgba(82, 231, 210, 0.62);
  background: rgba(0, 194, 168, 0.07);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.22),
    0 0 24px rgba(0, 194, 168, 0.22);
}

.home-page .hero-card:hover,
.home-page .cta-box:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 183, 3, 0.58);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.28),
    0 0 34px rgba(255, 183, 3, 0.18),
    0 0 48px rgba(0, 194, 168, 0.12);
}

.cta-box {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.seo-content[hidden] {
  display: none;
}

.seo-article {
  max-width: 900px;
}

.bonuses-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.bonuses-media picture {
  display: block;
  width: min(100%, 640px);
}

.bonuses-media img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(0, 194, 168, 0.28);
  border-radius: 1.25rem;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.seo-article h2 {
  margin-top: 2.5rem;
}

.seo-article h2:first-child {
  margin-top: 0;
}

.seo-article h3 {
  margin-top: 2rem;
}

.app-page .seo-article h3 {
  margin-top: 2rem;
}

.seo-article p,
.seo-article li {
  color: var(--muted);
}

.seo-article li + li {
  margin-top: 0.65rem;
}

.content-action {
  margin: 1.5rem 0;
}

.content-action .btn {
  max-width: 100%;
  padding: 1rem 1.4rem;
  text-align: center;
}

.seo-article strong {
  color: var(--text);
}

.seo-article .notice {
  margin: 1.5rem 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 183, 3, 0.35);
  border-radius: 1rem;
  background: rgba(255, 183, 3, 0.08);
}

.content-steps {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0;
  padding: 0;
  list-style: none;
  counter-reset: content-step;
}

.content-steps li {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  margin-top: 0;
  counter-increment: content-step;
}

.content-steps li::before {
  content: counter(content-step);
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 194, 168, 0.55);
  border-radius: 0.6rem;
  color: var(--text);
  background: rgba(0, 194, 168, 0.12);
  font-weight: 800;
  line-height: 1;
}

.app-page .content-steps {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
  counter-reset: content-step;
}

.app-page .content-steps li {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  margin-top: 0;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(0, 194, 168, 0.32);
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(16, 43, 61, 0.88), rgba(8, 25, 37, 0.92));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  counter-increment: content-step;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.app-page .content-steps li:hover {
  border-color: rgba(0, 194, 168, 0.8);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.24),
    0 0 22px rgba(0, 194, 168, 0.2);
  transform: translateY(-4px);
}

.app-page .content-steps li::before {
  content: counter(content-step);
  display: inline-flex;
  width: 2.4rem;
  height: 2.4rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(82, 231, 210, 0.7);
  border-radius: 50%;
  color: #03150f;
  background: linear-gradient(135deg, var(--accent-2), #55df91);
  box-shadow: 0 7px 18px rgba(0, 194, 168, 0.3);
  font-weight: 800;
  line-height: 1;
}

.app-page .content-steps .step-download-row {
  display: flex;
  padding: 0.1rem 0 0.1rem 3.4rem;
  border: 0;
  background: transparent;
  box-shadow: none;
  counter-increment: none;
}

.app-page .content-steps .step-download-row::before {
  display: none;
}

.app-page .content-steps .step-download-row:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.app-page .step-download {
  width: min(100%, 24rem);
  min-width: 0;
  max-width: 100%;
  border: 1px solid rgba(82, 231, 210, 0.5);
  color: #03150f;
  background: linear-gradient(135deg, #00a98f 0%, var(--accent-2) 50%, #55df91 100%);
  box-shadow: 0 12px 30px rgba(0, 194, 168, 0.3);
  text-align: center;
}

.app-page .step-download:hover,
.app-page .step-download:focus-visible {
  box-shadow:
    0 16px 38px rgba(0, 194, 168, 0.42),
    0 0 22px rgba(85, 223, 145, 0.2);
}

.app-page .android-download.is-downloading,
.bonus-hero-actions .android-download.is-downloading {
  border-color: #20c96b;
  color: #03150c;
  background: #20c96b;
  box-shadow:
    0 12px 30px rgba(32, 201, 107, 0.42),
    0 0 24px rgba(32, 201, 107, 0.24);
}

.requirements-box {
  margin: 1.5rem 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(0, 194, 168, 0.45);
  border-radius: 1rem;
  background: rgba(0, 194, 168, 0.08);
}

.bonus-table-wrap,
.payment-table-wrap {
  margin: 1.5rem 0;
  overflow-x: auto;
  border: 1px solid rgba(0, 194, 168, 0.32);
  border-radius: 1rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.bonus-table,
.payment-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: rgba(8, 25, 37, 0.78);
}

.bonus-table th,
.bonus-table td,
.payment-table th,
.payment-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  white-space: nowrap;
}

.bonus-table th,
.payment-table th {
  color: #03150f;
  background: linear-gradient(135deg, var(--accent-2), #55df91);
  font-weight: 800;
}

.bonus-table tbody tr:last-child td,
.payment-table tbody tr:last-child td {
  border-bottom: 0;
}

.bonus-table tbody tr:nth-child(even),
.payment-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.035);
}

.sports-grid {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

.sports-panel {
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(0, 194, 168, 0.28);
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(16, 43, 61, 0.82), rgba(8, 25, 37, 0.9));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.sports-panel h3 {
  margin-top: 0;
  color: var(--text);
}

.sports-panel ul {
  columns: 2 12rem;
  margin-bottom: 0;
}

.sports-panel li {
  break-inside: avoid;
}

@media (min-width: 800px) {
  .sports-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .sports-panel ul {
    columns: 1;
  }
}

.requirements-box > strong {
  display: block;
  margin-bottom: 0.35rem;
}

.promo-copy-card {
  border-color: rgba(255, 183, 3, 0.32);
}

.promo-code-caption {
  display: block;
  margin: 1rem 0 0.45rem;
  color: var(--accent-2);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.promo-code-row {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.promo-code-value {
  display: inline-flex;
  min-height: 3.25rem;
  flex: 1 1 9rem;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255, 183, 3, 0.55);
  border-radius: 0.75rem;
  color: var(--accent);
  background: rgba(3, 19, 29, 0.78);
  font-family: inherit;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.promo-copy-button {
  min-height: 3.25rem;
  flex: 1 1 9rem;
  padding: 0.65rem 1rem;
  border: 0;
  border-radius: 0.75rem;
  color: #03131d;
  background: linear-gradient(135deg, var(--accent), #f2c94c);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.promo-copy-button:hover,
.promo-copy-button:focus-visible {
  box-shadow: 0 10px 24px rgba(255, 183, 3, 0.28);
  transform: translateY(-1px);
}

.promo-copy-button.is-copied {
  color: #03150c;
  background: linear-gradient(135deg, #20c96b, #55df91);
  box-shadow: 0 10px 26px rgba(32, 201, 107, 0.3);
}

.promo-copy-button:disabled {
  cursor: default;
}

.requirements-box p {
  margin: 0;
}

.seo-card-grid {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.seo-card-grid .seo-card {
  min-width: 0;
  margin-top: 0;
  padding: 1.1rem;
  border: 1px solid rgba(0, 194, 168, 0.45);
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(16, 43, 61, 0.95), rgba(7, 19, 29, 0.9));
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.16);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.seo-card-grid .seo-card:hover {
  border-color: rgba(0, 194, 168, 0.9);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(0, 194, 168, 0.28),
    0 0 10px rgba(255, 183, 3, 0.12);
  transform: translateY(-5px);
}

.seo-card-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

.seo-card-heading strong {
  font-size: 1rem;
  line-height: 1.3;
}

.seo-card-icon {
  display: inline-flex;
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 2.25rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 183, 3, 0.45);
  border-radius: 0.65rem;
  background: rgba(255, 183, 3, 0.1);
  font-size: 1.05rem;
}

.seo-card p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.5;
}

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

.faq-list details {
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  padding: 1rem 3.2rem 1rem 1.1rem;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.1rem;
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 400;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-list summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.faq-answer {
  padding: 0 1.1rem 1rem;
  border-top: 1px solid var(--border);
}

.faq-list p {
  margin: 1rem 0 0;
}

@media (prefers-reduced-motion: reduce) {
  .home-page .hero-highlights li,
  .home-page .hero-card,
  .home-page .info-card,
  .home-page .offer-item,
  .home-page .cta-box {
    transition: none;
  }

  .home-page .hero-highlights li:hover,
  .home-page .hero-card:hover,
  .home-page .info-card:hover,
  .home-page .offer-item:hover,
  .home-page .cta-box:hover {
    transform: none;
  }

  .download-spinner {
    animation: none;
  }

  .promo-copy-button {
    transition: none;
  }

  .promo-copy-button:hover,
  .promo-copy-button:focus-visible {
    transform: none;
  }

  .seo-card-grid .seo-card {
    transition: none;
  }

  .seo-card-grid .seo-card:hover {
    transform: none;
  }
}

.footer {
  padding: 1rem 0 2rem;
  color: var(--muted);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.site-footer {
  padding: 2.25rem 0;
  border-top: 1px solid var(--border);
  background: linear-gradient(135deg, var(--bg), #0f2230);
}

.site-footer-grid {
  display: grid;
  gap: 1.75rem;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-self: start;
  justify-self: center;
}

.footer-brand img {
  width: 120px;
  height: auto;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  align-content: start;
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-nav a {
  text-align: center;
  transition: color 0.2s ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--accent-2);
}

.footer-legal {
  min-width: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.footer-legal > p:first-child {
  margin: 0;
}

.responsible-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem 0.75rem;
  margin-top: 0.9rem;
}

.age-badge {
  display: inline-flex;
  min-width: 2.5rem;
  height: 1.7rem;
  align-items: center;
  justify-content: center;
  border: 1px solid #ff334f;
  border-radius: 0.3rem;
  color: #fff;
  background: rgba(255, 51, 79, 0.14);
  font-weight: 800;
  line-height: 1;
}

.responsible-row a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.responsible-row a:hover,
.responsible-row a:focus-visible {
  color: #ffd166;
}

.support-title {
  margin: 1.1rem 0 0;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.support-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem 1.5rem;
  margin-top: 0.35rem;
}

.support-mark {
  display: inline-flex;
  min-width: 120px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  color: var(--text);
  opacity: 0.78;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease, text-shadow 0.2s ease;
}

.support-mark:hover,
.support-mark:focus-visible {
  color: #fff;
  opacity: 1;
  text-shadow: 0 0 18px rgba(0, 194, 168, 0.45);
  transform: translateY(-2px);
}

.support-gambleaware {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.support-ga span {
  padding: 0 0.35rem 0.15rem;
  border-bottom: 4px solid currentColor;
  font-size: 2rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.18em;
  line-height: 1;
}

.support-therapy {
  flex-direction: column;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.82;
}

.footer-copyright {
  margin: 0.9rem 0 0;
}

@media (prefers-reduced-motion: reduce) {
  .support-mark {
    transition: none;
  }

  .support-mark:hover,
  .support-mark:focus-visible {
    transform: none;
  }
}

@media (min-width: 768px) {
  .hero {
    padding-top: 1.2rem;
  }

  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 2rem;
  }

  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .offers-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .cta-box {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .seo-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-card-grid .seo-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .site-footer-grid {
    grid-template-columns: 120px 180px minmax(0, 1fr);
    align-items: start;
    text-align: left;
  }

  .footer-brand {
    justify-self: start;
  }

  .footer-nav a {
    text-align: left;
  }

  .responsible-row,
  .support-links {
    justify-content: flex-start;
  }

  .support-therapy {
    align-items: flex-start;
  }
}

@media (min-width: 900px) {
  .topbar {
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
  }

  .primary-links {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: clamp(1rem, 3vw, 3rem);
    padding-top: 0;
    border-top: 0;
    font-size: 0.9rem;
  }

  .primary-links a {
    width: auto;
    padding: 0;
    border-bottom: 0;
  }

  .brand-logo {
    width: 201px;
  }

  .menu-toggle {
    display: none;
  }
}
