@font-face {
  font-family: "Poppins";
  src: url("./fonts/poppins-400.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Poppins";
  src: url("./fonts/poppins-500.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Poppins";
  src: url("./fonts/poppins-600.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Poppins";
  src: url("./fonts/poppins-700.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Poppins";
  src: url("./fonts/poppins-800.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 800;
}

:root {
  --bg: #07090f;
  --bg-elevated: #11141d;
  --panel: rgba(17, 20, 29, 0.9);
  --panel-soft: rgba(255, 255, 255, 0.04);
  --text: #f5f7fb;
  --muted: #aeb6c8;
  --line: rgba(255, 255, 255, 0.1);
  --gold: #fcee20;
  --gold-strong: #ffe347;
  --accent: #6d79ff;
  --danger: #ff7d63;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(252, 238, 32, 0.12), transparent 24%),
    radial-gradient(circle at top right, rgba(252, 238, 32, 0.06), transparent 22%),
    linear-gradient(180deg, #080808 0%, #050505 52%, #020202 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a.button {
  font: inherit;
}

.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;
}

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

.section {
  padding: 34px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(18px);
  background: rgba(17, 17, 17, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.header-brand,
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.header-brand {
  gap: 16px;
}

.header-actions {
  flex: 1 1 auto;
  justify-content: flex-end;
}

.language-switcher {
  position: relative;
}

.lang-toggle,
.lang-option,
.header-search,
.header-search-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle {
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #1a1a1a;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.header-search {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #1a1a1a;
  color: var(--muted);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.header-search-icon {
  display: none;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #1a1a1a;
  color: var(--text);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.lang-toggle:hover,
.lang-toggle:focus-visible,
.header-search:hover,
.header-search:focus-visible,
.header-search-icon:hover,
.header-search-icon:focus-visible {
  border-color: rgba(252, 238, 32, 0.45);
  background: rgba(252, 238, 32, 0.08);
  color: var(--text);
  transform: translateY(-1px);
  outline: none;
}

.lang-toggle img,
.lang-option img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}

.header-search svg,
.header-search-icon svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 232px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 12, 18, 0.98);
  box-shadow: var(--shadow);
  display: grid;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 95;
}

.language-switcher.is-open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-option:hover,
.lang-option:focus-visible,
.lang-option[aria-current="page"] {
  color: var(--text);
  background: rgba(252, 238, 32, 0.1);
  outline: none;
}

.lang-option__code {
  min-width: 2.2ch;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.lang-option__name {
  font-size: 0.92rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
}

.site-logo img {
  height: 40px;
  width: auto;
}

.burger-button {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #1a1a1a;
  color: var(--text);
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.burger-button:hover,
.burger-button:focus-visible {
  border-color: rgba(252, 238, 32, 0.45);
  background: rgba(252, 238, 32, 0.08);
  transform: translateY(-1px);
  outline: none;
}

.burger-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0;
  background: var(--text);
  border-radius: 99px;
}

.site-nav {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  overflow-x: auto;
  scrollbar-width: none;
  background: rgba(17, 17, 17, 0.96);
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav.is-collapsed {
  display: none;
}

.nav-pills,
.footer-links,
.footer-payments {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.nav-pills {
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 10px;
  min-width: max-content;
  padding: 12px 0 14px;
}

.nav-pills a {
  position: relative;
  z-index: 2;
  white-space: nowrap;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.nav-pills a:hover,
.nav-pills a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
  border-color: rgba(252, 238, 32, 0.45);
  background: rgba(252, 238, 32, 0.09);
  transform: translateY(-1px);
  outline: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%);
  color: #0c0d11;
  box-shadow: 0 12px 24px rgba(252, 238, 32, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, #fff267 0%, var(--gold) 100%);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.button-inline {
  min-height: 40px;
  padding-inline: 18px;
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero {
  padding-top: 28px;
}

.breadcrumbs ol {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.3);
}

.breadcrumbs li {
  display: flex;
  align-items: center;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 420px);
  gap: 34px;
  align-items: center;
  padding: 38px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 18% 12%, rgba(252, 238, 32, 0.18), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(109, 121, 255, 0.24), transparent 26%),
    linear-gradient(180deg, rgba(14, 17, 25, 0.98) 0%, rgba(10, 12, 18, 0.96) 100%);
  box-shadow: var(--shadow);
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(252, 238, 32, 0.12);
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.hero h1,
.article-card h2,
.footer-contact h2,
.toc h2,
.category-card h2,
.content-section h3,
.error-shell h1 {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.lead {
  max-width: 54ch;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
  margin: 18px 0 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero-points,
.styled-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.hero-points li,
.styled-list li {
  position: relative;
  padding: 14px 16px 14px 48px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  color: var(--muted);
  line-height: 1.6;
}

.hero-points li::before,
.styled-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 16px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #fff9a4 100%);
  box-shadow: 0 0 0 4px rgba(252, 238, 32, 0.12);
}

.device-frame {
  position: relative;
  width: min(100%, 360px);
  margin-inline: auto;
  padding: 14px;
  border-radius: 38px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.5);
}

.device-screen {
  aspect-ratio: 314 / 720;
  overflow: hidden;
  border-radius: 28px;
  background: #0a0c12;
}

.device-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.category-card,
.article-card,
.toc,
.contact-card,
.provider-card,
.slot-card,
.info-panel,
.error-shell {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--panel);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 22px;
  min-height: 100%;
}

.category-card h2,
.content-section h3 {
  font-size: 1.5rem;
}

.content-section h3 {
  margin: 28px 0 12px;
}

.category-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.content-shell {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.content-shell > * {
  min-width: 0;
}

.toc {
  padding: 18px 20px;
  min-width: 0;
}

.toc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.toc h2 {
  font-size: 1.5rem;
}

.toc-toggle {
  border: 0;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font-weight: 700;
}

.toc ol {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.toc:not(.is-open) ol {
  display: none;
}

.article-card {
  padding: 28px;
  min-width: 0;
}

.content-section + .content-section {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.content-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.content-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.74;
}

.content-subtitle {
  margin: 22px 0 10px;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.content-section p + p,
.content-section p + .styled-list,
.content-section p + .styled-steps,
.content-section p + .table-wrap,
.content-section .styled-list + p,
.content-section .styled-steps + p,
.content-section .table-wrap + p,
.content-section .table-wrap + .content-subtitle,
.content-section .styled-list + .content-subtitle,
.content-section .styled-steps + .content-subtitle {
  margin-top: 16px;
}

.info-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
  gap: 24px;
  margin-top: 22px;
  padding: 22px;
}

.styled-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  counter-reset: steps;
}

.styled-steps li {
  position: relative;
  min-height: 48px;
  padding: 10px 0 10px 56px;
  color: var(--text);
  line-height: 1.55;
}

.styled-steps li::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 4px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(252, 238, 32, 0.12);
  border: 1px solid rgba(252, 238, 32, 0.4);
  color: var(--gold);
  font-weight: 700;
}

.table-wrap {
  margin-top: 22px;
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.content-table {
  width: max-content;
  border-collapse: collapse;
  min-width: 100%;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.content-table thead {
  background: rgba(252, 238, 32, 0.1);
}

.content-table th,
.content-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.content-table th {
  color: var(--text);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.content-table td {
  color: var(--muted);
}

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

.cta-center {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.content-cta-row {
  gap: 12px;
  flex-wrap: wrap;
}

.section-embed {
  margin-top: 24px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(252, 238, 32, 0.08), transparent 26%),
    rgba(255, 255, 255, 0.025);
}

.section-embed--providers {
  margin-top: 18px;
}

.inline-media-grid {
  display: grid;
  gap: 18px;
  align-items: stretch;
}

.inline-media-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.inline-media-grid--split {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 360px);
}

.inline-media-card {
  overflow: hidden;
  min-height: 100%;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.inline-media-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inline-media-card--copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 24px;
}

.inline-media-card--copy h3,
.section-heading--compact h3 {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.45rem;
}

.inline-media-card--copy p,
.section-heading--compact p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.section-heading--compact {
  margin-bottom: 16px;
}

.payment-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.payment-chip-row img {
  height: 36px;
  width: auto;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.payment-showcase-card {
  width: 100%;
}

.payment-showcase-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  width: 100%;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.slot-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.slot-card__media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.slot-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slot-card__body {
  display: flex;
  flex-direction: column;
  padding: 18px;
  min-height: 214px;
}

.slot-card__provider {
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.slot-card h3 {
  min-height: 52px;
  margin: 8px 0 0;
  font-size: 1.15rem;
  line-height: 1.22;
}

.slot-card__actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.provider-card {
  display: grid;
  place-items: center;
  min-height: 110px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.payments-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.payments-showcase img,
.footer-payments img {
  height: 36px;
  width: auto;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.faq-list details {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
  padding: 18px 18px 0;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  padding-bottom: 18px;
}

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

.faq-list details p {
  padding-bottom: 18px;
}

.site-footer {
  padding: 24px 0 56px;
}

.footer-contact,
.footer-links,
.age-badge,
.footer-payments,
.footer-copy {
  margin-top: 18px;
}

.contact-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 24px;
}

.contact-card p {
  margin: 0;
  line-height: 1.68;
  color: var(--muted);
}

.contact-label {
  color: var(--gold) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 6px !important;
}

.footer-links a {
  color: var(--muted);
  padding: 10px 0;
}

.age-badge {
  width: 70px;
  height: 70px;
  margin-inline: auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Arial Narrow", Impact, Haettenschweiler, sans-serif;
  font-size: 1.7rem;
  border: 1px solid rgba(252, 238, 32, 0.45);
  color: var(--gold);
  background: rgba(252, 238, 32, 0.08);
}

.footer-copy {
  text-align: center;
  color: var(--muted);
}

.footer-copy p {
  margin: 8px 0 0;
}

.hero-layout--desktop {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
  align-items: stretch;
}

.hero-visual--wide {
  display: flex;
  align-items: stretch;
}

.hero-preview-card,
.promo-media-card,
.media-showcase-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.hero-preview-card {
  width: 100%;
}

.hero-preview-card img,
.promo-media-card img,
.media-showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-section {
  padding-top: 6px;
}

.promo-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 460px);
  gap: 22px;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 15% 15%, rgba(252, 238, 32, 0.16), transparent 25%),
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.07), transparent 22%),
    linear-gradient(180deg, rgba(19, 19, 19, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
  box-shadow: var(--shadow);
}

.promo-banner h2,
.section-heading h2,
.footer-column h2,
.media-showcase-card__body h3 {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.promo-banner h2,
.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.promo-banner__copy p,
.section-heading p,
.media-showcase-card__body p {
  color: var(--muted);
  line-height: 1.72;
}

.promo-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.promo-stats span,
.compliance-badge,
.footer-trust-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.9rem;
}

.promo-banner__visual {
  display: grid;
  gap: 16px;
}

.promo-media-card--large {
  min-height: 284px;
}

.promo-media-card--small {
  min-height: 160px;
}

.promo-mini-grid,
.media-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.media-showcase-grid--inline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.promo-mini-card,
.media-showcase-card__body {
  display: flex;
  flex-direction: column;
}

.promo-mini-card {
  min-height: 100%;
  padding: 22px;
  gap: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.promo-mini-card h3,
.media-showcase-card__body h3 {
  font-size: 1.32rem;
}

.promo-mini-card p,
.media-showcase-card__body p {
  margin: 0;
}

.promo-mini-card .button,
.media-showcase-card__body .button {
  margin-top: auto;
}

.section-dark {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 22px;
}

.provider-grid--wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.provider-card img {
  max-height: 42px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(1.12);
  opacity: 0.95;
}

.media-showcase-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.media-showcase-card__body {
  gap: 14px;
  padding: 18px 20px 22px;
}

.site-footer {
  padding: 30px 0 56px;
}

.footer-shell {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
}

.footer-topbar,
.compliance-row,
.footer-columns,
.footer-strip,
.footer-trust-row {
  display: flex;
  align-items: center;
}

.footer-topbar {
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 28px;
}

.footer-logo img {
  width: auto;
  height: 56px;
}

.compliance-row {
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  opacity: 0.92;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-logo-link:hover,
.footer-logo-link:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
  outline: none;
}

.footer-logo-image {
  display: block;
  width: auto;
  object-fit: contain;
}

.footer-logo-image--responsibility {
  height: 34px;
  max-width: 116px;
}

.footer-logo-image--provider {
  height: 38px;
  max-width: 156px;
}

.footer-logo-image--payment {
  height: 34px;
  max-width: 132px;
}

.footer-columns {
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 26px;
}

.footer-column {
  flex: 1 1 0;
  display: grid;
  gap: 12px;
}

.footer-column h2 {
  font-size: 1.1rem;
}

.footer-column a {
  color: var(--muted);
  line-height: 1.45;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--text);
  outline: none;
}

.footer-strip {
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-strip__arrow {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.8rem;
  line-height: 1;
}

.footer-strip__track {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1 1 auto;
  overflow-x: auto;
  scrollbar-width: none;
}

.footer-strip__track::-webkit-scrollbar {
  display: none;
}

.footer-strip__track img {
  width: auto;
  flex: 0 0 auto;
}

.footer-trust-row {
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%);
  color: #0b0d11;
  font-size: 1.35rem;
  cursor: pointer;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 50;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.legal-hero {
  padding-top: 28px;
}

.legal-title {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(252, 238, 32, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(14, 17, 25, 0.98) 0%, rgba(10, 12, 18, 0.96) 100%);
}

.legal-title h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  text-transform: uppercase;
}

.legal-title p {
  margin: 14px 0 0;
  max-width: 60ch;
  color: var(--muted);
  line-height: 1.7;
}

.error-shell {
  max-width: 720px;
  margin: 64px auto 0;
  padding: 38px 32px;
  text-align: center;
}

.error-shell--wide {
  max-width: 820px;
}

.error-shell h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  text-transform: uppercase;
}

.error-shell p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.error-shell .styled-list {
  margin-top: 24px;
  text-align: left;
}

.error-shell .styled-list li {
  color: var(--text);
}

.error-shell .cta-center {
  margin-top: 28px;
}

.error-shell__note {
  display: inline-block;
  margin-top: 18px;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .category-grid,
  .slot-grid,
  .promo-mini-grid,
  .media-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .provider-grid,
  .provider-grid--wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .hero-layout,
  .hero-layout--desktop,
  .promo-banner,
  .inline-media-grid--two,
  .inline-media-grid--split,
  .info-panel,
  .contact-card {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-visual {
    order: -1;
  }

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

  .footer-columns,
  .footer-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

.compliance-row {
  justify-content: flex-start;
}
}

@media (max-width: 960px) {
  .header-search span {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .header-row {
    align-items: center;
    flex-direction: column;
  }

  .header-brand {
    width: 100%;
    justify-content: space-between;
  }

  .header-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 46px 1fr 1fr;
    align-items: stretch;
    gap: 10px;
    justify-content: stretch;
  }

  .language-switcher {
    grid-column: 1 / -1;
    width: auto;
  }

  .lang-toggle {
    width: 100%;
    justify-content: center;
  }

  .header-search {
    display: none;
  }

  .header-search-icon {
    display: inline-flex;
    grid-column: 1;
  }

  .header-actions .button {
    min-width: 0;
    padding-inline: 14px;
  }

  .header-actions .button-secondary {
    grid-column: 2;
  }

  .header-actions .button-primary {
    grid-column: 3;
  }

  .lang-menu {
    left: 0;
    right: auto;
    width: 100%;
    min-width: 0;
  }

  .hero-layout,
  .hero-layout--desktop,
  .article-card,
  .legal-title,
  .promo-banner {
    padding: 22px;
  }

  .category-grid,
  .slot-grid,
  .provider-grid,
  .provider-grid--wide,
  .promo-mini-grid,
  .media-showcase-grid,
  .media-showcase-grid--inline {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button,
  .cta-center .button {
    width: 100%;
  }

  .contact-card {
    padding: 20px;
  }

  .content-table {
    min-width: 100%;
  }

  .content-table th,
  .content-table td {
    padding: 12px;
    font-size: 0.92rem;
  }

  .footer-strip {
    gap: 12px;
  }

  .footer-strip__track {
    gap: 20px;
  }

  .footer-column {
    width: 100%;
  }
}
