:root {
  --bg: #0b1220;
  --bg-elevated: #121a2b;
  --bg-soft: #182338;
  --blue: #218cf9;
  --blue-hot: #4aa3ff;
  --blue-deep: #0d5db8;
  --violet: #7b5cff;
  --text: #eef3fb;
  --muted: #9aabc4;
  --line: rgba(255, 255, 255, 0.08);
  --gold: #f5c542;
  --font-display: "Syne", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --radius: 16px;
  --max: 1120px;
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(1000px 520px at 85% -8%, rgba(33, 140, 249, 0.22), transparent 55%),
    radial-gradient(800px 480px at -5% 35%, rgba(123, 92, 255, 0.12), transparent 50%),
    linear-gradient(180deg, #08101c 0%, var(--bg) 45%, #0a1422 100%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0.9rem clamp(1rem, 3vw, 2.5rem);
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(11, 18, 32, 0.88);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.logo img {
  width: 42px;
  height: 42px;
}

.logo span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: #8ec7ff;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 1.2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, #3d6dff 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(33, 140, 249, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-hot) 0%, #5b84ff 100%);
}

.btn-outline {
  border-color: rgba(142, 199, 255, 0.35);
  color: #d7ebff;
  background: rgba(33, 140, 249, 0.08);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.btn-lg {
  padding: 0.95rem 1.55rem;
  font-size: 1.05rem;
  border-radius: 14px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 40;
}

.nav-mobile-cta {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 30%;
  transform: scale(1.04);
  animation: heroZoom 14s ease-in-out infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 16, 28, 0.35) 0%, rgba(8, 16, 28, 0.55) 45%, rgba(8, 16, 28, 0.96) 100%),
    linear-gradient(90deg, rgba(8, 16, 28, 0.75) 0%, rgba(8, 16, 28, 0.2) 55%, rgba(8, 16, 28, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 7.5rem 0 3.5rem;
  animation: riseIn 0.9s ease both;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #9fd0ff;
  text-shadow: 0 8px 40px rgba(33, 140, 249, 0.45);
}

.brand-mark img {
  width: clamp(52px, 8vw, 78px);
  height: clamp(52px, 8vw, 78px);
  filter: drop-shadow(0 8px 24px rgba(33, 140, 249, 0.45));
  animation: floaty 4.5s ease-in-out infinite;
}

.hero h1 {
  max-width: 14ch;
  font-size: clamp(1.7rem, 4.2vw, 2.8rem);
  margin-bottom: 0.85rem;
}

.hero-lead {
  max-width: 38ch;
  font-size: 1.08rem;
  color: #c5d4ea;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 4.5rem 0 1rem;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.35rem);
}

.pros {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.pro {
  padding: 1.35rem 1.25rem;
  border-top: 1px solid rgba(142, 199, 255, 0.28);
  background: linear-gradient(180deg, rgba(33, 140, 249, 0.08), transparent 70%);
  animation: riseIn 0.7s ease both;
}

.pro:nth-child(2) { animation-delay: 0.08s; }
.pro:nth-child(3) { animation-delay: 0.16s; }
.pro:nth-child(4) { animation-delay: 0.24s; }
.pro:nth-child(5) { animation-delay: 0.32s; }
.pro:nth-child(6) { animation-delay: 0.4s; }

.pro strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: #fff;
}

.pro p {
  margin: 0;
  font-size: 0.95rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--blue-hot);
  margin-bottom: 0.25rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.game {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  isolation: isolate;
  transition: transform 0.25s ease;
}

.game:hover {
  transform: translateY(-4px);
}

.game img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: var(--bg-soft);
}

.game-meta {
  position: absolute;
  inset: auto 0 0;
  padding: 1.8rem 0.8rem 0.75rem;
  background: linear-gradient(180deg, transparent, rgba(5, 10, 18, 0.92));
}

.game-meta strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.15rem;
}

.game-meta span {
  font-size: 0.8rem;
  color: #9fd0ff;
}

.pay-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.pay-table th,
.pay-table td {
  text-align: left;
  padding: 0.9rem 0.75rem;
  border-bottom: 1px solid var(--line);
}

.pay-table th {
  color: #cfe4ff;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

.pay-table td:first-child {
  color: var(--text);
  font-weight: 600;
}

.methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.4rem 0 0;
}

.chip {
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(142, 199, 255, 0.2);
  border-radius: 999px;
  color: #cfe4ff;
  font-size: 0.85rem;
  background: rgba(33, 140, 249, 0.06);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.split-visual {
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
}

.split-visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: contain;
}

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

.list li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.3rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(33, 140, 249, 0.15);
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
  list-style: none;
}

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

.faq details p {
  margin: 0.7rem 0 0;
}

.cta-band {
  margin: 4rem auto 0;
  width: min(var(--max), calc(100% - 2rem));
  padding: 2.4rem 1.6rem;
  border-radius: 20px;
  background:
    radial-gradient(500px 180px at 10% 0%, rgba(33, 140, 249, 0.35), transparent 60%),
    linear-gradient(135deg, #13233d 0%, #10192c 100%);
  border: 1px solid rgba(142, 199, 255, 0.16);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.cta-band h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.cta-band p {
  margin: 0;
  max-width: 40ch;
}

.footer {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 3rem 0 2.5rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.2rem;
}

.footer a {
  color: #cfe4ff;
}

.age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid #cfe4ff;
  border-radius: 8px;
  font-weight: 800;
  color: #cfe4ff;
}

@keyframes heroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 960px) {
  .pros,
  .games-grid,
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 760px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 86vw);
    height: 100svh;
    background: #0e1728;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 5rem 1.25rem 1.5rem;
    transform: translateX(105%);
    transition: transform 0.28s ease;
    z-index: 45;
    border-left: 1px solid var(--line);
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-mobile-cta {
    display: grid;
    gap: 0.65rem;
    margin-top: 1.2rem;
  }

  .header-actions .btn-outline,
  .header-actions .btn-primary {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-content {
    padding-top: 6.5rem;
  }

  .pros,
  .games-grid,
  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .pay-table {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 520px) {
  .pros,
  .games-grid,
  .stats {
    grid-template-columns: 1fr;
  }
}



.section-tournaments {
  padding-top: 2.5rem;
}

.tour-banners {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.tour-banner {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
  background: #0e1728;
  aspect-ratio: 1340 / 400;
  max-height: none;
  transition: transform 0.25s ease;
}

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

.tour-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.tour-banner-shade {
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background: linear-gradient(180deg, transparent, rgba(5, 10, 18, 0.88));
  pointer-events: none;
}

.tour-banner-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem 1rem;
}

.tour-banner-caption h3 {
  margin: 0;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}

.tour-banner-caption .tour-label {
  margin: 0 0 0.2rem;
  color: #cfe4ff;
}

.tour-timer {
  display: grid;
  grid-template-columns: repeat(4, minmax(52px, 1fr));
  gap: 0.35rem;
  min-width: min(100%, 280px);
  padding: 0.45rem 0.4rem;
  border-radius: 12px;
  background: rgba(6, 12, 22, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.tour-timer-unit {
  text-align: center;
}

.tour-timer-unit b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  color: #fff;
  line-height: 1.1;
}

.tour-timer-unit span {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9fd0ff;
}

.tour-prizes-strip {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
}

.tour-prizes-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
}

.tour-prizes-inline li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.92rem;
  border: 0;
  padding: 0;
}

.tour-prizes-inline li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: rgba(33, 140, 249, 0.18);
  color: #9fd0ff;
  font-size: 0.75rem;
  font-weight: 700;
}

.tour-prizes-inline b {
  color: #fff;
  font-family: var(--font-display);
}

.tour-label {
  margin: 0 0 0.35rem;
  color: #8ec7ff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .tour-banner {
    aspect-ratio: 16 / 9;
  }

  .tour-banner-caption {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .tour-timer {
    width: 100%;
    min-width: 0;
  }
}

.seo-note {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 70ch;
}

.pay-table caption {
  caption-side: top;
  text-align: left;
  padding: 0 0 0.75rem;
  color: #cfe4ff;
  font-weight: 700;
  font-size: 0.9rem;
}
