/* Base */
:root {
  --bg: #06152a;
  --bg-soft: #0a1f3f;
  --panel: #102b52;
  --panel-strong: #143a70;
  --line: rgba(101, 166, 255, 0.34);
  --text: #f5f8ff;
  --muted: #a9b8cf;
  --blue: #1c74ff;
  --cyan: #35d2ff;
  --gold: #f5b942;
  --green: #21c47b;
  --red: #f05a63;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--bg);
}

body.menu-open {
  overflow: hidden;
}

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

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

p {
  margin: 0 0 18px;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.15;
}

h1 {
  font-size: clamp(34px, 5vw, 62px);
}

h2 {
  font-size: clamp(26px, 3vw, 40px);
}

h3 {
  font-size: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 16px;
  text-align: left;
  vertical-align: top;
}

th {
  color: #ffffff;
  background: #1d6fe8;
}

td {
  border-bottom: 1px solid rgba(124, 174, 255, 0.2);
}

td a {
  color: #ffffff;
  font-weight: 700;
  border-bottom: 1px solid var(--cyan);
}

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

.section-dark,
.section-panel {
  padding: 82px 0;
}

.section-dark {
  background: linear-gradient(180deg, #07172e 0%, #0a2143 100%);
}

.section-panel {
  background: #0c2344;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.align-left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  color: #ffffff;
  font-weight: 800;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #1c74ff 0%, #23c1ff 100%);
  box-shadow: 0 12px 34px rgba(28, 116, 255, 0.32);
}

.button-secondary {
  border-color: rgba(92, 174, 255, 0.7);
  background: rgba(17, 49, 92, 0.78);
}

.center-action {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 42px;
  align-items: center;
}

.three-column {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(89, 151, 255, 0.28);
  background: rgba(7, 20, 39, 0.96);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 150px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 8px;
}

.top-nav a {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
}

.top-nav a:hover,
.top-nav a[aria-current="page"] {
  color: #ffffff;
  background: rgba(37, 118, 255, 0.16);
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  background: #1c74ff;
  border-radius: 8px;
}

/* Hero */
.hero {
  padding-top: 76px;
  overflow: hidden;
}

.hero-lead {
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

/* Game Wall */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
}

.filter-row span {
  padding: 8px 14px;
  color: #d7e7ff;
  font-size: 13px;
  font-weight: 800;
  background: #081a34;
  border: 1px solid rgba(90, 153, 255, 0.3);
  border-radius: 8px;
}

/* Feature Cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.review-card,
.mirror-card,
.bonus-highlight,
.support-panel {
  padding: 22px;
  background: rgba(15, 42, 80, 0.82);
  border: 1px solid rgba(111, 176, 255, 0.28);
  border-radius: 8px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  color: #071426;
  font-weight: 900;
  background: var(--gold);
  border-radius: 8px;
}

.feature-card p,
.review-card p,
.mirror-card p {
  color: var(--muted);
}

/* Guide */
.guide-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: start;
}

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

.steps-list li {
  position: relative;
  min-height: 82px;
  padding: 18px 18px 18px 72px;
  color: var(--muted);
  background: rgba(8, 26, 52, 0.8);
  border: 1px solid rgba(101, 166, 255, 0.3);
  border-radius: 8px;
  counter-increment: step;
}

.steps-list li::before {
  content: counter(step);
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #ffffff;
  font-weight: 900;
  background: #1c74ff;
  border-radius: 8px;
}

.steps-list strong {
  display: block;
  color: #ffffff;
}

/* Information Blocks */
.info-list {
  display: grid;
  gap: 12px;
}

.info-list div {
  padding: 18px;
  background: rgba(7, 22, 43, 0.75);
  border-left: 3px solid var(--cyan);
  border-radius: 8px;
}

.info-list strong,
.info-list span {
  display: block;
}

.info-list span {
  color: var(--muted);
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(106, 171, 255, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.bonus-table {
  min-width: 760px;
  background: rgba(9, 27, 53, 0.88);
}

/* Payments */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.payment-grid span {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 16px;
  color: #ffffff;
  font-weight: 900;
  background: #0c2b55;
  border: 1px solid rgba(90, 153, 255, 0.34);
  border-radius: 8px;
}

/* Mobile Access */
.phone-panel {
  width: min(310px, 100%);
  margin: 0 auto;
  padding: 14px;
  background: #071426;
  border: 1px solid rgba(119, 188, 255, 0.42);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.phone-top {
  display: block;
  width: 80px;
  height: 6px;
  margin: 0 auto 14px;
  background: rgba(255, 255, 255, 0.24);
  border-radius: 6px;
}

.phone-screen {
  display: grid;
  gap: 12px;
  padding: 22px;
  min-height: 360px;
  background:
    linear-gradient(180deg, rgba(28, 116, 255, 0.32), rgba(7, 20, 38, 0.9)),
    #092141;
  border-radius: 8px;
}

.phone-screen strong {
  font-size: 26px;
}

.phone-screen span {
  padding: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.phone-screen a {
  align-self: end;
  display: flex;
  justify-content: center;
  padding: 12px;
  font-weight: 900;
  background: var(--gold);
  border-radius: 8px;
  color: #06152a;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
  background: rgba(8, 27, 54, 0.86);
  border: 1px solid rgba(106, 171, 255, 0.28);
  border-radius: 8px;
}

.faq-list summary {
  cursor: pointer;
  color: #ffffff;
  font-weight: 900;
}

.faq-list p {
  margin-top: 12px;
  color: var(--muted);
}

/* Reviews */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card strong {
  display: block;
  margin-bottom: 10px;
}

/* Sub Pages */
.sub-hero {
  padding-top: 72px;
}

.sub-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.44fr);
  gap: 34px;
  align-items: center;
}

.bonus-highlight,
.support-panel {
  display: grid;
  place-items: center;
  min-height: 260px;
  text-align: center;
}

.bonus-highlight span,
.support-panel span {
  color: var(--muted);
  font-weight: 800;
}

.bonus-highlight strong,
.support-panel strong {
  color: var(--gold);
  font-size: 70px;
  line-height: 1;
}

/* Final CTA */
.final-box {
  max-width: 800px;
  padding: 34px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(28, 116, 255, 0.26), rgba(33, 196, 123, 0.16)),
    rgba(8, 28, 55, 0.86);
  border: 1px solid rgba(106, 171, 255, 0.32);
  border-radius: 8px;
}

/* Footer */
.site-footer {
  padding: 44px 0 86px;
  background: #061122;
  border-top: 1px solid rgba(101, 166, 255, 0.28);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 34px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-grid p,
.footer-bottom {
  color: var(--muted);
}

.footer-nav {
  display: grid;
  gap: 10px;
}

.footer-nav a {
  color: #dbe8ff;
  font-weight: 800;
}

.footer-cta {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(101, 166, 255, 0.18);
  font-size: 14px;
}

/* Mobile CTA */
.mobile-cta-bar {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 30;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  background: rgba(4, 14, 29, 0.92);
  border: 1px solid rgba(106, 171, 255, 0.32);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.mobile-cta-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  color: #ffffff;
  font-weight: 900;
  background: #1c74ff;
  border-radius: 8px;
}

.mobile-cta-bar a:last-child {
  background: #0e335f;
}

/* Redirect Pages */
.redirect-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(10, 31, 63, 0.94), rgba(4, 13, 28, 0.98)),
    #06152a;
}

.redirect-box {
  width: min(420px, calc(100% - 32px));
  padding: 34px;
  text-align: center;
  background: rgba(10, 34, 68, 0.88);
  border: 1px solid rgba(107, 178, 255, 0.36);
  border-radius: 8px;
}

.redirect-box h1 {
  font-size: 28px;
}

.redirect-box p {
  margin-bottom: 0;
  color: var(--muted);
}

.loader {
  display: inline-block;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border: 4px solid rgba(255, 255, 255, 0.18);
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: spin 850ms linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 980px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .top-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .guide-grid,
  .two-column,
  .sub-hero-grid {
    grid-template-columns: 1fr;
  }

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

  .three-column,
  .review-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .section-dark,
  .section-panel {
    padding: 58px 0;
  }

  .hero {
    padding-top: 54px;
  }

  .header-action {
    min-height: 38px;
    padding: 0 12px;
  }

  .feature-grid,
  .payment-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .footer-cta,
  .footer-bottom {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .mobile-cta-bar {
    display: grid;
  }
}

/* Mirror Entry Layout */
.brand {
  min-width: 0;
}

.brand-logo {
  width: 158px;
  height: auto;
}

.footer-brand .brand-logo {
  width: 174px;
}

.site-header {
  background: #132747;
  border-bottom-color: #246fe0;
}

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

.header-action {
  min-height: 36px;
  padding: 0 15px;
  font-size: 12px;
  border-radius: 4px;
}

.button {
  min-height: 38px;
  padding: 0 18px;
  font-size: 13px;
  border-radius: 4px;
}

.section-dark,
.section-panel {
  background: #0b1f3d;
}

.hero {
  padding: 28px 0 14px;
}

.hero-shell {
  max-width: 1040px;
  text-align: center;
}

.hero h1 {
  margin-bottom: 14px;
  font-size: clamp(24px, 3vw, 34px);
}

.hero-lead {
  max-width: 1020px;
  margin: 0 auto;
  color: #d2def1;
  font-size: 14px;
}

.hero-actions {
  justify-content: center;
  margin: 18px 0 0;
}

.game-wall {
  padding: 14px 0 28px;
}

.game-wall .section-heading {
  max-width: 960px;
  margin-bottom: 16px;
}

.game-wall .section-heading h2 {
  font-size: clamp(22px, 2.4vw, 30px);
}

.game-wall .section-heading p {
  color: #c7d5ea;
  font-size: 14px;
}

.game-browser {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 16px;
  background: #050a12;
  border: 2px solid #1b7cff;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.games-image-link {
  display: block;
  overflow-x: auto;
  border-radius: 8px;
}

.games-wall-image {
  width: 100%;
  min-width: 0;
  height: auto;
  border-radius: 8px;
}

.filter-row {
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 14px;
}

.filter-row span {
  padding: 6px 10px;
  color: #dbe8ff;
  font-size: 11px;
  background: #111723;
  border-color: rgba(125, 162, 211, 0.18);
  border-radius: 999px;
}

.advantages,
.guide,
.games-info,
.bonus,
.payments,
.mobile-access,
.mirror,
.faq,
.reviews,
.final-cta {
  padding: 14px 0;
}

.advantages .container,
.guide .container,
.games-info .container,
.bonus .container,
.payments .container,
.mobile-access .container,
.mirror .container,
.faq .container,
.reviews .container {
  padding: 22px;
  background: #10294d;
  border: 1px solid #2464bd;
  border-radius: 8px;
}

.advantages .section-heading,
.guide .section-heading,
.games-info .section-heading,
.bonus .section-heading,
.payments .section-heading,
.mobile-access .section-heading,
.mirror .section-heading,
.faq .section-heading,
.reviews .section-heading {
  max-width: none;
  margin: 0 0 18px;
  text-align: left;
}

.advantages h2,
.guide h2,
.games-info h2,
.bonus h2,
.payments h2,
.mobile-access h2,
.mirror h2,
.faq h2,
.reviews h2,
.final-cta h2 {
  font-size: clamp(22px, 2.3vw, 30px);
}

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

.advantages .feature-card,
.reviews .review-card,
.mirror .mirror-card {
  background: #0c2344;
  border-color: rgba(81, 139, 218, 0.45);
  box-shadow: none;
}

.guide-grid,
.games-info .two-column,
.payments .two-column,
.mobile-access .two-column,
.mirror .two-column {
  grid-template-columns: 1fr;
  gap: 18px;
}

.steps-list {
  gap: 10px;
}

.steps-list li {
  min-height: 0;
  padding: 14px 16px 14px 62px;
}

.steps-list li::before {
  top: 14px;
  left: 16px;
}

.info-list {
  gap: 8px;
}

.info-list div {
  padding: 13px 16px;
  background: #0c2344;
  border-left-color: #1b7cff;
}

.payment-grid {
  grid-template-columns: 1fr;
}

.payment-grid span {
  min-height: 52px;
  background: #0c2344;
}

.mobile-access .phone-panel {
  display: none;
}

.final-cta .final-box {
  max-width: min(960px, calc(100% - 32px));
  padding: 28px;
  background: #10294d;
  border-color: #2464bd;
}

.site-footer {
  margin-top: 18px;
  background: #0b1b34;
}

@media (max-width: 980px) {
  .brand-logo {
    width: 144px;
  }

  .games-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .advantages .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .brand-logo {
    width: 132px;
  }

  .hero {
    padding-top: 24px;
  }

  .game-browser {
    padding: 12px;
  }

  .games-wall-image {
    width: 760px;
    max-width: none;
  }

  .advantages .container,
  .guide .container,
  .games-info .container,
  .bonus .container,
  .payments .container,
  .mobile-access .container,
  .mirror .container,
  .faq .container,
  .reviews .container {
    padding: 18px;
  }
}
