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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: #eef7ff;
  background:
    radial-gradient(circle at 12% 15%, rgba(21, 182, 255, 0.16), transparent 25%),
    radial-gradient(circle at 88% 18%, rgba(255, 154, 46, 0.14), transparent 22%),
    radial-gradient(circle at 70% 82%, rgba(68, 255, 208, 0.12), transparent 28%),
    linear-gradient(180deg, #06131d 0%, #0a1a27 42%, #08111a 100%);
  overflow-x: hidden;
  position: relative;
}

body.menu-open { overflow: hidden; }

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

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

button { font: inherit; }

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 22px;
  position: relative;
  z-index: 1;
}

.page-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .14;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, #000 48%, transparent 92%);
}

.page-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.page-glow--one {
  top: 40px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: rgba(0, 191, 255, 0.18);
}

.page-glow--two {
  right: -90px;
  bottom: 100px;
  width: 340px;
  height: 340px;
  background: rgba(255, 140, 50, 0.16);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 15, 24, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(125, 212, 255, 0.14);
}

.topbar__wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand,
.footer-dark__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #15b6ff, #46ffd5 55%, #ff9a2e);
  color: #031019;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(21, 182, 255, 0.24);
}

.brand__text {
  display: inline-flex;
  flex-direction: column;
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  color: #fff;
}

.brand__text span {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #8fdfff;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav a {
  color: #cfeeff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding-bottom: 6px;
  position: relative;
  transition: color .2s ease, opacity .2s ease;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #15b6ff, #ff9a2e);
  transition: width .25s ease;
}

.nav a:hover { color: #fff; }

.nav a:hover::after { width: 100%; }

.topbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.lang-box {
  display: flex;
  gap: 6px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(143,223,255,.16);
}

.lang-box__btn {
  min-width: 46px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #cdeeff;
  transition: all .2s ease;
}

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

.lang-box__btn.is-active {
  color: #031019;
  background: linear-gradient(135deg, #46ffd5, #15b6ff);
}

.action-btn {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

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

.action-btn--ghost {
  color: #e3f7ff;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(143,223,255,.18);
}

.action-btn--accent {
  color: #031019;
  background: linear-gradient(135deg, #ffb14a, #46ffd5);
  box-shadow: 0 14px 30px rgba(255, 156, 68, 0.22);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #15b6ff, #ff9a2e);
  cursor: pointer;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #03202c;
  transition: transform .25s ease, opacity .25s ease;
}

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

.menu-toggle.is-active span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

.mobile-panel {
  max-height: 0;
  overflow: hidden;
  background: rgba(4, 13, 21, 0.98);
  transition: max-height .35s ease;
  border-top: 1px solid rgba(143,223,255,.12);
}

.mobile-panel.is-open { max-height: 520px; }

.mobile-panel .container {
  padding-top: 18px;
  padding-bottom: 20px;
}

.mobile-panel__lang,
.mobile-panel__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.mobile-panel__lang { margin-bottom: 16px; }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-nav__link {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  color: #eef8ff;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid rgba(143,223,255,.12);
}

.hero-plinko {
  position: relative;
  z-index: 1;
  padding: 54px 0 26px;
}

.hero-plinko__grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 34px;
  align-items: center;
}

.hero-plinko__content { padding: 20px 0 10px; }

.eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.eyebrow span {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(70,255,213,.08);
  border: 1px solid rgba(70,255,213,.18);
  color: #baffee;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-plinko h1 {
  margin: 0 0 18px;
  max-width: 720px;
  font-size: 64px;
  line-height: .98;
  letter-spacing: -.03em;
  font-weight: 900;
  color: #fff;
}

.hero-plinko__text {
  max-width: 650px;
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: #b9d3e3;
}

.hero-plinko__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-cta {
  min-height: 56px;
  padding: 0 24px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease;
}

.hero-cta:hover { transform: translateY(-2px); }

.hero-cta--primary {
  color: #031019;
  background: linear-gradient(135deg, #46ffd5, #15b6ff);
  box-shadow: 0 16px 34px rgba(21,182,255,.24);
}

.hero-cta--secondary {
  color: #fff;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(143,223,255,.16);
}

.hero-plinko__mini {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  margin-top: 28px;
  max-width: 680px;
}

.mini-card {
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(143,223,255,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.mini-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  color: #fff;
}

.mini-card span {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  color: #b8d3e3;
}

.hero-plinko__visual {
  display: grid;
  gap: 18px;
}

.visual-shell {
  position: relative;
  min-height: 470px;
  padding: 24px;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(10,27,41,.98), rgba(6,18,29,.96));
  border: 1px solid rgba(143,223,255,.14);
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
}

.hero-plinko__visual {
  align-self: start;
}

.visual-shell {
  position: relative;
  height: 470px;
  min-height: 470px;
}

.hero-mockup {
  width: 100%;
  max-width: 500px;
  min-height: 320px;
}

.visual-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #ffb14a, #46ffd5);
  color: #031019;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.visual-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: .9;
}

.visual-orb--one {
  top: 70px;
  right: 40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(70,255,213,.7), rgba(70,255,213,0));
}

.visual-orb--two {
  bottom: 36px;
  left: 24px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255,177,74,.5), rgba(255,177,74,0));
}

.hero-mockup {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 500px;
  margin: 48px auto 0;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(143,223,255,.14);
  box-shadow: 0 20px 40px rgba(0,0,0,.28);
}

.hero-mockup__top {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(143,223,255,.14);
}

.hero-mockup__top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
}

.hero-mockup__board {
  position: relative;
  padding: 26px 20px 22px;
  min-height: 320px;
}

.hero-mockup__drop {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  margin: 0 auto 22px;
  background: radial-gradient(circle at 30% 30%, #fff, #46ffd5 55%, #15b6ff);
  box-shadow: 0 0 24px rgba(70,255,213,.5);
}

.hero-mockup__pins {
  height: 190px;
  border-radius: 18px;
  position: relative;
  background-image: radial-gradient(circle, rgba(218,244,255,.75) 0 2px, transparent 3px);
  background-size: 30px 24px;
  background-position: center top;
  mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 100%);
}

.hero-mockup__multipliers {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 8px;
  margin-top: 16px;
}

.hero-mockup__multipliers b {
  min-height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(143,223,255,.12);
  color: #fff;
  font-size: 13px;
}

.hero-mockup__multipliers b:last-child {
  background: linear-gradient(135deg, rgba(255,177,74,.22), rgba(70,255,213,.2));
}

.floating-chip {
  position: absolute;
  z-index: 3;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(3,16,25,.9);
  border: 1px solid rgba(143,223,255,.16);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(0,0,0,.24);
}

.floating-chip--a {
  right: 20px;
  top: 82px;
}

.floating-chip--b {
  left: 20px;
  bottom: 24px;
}

.hero-side-card {
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(143,223,255,.12);
}

.hero-side-card > span {
  display: block;
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
}

.hero-side-card ul {
  margin: 0;
  padding-left: 22px;
}

.hero-side-card li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.7;
  color: #bdd7e6;
}

.stats-strip {
  position: relative;
  z-index: 1;
  padding: 8px 0 34px;
}

.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}

.stat-box {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(143,223,255,.12);
}

.stat-box__label {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #7fd5ff;
}

.stat-box__value {
  display: block;
  font-size: 20px;
  line-height: 1.35;
  color: #fff;
}

.section-heading { margin-bottom: 30px; }

.section-heading--center { text-align: center; }

.section-tag {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,177,74,.1);
  border: 1px solid rgba(255,177,74,.18);
  color: #ffd3a2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-heading h1,
.section-heading h2 {
  margin: 14px 0 0;
  font-size: 44px;
  line-height: 1.08;
  font-weight: 900;
  color: #fff;
}

.info-section,
.steps-section,
.faq-block {
  position: relative;
  z-index: 1;
}

.info-section { padding: 46px 0 22px; }

.content-layout {

  gap: 26px;
}

.content-main p,
.content-main ul,
.content-main h3,
.content-main blockquote,
.content-main table,
.content-main img {
  margin-top: 0;
}

.content-main h3 {
  margin: 34px 0 14px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  color: #fff;
}

.content-main p {
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1.82;
  color: #b9d3e3;
}

.content-main strong { color: #fff; }

.content-main em { color: #ffd29f; }

.content-main ul {
  margin-bottom: 22px;
  padding-left: 24px;
}

.content-main li {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.72;
  color: #b9d3e3;
}

.content-main li::marker { color: #46ffd5; }

.content-main blockquote {
  margin: 28px 0;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,177,74,.16);
  color: #fff;
}

.content-main blockquote p:last-child { margin-bottom: 0; }

.content-main img {
  width: 100%;
  max-width: 760px;
  margin: 30px auto;
  border-radius: 26px;
  object-fit: cover;
  box-shadow:
    0 20px 40px rgba(0,0,0,.3),
    0 0 0 1px rgba(143,223,255,.08);
}

.content-main table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  max-width: 100%;
  margin: 24px 0 28px;
  border-radius: 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(143,223,255,.12);
}

.content-main table thead,
.content-main table tbody {
  display: table;
  width: max-content;
  min-width: 100%;
  border-collapse: collapse;
}

.content-main thead {
  background: rgba(70,255,213,.08);
}

.content-main tr {
  border-bottom: 1px solid rgba(143,223,255,.1);
}

.content-main tr:last-child {
  border-bottom: 0;
}

.content-main th,
.content-main td {
  min-width: 180px;
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  font-size: 16px;
  line-height: 1.6;
  color: #e9f7ff;
}

.content-main th {
  white-space: nowrap;
  font-weight: 800;
  color: #fff;
}

.steps-section { padding: 42px 0 20px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}

.step-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(143,223,255,.12);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,177,74,.26);
  box-shadow: 0 18px 34px rgba(0,0,0,.22);
}

.step-card__num {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #15b6ff, #46ffd5 60%, #ffb14a);
  color: #04121b;
  font-size: 18px;
  font-weight: 900;
}

.step-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.2;
  color: #fff;
}

.step-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: #bad3e2;
}

.faq-block { padding: 26px 0 56px; }

.faq-modern {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-modern__item {
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(143,223,255,.12);
  overflow: hidden;
  transition: border-color .25s ease, transform .2s ease;
}

.faq-modern__item:hover {
  transform: translateY(-2px);
  border-color: rgba(255,177,74,.24);
}

.faq-modern__item.is-active { border-color: rgba(70,255,213,.34); }

.faq-modern__question {
  width: 100%;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  cursor: pointer;
}

.faq-modern__question span {
  display: block;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 800;
  color: #fff;
}

.faq-modern__question i {
  position: relative;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}

.faq-modern__question i::before,
.faq-modern__question i::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: transform .25s ease, opacity .25s ease;
}

.faq-modern__question i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-modern__item.is-active .faq-modern__question i {
  background: linear-gradient(135deg, #15b6ff, #ffb14a);
}

.faq-modern__item.is-active .faq-modern__question i::after { opacity: 0; }

.faq-modern__answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .35s ease, opacity .25s ease;
}

.faq-modern__answer-inner { padding: 0 24px 24px; }

.faq-modern__answer p {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: #bfd8e7;
}

.faq-modern__item.is-active .faq-modern__answer { opacity: 1; }

.footer-dark {
  position: relative;
  z-index: 1;
  padding: 10px 0 30px;
}

.footer-dark .container {
  border-radius: 34px;
  padding-top: 30px;
  padding-bottom: 24px;
  background: linear-gradient(180deg, rgba(8,22,34,.98), rgba(5,14,22,.96));
  border: 1px solid rgba(143,223,255,.12);
  box-shadow: 0 24px 50px rgba(0,0,0,.28);
}

.footer-dark__top {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
}

.footer-dark__brand p {
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.8;
  color: #b9d3e3;
}

.footer-dark__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
}

.footer-dark__col h3 {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  color: #fff;
}

.footer-dark__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-dark__col li + li { margin-top: 10px; }

.footer-dark__col a,
.footer-dark__col span,
.footer-dark__col p {
  font-size: 15px;
  line-height: 1.7;
  color: #bdd7e6;
}

.footer-dark__col a:hover { color: #fff; }

.footer-dark__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(143,223,255,.1);
}

.footer-dark__badges span {
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(143,223,255,.12);
  color: #d9f4ff;
  font-size: 13px;
  font-weight: 700;
}

.footer-dark__bottom {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(143,223,255,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-dark__bottom p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #89bad4;
}

.to-top {
  min-width: 74px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffb14a, #46ffd5);
  color: #04121b;
  font-size: 14px;
  font-weight: 900;
}

.game-embed {
  width: 100%;
  max-width: 100%;
  margin: 24px 0;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(143,223,255,.12);
  box-shadow:
    0 18px 40px rgba(0,0,0,.28),
    0 0 0 1px rgba(255,255,255,.03);
}

.game-embed iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 720px;
  border: 0;
  background: #08131b;
}

.content-main iframe { max-width: 100%; }

@media (max-width: 1180px) {
  .nav { gap: 20px; }
  .hero-plinko h1 { font-size: 52px; }
  .stats-strip__grid,
  .steps-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-dark__top { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .nav,
  .topbar__right .lang-box,
  .topbar__right .action-btn { display: none; }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .hero-plinko__grid,
  .content-layout { grid-template-columns: 1fr; }

  .hero-plinko h1 { font-size: 42px; }

  .visual-shell { min-height: auto; }

  .hero-plinko__mini,
  .footer-dark__nav { grid-template-columns: 1fr 1fr; }

  .footer-dark__col:last-child { grid-column: 1 / -1; }

  .game-embed iframe { height: 620px; }
}

@media (min-width: 981px) {
  .mobile-panel { display: none; }
}

@media (max-width: 640px) {
  .container { padding: 0 14px; }

  .topbar__wrap { min-height: 74px; }

  .brand__mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .brand__text { font-size: 16px; }

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

  .hero-plinko h1 { font-size: 34px; }

  .hero-plinko__text,
  .content-main p,
  .content-main li,
  .faq-modern__answer p {
    font-size: 16px;
    line-height: 1.72;
  }

  .section-heading h1,
  .section-heading h2 { font-size: 30px; }

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

  .hero-cta { width: 100%; }

  .hero-plinko__mini,
  .stats-strip__grid,
  .steps-grid,
  .footer-dark__nav { grid-template-columns: 1fr; }

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

  .floating-chip--a {
    right: 16px;
    top: 70px;
  }

  .floating-chip--b {
    left: 16px;
    bottom: 16px;
  }

  .content-main h3 { font-size: 22px; }

.content-main table {
  margin: 20px 0 24px;
  border-radius: 16px;
}

.content-main th,
.content-main td {
  min-width: 160px;
  padding: 14px;
  font-size: 15px;
}

  .faq-modern__question { padding: 18px 16px; }

  .faq-modern__question span { font-size: 17px; }

  .faq-modern__answer-inner { padding: 0 16px 18px; }

  .footer-dark .container {
    border-radius: 24px;
    padding-top: 22px;
    padding-bottom: 18px;
  }

  .footer-dark__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .game-embed {
    margin: 20px 0;
    border-radius: 16px;
  }

  .game-embed iframe { height: 540px; }

  .brand img {
    width: 150px;
    height: 40px;
  }

  .footer-dark__logo img {
    width: 165px;
    height: 44px;
  }
}

@media (max-width: 420px) {
  .game-embed iframe { height: 500px; }
}

.brand img {
  display: block;
  width: 180px;
  height: 48px;
  object-fit: contain;
}

.footer-dark__logo img {
  display: block;
  width: 195px;
  height: 52px;
  object-fit: contain;
}

.footer-dark__badges img {
  display: block;
  height: 34px;
  width: auto;
  object-fit: contain;
}

.footer-dark__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(143,223,255,.1);
  min-height: 58px;
}

.content-main img {
  width: 100%;
  height: auto;
  display: block;
}

.mobile-panel {
  max-height: 0;
  overflow: hidden;
  background: rgba(4, 13, 21, 0.98);
  transition: max-height .35s ease;
  border-top: 1px solid rgba(143,223,255,.12);
  will-change: max-height;
}

@media (max-width: 980px) {
  .visual-shell {
    height: auto;
    min-height: 470px;
  }
}