:root {
  --ink: #090b10;
  --ink-soft: #191c24;
  --paper: #f2efe8;
  --surface: #ffffff;
  --text: #323641;
  --muted: #6e7480;
  --line: #d9dde2;
  --mint: #06e5a0;
  --mint-dark: #00ad78;
  --plum: #8b16c9;
  --plum-dark: #641092;
  --vermilion: #d33a2c;
  --shadow: 0 8px 24px rgba(9, 11, 16, .08);
  --header-h: 75px;
  --content-gap: 20px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    linear-gradient(rgba(9, 11, 16, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 11, 16, .025) 1px, transparent 1px),
    var(--paper);
  background-size: 32px 32px;
  font-family: Inter, "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .16;
  background-image:
    linear-gradient(30deg, transparent 49.5%, rgba(139, 22, 201, .11) 50%, transparent 50.5%),
    linear-gradient(150deg, transparent 49.5%, rgba(6, 229, 160, .1) 50%, transparent 50.5%);
  background-size: 64px 36px;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  color: #fff;
  background: rgba(9, 11, 16, .98);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(1600px, 100%);
  height: 100%;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand { flex: 0 0 auto; }
.brand img { width: 135px; height: 34px; }

.header-navigation {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.primary-nav a,
.footer-links a,
.article-panel a {
  position: relative;
}

.primary-nav a {
  padding: 10px 13px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.primary-nav a::after,
.footer-links a::after,
.article-panel a::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 4px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--mint) 24%, var(--vermilion) 78%, transparent);
  transform: scaleX(0) skewX(-18deg);
  transform-origin: left;
  transition: transform .24s ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a[aria-current="page"]::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after,
.article-panel a:hover::after,
.article-panel a:focus-visible::after,
.article-panel a.is-active::after { transform: scaleX(1) skewX(-18deg); }

.primary-nav a[aria-current="page"] { color: var(--mint); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.geo-switcher {
  position: relative;
  z-index: 1100;
  flex: 0 0 auto;
}

.geo-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 62px;
  height: 44px;
  padding: 7px 9px;
  border: 1px solid var(--mint);
  border-radius: 8px;
  color: #fff;
  background: #11141a;
  cursor: pointer;
  transition: background .18s ease, box-shadow .18s ease;
}

.geo-toggle:hover,
.geo-toggle:focus-visible,
.geo-toggle[aria-expanded="true"] { background: #1c2028; box-shadow: 0 0 0 3px rgba(6,229,160,.12); }

.geo-flag {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 1px 2px rgba(0,0,0,.3);
}

.geo-chevron {
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--mint);
  border-left: 2px solid var(--mint);
  transform: translateY(2px) rotate(45deg);
  transition: transform .18s ease;
}

.geo-toggle[aria-expanded="true"] .geo-chevron { transform: translateY(-2px) rotate(225deg); }

.geo-menu {
  position: fixed;
  top: calc(var(--header-h) + 10px);
  left: 50%;
  z-index: 1200;
  width: min(720px, calc(100vw - 32px));
  max-height: calc(100dvh - var(--header-h) - 24px);
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  border: 1px solid #3b4049;
  border-radius: 10px;
  color: #fff;
  background: #11141a;
  box-shadow: 0 18px 42px rgba(0,0,0,.42);
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -7px);
  transition: opacity .16s ease, visibility .16s, transform .18s ease;
}

.geo-menu.is-open { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

.geo-link {
  min-width: 0;
  min-height: 46px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #454a54;
  border-radius: 8px;
  color: #f8f9fb;
  background: #343840;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  transition: color .16s ease, background .16s ease, border-color .16s ease;
}

.geo-link:hover,
.geo-link:focus-visible { color: var(--ink); background: #fff; border-color: #fff; outline: none; }
.geo-link.is-current { color: var(--ink); background: var(--mint); border-color: var(--mint); }
.geo-name { min-width: 0; overflow-wrap: anywhere; }
.geo-code { display: none; }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 10px 8px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transform-origin: center;
  transition: transform .25s ease, opacity .18s ease, width .25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(42deg); width: 23px; }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: scaleX(.42) rotate(90deg); opacity: .8; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-42deg); width: 23px; }

.cta {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 44px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 5px 12px 5px 12px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  overflow: visible;
  transition: transform .16s ease, box-shadow .2s ease, filter .2s ease;
}

.cta::after {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  opacity: 0;
  transform: scale(.72) rotate(-24deg);
  pointer-events: none;
}

.cta:hover { transform: translateY(-2px); filter: brightness(1.04); }
.cta:focus-visible { outline: 3px solid rgba(6, 229, 160, .4); outline-offset: 3px; }
.cta.is-pressed { transform: translateY(1px) scale(.98); }
.cta.is-pressed::after { animation: enso-press .32s ease-out; }

@keyframes enso-press {
  0% { opacity: .75; transform: scale(.72) rotate(-24deg); }
  100% { opacity: 0; transform: scale(1.08) rotate(8deg); }
}

.cta-main { color: #07100d; background: var(--mint); box-shadow: 0 8px 18px rgba(6, 229, 160, .2); }
.cta-bonus { color: #fff; background: var(--plum); box-shadow: 0 8px 18px rgba(139, 22, 201, .22); }
.header-login { color: var(--ink); background: var(--mint); }
.header-register { color: #fff; background: var(--plum); }

.site-shell { width: 100%; }

.desktop-grid {
  width: min(1600px, 100%);
  margin: 0 auto;
  padding: 20px 30px;
  display: grid;
  grid-template-columns: 240px 20px minmax(0, 1020px) 20px 240px;
  align-items: start;
}

.main-column {
  grid-column: 3;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar {
  position: sticky;
  top: 95px;
  max-height: calc(100vh - 115px);
  overflow: auto;
  scrollbar-width: thin;
}

.sidebar-left { grid-column: 1; }
.sidebar-right { grid-column: 5; }

.sidebar-panel,
.sidebar-game-grid {
  background: var(--surface);
  border: 1px solid rgba(9, 11, 16, .08);
  border-radius: 6px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.sidebar-panel + .sidebar-panel { margin-top: 20px; }

.sidebar-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #2a2d35;
}

.sidebar-tabs span {
  padding: 11px 8px;
  color: #fff;
  background: var(--ink);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.sidebar-tabs span:first-child { box-shadow: inset 0 3px var(--mint); }
.sidebar-label, .sidebar-title {
  margin: 0;
  padding: 12px 14px;
  color: #fff;
  background: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.sidebar-label { display: flex; align-items: center; gap: 8px; }
.sidebar-label b { width: 8px; height: 8px; border-radius: 50%; background: var(--vermilion); box-shadow: 0 0 0 4px rgba(211, 58, 44, .14); }
.sport-list { list-style: none; margin: 0; padding: 0; }
.sport-list li { border-top: 1px solid var(--line); }
.sport-list a { display: flex; align-items: center; gap: 10px; width: 100%; padding: 10px 14px; transition: background .2s ease, padding-left .2s ease; }
.sport-list a:hover, .sport-list a:focus-visible { padding-left: 17px; background: linear-gradient(90deg, rgba(6,229,160,.09), transparent); }
.sport-list img { width: 20px; height: 20px; flex: 0 0 20px; object-fit: contain; }
.sport-list span { font-size: 12px; line-height: 1.35; }

.article-panel nav { display: flex; flex-direction: column; }
.article-panel a { padding: 9px 14px 9px 19px; border-top: 1px solid var(--line); font-size: 12px; line-height: 1.35; }
.article-panel a.is-active { color: var(--plum-dark); font-weight: 800; background: rgba(139,22,201,.06); }
.article-panel a::after { left: 4px; right: auto; top: 22%; bottom: 22%; width: 3px; height: auto; transform: scaleY(0); transform-origin: top; }
.article-panel a:hover::after,
.article-panel a:focus-visible::after,
.article-panel a.is-active::after { transform: scaleY(1); }

.sidebar-game-grid { padding: 8px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.sidebar-game { position: relative; min-height: 105px; overflow: hidden; border-radius: 5px; background: var(--ink); }
.sidebar-game:first-child { grid-column: 1 / -1; min-height: 128px; }
.sidebar-game img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease, filter .3s ease; }
.sidebar-game::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 35%, rgba(9,11,16,.9)); }
.sidebar-game span { position: absolute; left: 10px; right: 10px; bottom: 8px; z-index: 1; color: #fff; font-size: 12px; font-weight: 800; }
.sidebar-game:hover img { transform: scale(1.045); filter: saturate(1.08); }

.page-hero,
.promo-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.page-hero { min-height: 381px; border-radius: 8px 20px 8px 20px; }
.hero-image, .promo-banner > img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.hero-image { object-position: var(--hero-focus, 75% 50%); }
.hero-overlay, .promo-overlay { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero-overlay { background: linear-gradient(90deg, rgba(9,11,16,.97) 0%, rgba(9,11,16,.89) 43%, rgba(9,11,16,.32) 72%, rgba(9,11,16,.08) 100%); }
.hero-copy { width: 65%; min-height: 381px; padding: 65px 30px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.hero-eyebrow, .promo-eyebrow, .service-eyebrow { margin: 0 0 12px; color: var(--mint); font-size: 12px; font-weight: 900; letter-spacing: .16em; }
.hero-copy h1 { width: 100%; margin: 0; color: #fff; font-size: 30px; line-height: 36px; font-weight: 700; text-transform: uppercase; text-wrap: wrap; }
.hero-lead { width: 100%; max-width: none; margin: 16px 0 0; color: #e9ebef; font-size: 15px; line-height: 23.25px; }
.hero-cta, .hero-store-pair { margin-top: 16px; }

.store-pair { display: flex; flex-wrap: wrap; gap: 12px; }
.store-button { min-width: 190px; min-height: 56px; justify-content: flex-start; gap: 12px; padding: 8px 18px; color: #fff; background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.32); box-shadow: none; }
.store-button img { width: 25px; height: 25px; flex: 0 0 25px; object-fit: contain; }
.store-button span { display: grid; gap: 1px; text-align: left; line-height: 1; }
.store-button small { color: #dfe3e7; font-size: 9px; font-weight: 700; letter-spacing: .05em; }
.store-button strong { color: #fff; font-size: 16px; font-weight: 900; line-height: 19px; }
.section-store-pair { margin-top: 24px; }
.section-store-pair .store-button { background: var(--ink); border-color: var(--ink); box-shadow: 0 8px 18px rgba(11,14,20,.14); }
.section-store-pair .store-button:hover { background: #202631; border-color: #202631; }

.content-section {
  position: relative;
  width: 100%;
  scroll-margin-top: calc(var(--header-h) + 18px);
  padding: 20px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(9, 11, 16, .08);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.content-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 58px;
  height: 58px;
  opacity: .24;
  background:
    linear-gradient(135deg, transparent 46%, var(--plum) 47% 49%, transparent 50%),
    linear-gradient(45deg, transparent 63%, var(--mint) 64% 66%, transparent 67%);
  transition: opacity .2s ease, transform .2s ease;
}

.content-section:hover::before,
.content-section:focus-within::before { opacity: .52; transform: translate(-2px, 2px); }

.content-section > h2 {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0 0 20px;
  padding: 0 0 14px;
  color: var(--ink);
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;
  text-wrap: wrap;
}

.content-section > h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 88px;
  height: 4px;
  background: linear-gradient(90deg, var(--vermilion) 0 12px, var(--ink) 12px 58px, var(--mint) 58px 88px);
  clip-path: polygon(0 30%, 83% 0, 100% 50%, 72% 75%, 0 100%);
  transform: scaleX(.28);
  transform-origin: left;
  opacity: .45;
  transition: transform .55s cubic-bezier(.2,.8,.2,1), opacity .35s ease;
}

.reveal-seam.is-visible > h2::after { transform: scaleX(1); opacity: 1; }

.section-flow,
.section-flow > *,
.faq-answer,
.faq-answer > * { width: 100%; max-width: none; }

.section-flow { display: flow-root; }
.section-flow > * { margin-top: 0; margin-bottom: 20px; }
.section-flow > *:last-child { margin-bottom: 0; }
.section-flow p { line-height: 23.25px; }
.section-flow h3 {
  margin: 20px 0;
  color: var(--plum-dark);
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  text-transform: uppercase;
}

.source-list { margin: 0 0 20px; padding: 0; list-style: none; counter-reset: source-step; }
.source-list li { position: relative; min-height: 28px; padding: 4px 0 4px 34px; line-height: 23.25px; }
.source-list li::before { content: ""; position: absolute; left: 8px; top: 12px; width: 8px; height: 8px; background: var(--mint); border: 2px solid var(--ink); transform: rotate(45deg); }
.source-steps { counter-reset: source-step; }
.source-steps li { counter-increment: source-step; padding-left: 48px; min-height: 40px; }
.source-steps li::before { content: counter(source-step); top: 2px; left: 0; width: 32px; height: 32px; display: grid; place-items: center; color: #fff; background: var(--ink); border: 0; border-radius: 3px 9px 3px 9px; transform: none; font-size: 12px; font-weight: 900; }
.source-steps li:not(:last-child)::after { content: ""; position: absolute; left: 15px; top: 34px; bottom: -6px; width: 2px; background: linear-gradient(var(--mint), rgba(139,22,201,.32)); }

.table-wrap {
  width: 100%;
  max-width: 100%;
  margin: 0 0 20px;
  overflow-x: auto;
  border: 1px solid #cfd4da;
  border-radius: 5px;
  background: #fff;
  scrollbar-color: var(--plum) #eceef1;
}

.table-wrap:focus-visible { outline: 3px solid rgba(6,229,160,.35); outline-offset: 2px; }
.table-wrap table { width: 100%; min-width: 620px; border-collapse: collapse; table-layout: auto; }
.table-wrap th, .table-wrap td { padding: 12px 16px; border-right: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid #d8dce1; vertical-align: middle; text-align: left; white-space: normal; }
.table-wrap thead th { color: #fff; background: var(--ink); font-size: 13px; font-weight: 800; }
.table-wrap tbody th { position: relative; color: var(--ink); background: #f1f7f4; font-weight: 800; }
.table-wrap tbody th::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 9px; border-radius: 50%; background: var(--vermilion); box-shadow: 0 0 0 3px rgba(211,58,44,.1); vertical-align: 1px; }
.table-wrap tbody tr:nth-child(even) td { background: linear-gradient(90deg, rgba(139,22,201,.035), rgba(6,229,160,.035)); }
.table-wrap tbody tr { transition: box-shadow .2s ease, background .2s ease; }
.table-wrap tbody tr:hover { box-shadow: inset 4px 0 var(--mint), inset 0 0 0 999px rgba(6,229,160,.035); }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { width: 100%; border: 1px solid #cfd4da; border-radius: 5px; background: #fff; overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-item:hover, .faq-item:focus-within { border-color: rgba(139,22,201,.65); box-shadow: inset 4px 0 rgba(6,229,160,.7); }
.faq-item summary { position: relative; display: flex; align-items: center; gap: 14px; min-height: 54px; padding: 14px 52px 14px 18px; color: var(--ink); font-weight: 800; line-height: 1.45; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { position: absolute; top: 14px; right: 16px; width: 24px; height: 24px; border: 1px solid var(--ink); border-radius: 2px; }
.faq-item summary i::before, .faq-item summary i::after { content: ""; position: absolute; left: 5px; right: 5px; top: 10px; height: 2px; background: var(--ink); transition: transform .25s ease; }
.faq-item summary i::after { transform: rotate(90deg); }
.faq-item[open] summary { color: var(--plum-dark); background: linear-gradient(90deg, rgba(6,229,160,.08), transparent 60%); }
.faq-item[open] summary i::after { transform: rotate(0); }
.faq-answer { padding: 0 18px 16px; border-top: 1px solid #eceef1; }
.faq-answer > * { margin: 16px 0 0; }

.review-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.review-summary { margin: 0 0 16px; padding: 14px 16px; display: flex; align-items: baseline; gap: 10px 14px; flex-wrap: wrap; border: 1px solid rgba(139,22,201,.22); border-left: 4px solid var(--mint); border-radius: 5px; background: linear-gradient(90deg, rgba(6,229,160,.08), rgba(139,22,201,.055)); }
.review-summary span { color: var(--ink); font-size: 13px; font-weight: 800; }
.review-summary strong { color: var(--plum-dark); font-size: 22px; line-height: 1; }
.review-summary small { color: #606570; font-size: 12px; }
.pros-cons-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.bonus-offer-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin: 18px 0 20px; }
.bonus-offer-card { position: relative; min-width: 0; padding: 18px; overflow: hidden; background: linear-gradient(145deg, rgba(6,229,160,.055), rgba(139,22,201,.035) 60%, #fff); border: 1px solid rgba(9,11,16,.11); border-radius: 6px; box-shadow: 0 8px 22px rgba(9,11,16,.07); }
.bonus-offer-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: linear-gradient(var(--mint), var(--plum)); }
.bonus-offer-card h3 { margin: 0 0 10px; padding-left: 2px; color: var(--plum-dark); }
.bonus-offer-card p:last-child { margin-bottom: 0; }
.bonus-offer-card:nth-child(5) { grid-column: 1 / -1; }
.pros-cons-card { position: relative; padding: 18px; border: 1px solid #d7dbe0; border-radius: 5px; background: #fff; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.pros-cons-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: var(--mint); }
.pros-cons-card.cons-card::before { background: var(--vermilion); }
.pros-cons-card:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(9,11,16,.08); }
.pros-cons-card h3 { margin-top: 0; }
.pros-cons-card > *:last-child { margin-bottom: 0; }
.review-card { position: relative; margin: 0; padding: 18px; border: 1px solid #d7dbe0; border-radius: 5px; background: linear-gradient(135deg, #fff, #f7f5fa); }
.review-card::before { content: "“"; position: absolute; top: 5px; right: 14px; color: rgba(139,22,201,.16); font-family: Georgia, serif; font-size: 54px; line-height: 1; }
.review-card blockquote { margin: 14px 0 0; line-height: 1.6; }
.review-card figcaption { color: var(--ink); }
.review-author { display: grid; gap: 4px; min-width: 0; }
.review-heading { display: flex; justify-content: space-between; gap: 12px; }
.review-author strong { color: var(--ink); }
.review-author .review-subject { color: #686d77; font-size: 10px; font-weight: 700; white-space: normal; }
.review-card .review-score { color: var(--plum-dark); font-weight: 900; white-space: nowrap; }
.review-card-meta { margin: 14px 0 0; padding-top: 10px; border-top: 1px solid rgba(9,11,16,.1); color: #686d77; font-size: 11px; }

.responsible-box { margin-top: 20px; padding: 18px; border-left: 4px solid var(--vermilion); background: #faf5f1; }
.responsible-box h3 { margin-top: 0; color: var(--ink); }
.section-cta { margin: 0 0 20px; width: fit-content; }
.byline-card { margin-top: 20px; padding: 16px 18px; border: 1px solid #cfd4da; border-left: 5px solid var(--plum); border-radius: 5px; background: linear-gradient(90deg, rgba(139,22,201,.055), rgba(6,229,160,.035)); }
.byline-card .byline-line { margin: 6px 0; }

.promo-banner { min-height: 260px; border-radius: 6px 18px 6px 18px; }
.promo-banner > img { object-position: var(--promo-focus, 50% 50%); }
.promo-overlay { background: linear-gradient(90deg, rgba(9,11,16,.95), rgba(9,11,16,.77) 46%, rgba(9,11,16,.18) 74%, rgba(9,11,16,.05)); }
.promo-copy-right .promo-overlay { background: linear-gradient(270deg, rgba(9,11,16,.95), rgba(9,11,16,.77) 46%, rgba(9,11,16,.18) 74%, rgba(9,11,16,.05)); }
.promo-copy { width: 57%; min-height: 260px; padding: 28px 30px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.promo-copy-right .promo-copy { margin-left: auto; align-items: flex-start; }
.promo-copy h2 { width: 100%; margin: 0; color: #fff; font-size: 25px; line-height: 1.35; font-weight: 700; }
.promo-copy p:not(.promo-eyebrow) { width: 100%; margin: 12px 0 0; color: #e8eaf0; }
.promo-cta { margin-top: 16px; }

.site-footer { margin-top: 0; color: #fff; background: var(--ink); border-top: 3px solid transparent; border-image: linear-gradient(90deg, var(--mint), var(--plum), var(--vermilion)) 1; }
.footer-inner { width: min(1600px,100%); margin: 0 auto; padding: 34px 30px 20px; display: grid; grid-template-columns: 1.15fr 1fr; gap: 28px 48px; }
.footer-brand img { width: 135px; height: 34px; }
.footer-brand p { max-width: 500px; margin: 16px 0 0; color: #b9bec8; font-size: 13px; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.footer-links > div { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-links strong { margin-bottom: 4px; color: var(--mint); }
.footer-links a { color: #d9dce3; font-size: 13px; }
.footer-links a::after { left: 0; right: 0; bottom: -3px; }
.footer-geos { grid-column: 1 / -1; padding: 22px 0; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; border-top: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); }
.footer-geos .geo-link { min-height: 58px; }
.footer-safety { grid-column: 1 / -1; display: flex; align-items: center; gap: 16px; padding: 18px; border: 1px solid rgba(255,255,255,.12); border-radius: 5px; background: rgba(255,255,255,.035); }
.age-mark { flex: 0 0 auto; display: grid; place-items: center; width: 48px; height: 48px; border: 2px solid var(--vermilion); border-radius: 50%; font-size: 16px; font-weight: 900; }
.footer-safety p { margin: 0; color: #c7cbd3; font-size: 13px; }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 20px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); color: #979da8; font-size: 12px; }

.to-top { position: fixed; right: 18px; bottom: 18px; z-index: 100; display: grid; place-items: center; width: 42px; height: 42px; border: 0; border-radius: 50%; color: var(--ink); background: var(--mint); box-shadow: var(--shadow); cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .2s ease, transform .2s ease, visibility .2s; }
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

.service-main, .not-found { width: min(1080px, 100%); margin: 0 auto; padding: 20px 30px; }
.service-block, .not-found section { padding: 30px; background: #fff; border: 1px solid rgba(9,11,16,.08); border-radius: 6px; box-shadow: var(--shadow); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; color: var(--muted); font-size: 13px; }
.breadcrumbs a { color: var(--plum-dark); font-weight: 700; }
.service-block > h1, .not-found h1 { margin: 0 0 26px; color: var(--ink); font-size: 30px; line-height: 36px; }
.service-pair { width: 100%; padding: 18px 0; border-top: 1px solid var(--line); }
.service-pair h2 { width: 100%; margin: 0 0 10px; color: var(--ink); font-size: 20px; line-height: 30px; }
.service-pair p { width: 100%; margin: 0; }
.not-found { min-height: 58vh; display: grid; place-items: center; text-align: center; }
.not-found section { width: min(660px,100%); }
.not-found .cta { margin-top: 18px; }

@media (max-width: 1359px) {
  .desktop-grid { display: block; max-width: 1080px; padding-top: 20px; }
  .sidebar { display: none; }
  .main-column { width: 100%; max-width: 1020px; margin: 0 auto; }
}

@media (max-width: 1120px) {
  .header-inner { position: relative; }
  .geo-switcher { margin-left: auto; }
  .menu-toggle { display: block; margin-left: 0; }
  .header-navigation {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin: 0;
    padding: 12px 30px 20px;
    color: #fff;
    background: var(--ink);
    border: 0;
    border-top: 3px solid var(--mint);
    border-bottom: 1px solid rgba(255,255,255,.13);
    box-shadow: 0 18px 28px rgba(0,0,0,.28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transform-origin: top;
    transition: opacity .18s ease, visibility .18s, transform .22s ease;
  }
  .header-navigation.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .primary-nav { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .primary-nav a { padding: 13px 15px; }
  .header-actions { width: 100%; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .header-actions .cta { width: 100%; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .header-inner { padding: 0 16px; gap: 12px; }
  .brand img { width: 119px; height: auto; }
  .header-navigation { padding: 12px 16px 20px; }
  .geo-toggle { width: 58px; height: 42px; }
  .geo-menu { width: calc(100vw - 24px); padding: 10px; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 7px; }
  .geo-menu .geo-link { min-height: 44px; padding: 7px 5px; justify-content: center; gap: 5px; }
  .geo-menu .geo-name { display: none; }
  .geo-menu .geo-code { display: inline; }
  .geo-menu .geo-flag { width: 25px; height: 25px; }
  .primary-nav { grid-template-columns: 1fr; }
  .header-actions .cta { min-height: 44px; padding: 11px 14px; font-size: 13px; }
  .desktop-grid { padding: 16px; }
  .main-column { gap: 16px; }
  .page-hero { min-height: 420px; border-radius: 6px 14px 6px 14px; }
  .hero-copy { width: 100%; min-height: 420px; padding: 34px 20px; justify-content: flex-end; }
  .hero-overlay { background: linear-gradient(180deg, rgba(9,11,16,.18) 0%, rgba(9,11,16,.42) 35%, rgba(9,11,16,.94) 73%, rgba(9,11,16,.98) 100%); }
  .hero-copy h1 { font-size: 27px; line-height: 34px; }
  .content-section { padding: 20px; }
  .content-section > h2 { font-size: 26px; line-height: 34px; }
  .review-grid { grid-template-columns: 1fr; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .bonus-offer-grid { grid-template-columns: 1fr; }
  .bonus-offer-card:nth-child(5) { grid-column: auto; }
  .promo-banner { min-height: 330px; }
  .promo-copy { width: 100%; min-height: 330px; padding: 26px 20px; justify-content: flex-end; background: transparent; border: 0; border-radius: 0; box-shadow: none; backdrop-filter: none; }
  .promo-copy-right .promo-copy { margin-left: 0; }
  .promo-overlay, .promo-copy-right .promo-overlay { background: linear-gradient(180deg, rgba(9,11,16,.12), rgba(9,11,16,.44) 42%, rgba(9,11,16,.96) 78%, rgba(9,11,16,.98)); }
  .promo-copy h2 { font-size: 23px; }
  .footer-inner { padding: 30px 16px 18px; grid-template-columns: 1fr; gap: 26px; }
  .footer-links, .footer-geos, .footer-safety, .footer-bottom { grid-column: 1; }
  .footer-geos { padding: 18px 0; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
  .footer-geos .geo-link { min-height: 46px; padding: 7px 5px; justify-content: center; gap: 5px; }
  .footer-geos .geo-name { display: none; }
  .footer-geos .geo-code { display: inline; }
  .footer-geos .geo-flag { width: 25px; height: 25px; }
  .service-main, .not-found { padding: 16px; }
  .service-block, .not-found section { padding: 22px 20px; }
}

@media (max-width: 520px) {
  .menu-toggle { margin-left: 0; }
  .store-pair { width: 100%; flex-direction: column; }
  .store-button { width: 100%; min-width: 0; min-height: 56px; }
  .hero-copy h1 { font-size: 25px; line-height: 32px; }
  .hero-lead { font-size: 14px; line-height: 22px; }
  .content-section > h2 { font-size: 24px; line-height: 32px; }
  .section-flow h3 { font-size: 18px; line-height: 29px; }
  .cta { max-width: 100%; white-space: normal; text-align: center; }
  .section-cta { width: auto; }
  .footer-links { gap: 18px; }
  .footer-safety { align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 360px) {
  .desktop-grid { padding-left: 12px; padding-right: 12px; }
  .header-inner { padding-left: 12px; padding-right: 12px; }
  .header-navigation { padding-left: 12px; padding-right: 12px; }
  .geo-menu { width: calc(100vw - 16px); padding: 8px; gap: 6px; }
  .geo-menu .geo-link, .footer-geos .geo-link { gap: 4px; font-size: 12px; }
  .geo-menu .geo-flag, .footer-geos .geo-flag { width: 23px; height: 23px; }
  .content-section { padding: 18px 16px; }
  .hero-copy, .promo-copy { padding-left: 16px; padding-right: 16px; }
  .footer-links { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal-seam > h2::after { transform: scaleX(1); opacity: 1; }
}
