:root {
      --bg: #0a0f1d;
      --bg-2: #0e1729;
      --panel: rgba(19, 30, 52, 0.82);
      --panel-2: rgba(24, 39, 67, 0.92);
      --line: rgba(148, 163, 184, 0.18);
      --text: #edf5ff;
      --muted: #91a3bb;
      --soft: #c7d7ea;
      --blue: #67e8f9;
      --blue-2: #38bdf8;
      --purple: #a78bfa;
      --green: #6ee7b7;
      --gold: #f6d365;
      --orange: #fb923c;
      --red: #fb7185;
      --radius: 22px;
      --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
      --max: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 12% -10%, rgba(56, 189, 248, 0.28), transparent 32%),
        radial-gradient(circle at 85% 5%, rgba(167, 139, 250, 0.20), transparent 30%),
        radial-gradient(circle at 50% 120%, rgba(16, 185, 129, 0.12), transparent 35%),
        var(--bg);
      min-height: 100vh;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: linear-gradient(to bottom, black, transparent 75%);
    }

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

    button,
    input,
    select {
      font: inherit;
    }

    .wrap {
      width: min(var(--max), calc(100% - 36px));
      margin-inline: auto;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(18px);
      background: rgba(10, 15, 29, 0.72);
      border-bottom: 1px solid var(--line);
    }

    .nav {
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      letter-spacing: -0.04em;
      font-size: 1.25rem;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      color: #04111c;
      font-weight: 900;
      background: linear-gradient(135deg, var(--blue), var(--purple));
      box-shadow: 0 0 36px rgba(103, 232, 249, 0.35);
    }

    .navlinks {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--soft);
      font-weight: 700;
      font-size: 0.94rem;
    }

    .navlinks a {
      padding: 10px 12px;
      border-radius: 999px;
      transition: 0.2s ease;
    }

    .navlinks a:hover {
      background: rgba(255, 255, 255, 0.07);
      color: var(--text);
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .btn {
      border: 0;
      border-radius: 999px;
      padding: 12px 17px;
      font-weight: 900;
      cursor: pointer;
      transition: 0.2s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--blue), var(--purple));
      color: #06111e;
      box-shadow: 0 16px 32px rgba(56, 189, 248, 0.22);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 42px rgba(56, 189, 248, 0.32);
    }

    .btn-ghost {
      background: rgba(255, 255, 255, 0.06);
      color: var(--text);
      border: 1px solid var(--line);
    }

    .hero {
      padding: 82px 0 44px;
      position: relative;
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.02fr 0.98fr;
      gap: 36px;
      align-items: center;
    }

    .eyebrow {
      width: fit-content;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      color: #dffcff;
      border: 1px solid rgba(103, 232, 249, 0.26);
      background: rgba(103, 232, 249, 0.08);
      border-radius: 999px;
      font-weight: 900;
      font-size: 0.82rem;
      margin-bottom: 20px;
    }

    .pulse {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--green);
      box-shadow: 0 0 20px var(--green);
    }

    h1 {
      margin: 0;
      font-size: clamp(2.5rem, 7vw, 5.8rem);
      line-height: 0.92;
      letter-spacing: -0.075em;
      max-width: 850px;
    }

    .gradient-text {
      display: inline-block;
      background: linear-gradient(135deg, #ffffff, var(--blue), var(--purple));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .lead {
      margin: 22px 0 0;
      color: var(--soft);
      font-size: clamp(1rem, 1.65vw, 1.18rem);
      line-height: 1.75;
      max-width: 700px;
    }

    .search-panel {
      margin-top: 30px;
      padding: 9px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 8px;
      border: 1px solid rgba(148, 163, 184, 0.20);
      background: rgba(15, 23, 42, 0.82);
      border-radius: 999px;
      box-shadow: var(--shadow);
    }

    .search-panel input {
      min-width: 0;
      border: 0;
      outline: 0;
      color: var(--text);
      background: transparent;
      padding: 0 18px;
      font-weight: 700;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 24px;
    }

    .stat {
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.045);
      border-radius: 18px;
      padding: 16px;
    }

    .stat strong {
      display: block;
      font-size: 1.35rem;
      letter-spacing: -0.04em;
    }

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

    .mockup {
      position: relative;
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(24, 39, 67, 0.82), rgba(10, 15, 29, 0.95));
      border-radius: 34px;
      box-shadow: var(--shadow);
      padding: 18px;
      overflow: hidden;
    }

    .mockup::before {
      content: "";
      position: absolute;
      width: 280px;
      height: 280px;
      right: -80px;
      top: -90px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(103, 232, 249, 0.22), transparent 66%);
    }

    .mini-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 14px;
      position: relative;
    }

    .dots {
      display: flex;
      gap: 7px;
    }

    .dots i {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.20);
    }

    .mini-title {
      color: var(--muted);
      font-weight: 900;
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .rating-tile {
      position: relative;
      display: grid;
      grid-template-columns: 92px 1fr;
      gap: 16px;
      padding: 16px;
      border: 1px solid rgba(255, 255, 255, 0.10);
      background: rgba(255, 255, 255, 0.055);
      border-radius: 24px;
      margin-bottom: 12px;
    }

    .cover {
      min-height: 118px;
      border-radius: 18px;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02)),
        radial-gradient(circle at 30% 20%, rgba(103, 232, 249, 0.58), transparent 32%),
        radial-gradient(circle at 70% 80%, rgba(167, 139, 250, 0.70), transparent 38%),
        #111827;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    }

    .rating-tile h3 {
      margin: 0 0 7px;
      font-size: 1.08rem;
      letter-spacing: -0.03em;
    }

    .tile-meta {
      color: var(--muted);
      font-size: 0.86rem;
      font-weight: 700;
      line-height: 1.5;
    }

    .badge-row {
      margin-top: 12px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .badge {
      border-radius: 999px;
      padding: 7px 10px;
      font-weight: 900;
      font-size: 0.72rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .platinum { background: rgba(103, 232, 249, 0.15); color: #bff8ff; }
    .gold { background: rgba(246, 211, 101, 0.14); color: #ffe79a; }
    .silver { background: rgba(203, 213, 225, 0.13); color: #e2e8f0; }
    .bronze { background: rgba(251, 146, 60, 0.14); color: #fed7aa; }
    .native { background: rgba(110, 231, 183, 0.14); color: #bbf7d0; }

    .section {
      padding: 48px 0;
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 24px;
      margin-bottom: 22px;
    }

    .section-head h2 {
      margin: 0;
      font-size: clamp(1.8rem, 4vw, 3.1rem);
      letter-spacing: -0.06em;
    }

    .section-head p {
      margin: 10px 0 0;
      color: var(--muted);
      line-height: 1.65;
      max-width: 680px;
      font-weight: 600;
    }

    .filters {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .chip {
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.05);
      color: var(--soft);
      border-radius: 999px;
      padding: 10px 13px;
      cursor: pointer;
      font-weight: 900;
      transition: 0.2s ease;
    }

    .chip.active,
    .chip:hover {
      background: rgba(103, 232, 249, 0.12);
      border-color: rgba(103, 232, 249, 0.35);
      color: var(--text);
    }

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

    .game-card {
      position: relative;
      border: 1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(19, 30, 52, 0.78), rgba(19, 30, 52, 0.96)),
        var(--card-bg, var(--panel));
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 12px 42px rgba(0, 0, 0, 0.22);
      transition: 0.22s ease;
    }

    .game-card::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.12), transparent 46%),
        linear-gradient(to bottom, rgba(10, 15, 29, 0.08), rgba(10, 15, 29, 0.58));
      z-index: 0;
    }

    .game-card > * {
      position: relative;
      z-index: 1;
    }

    .game-card:hover {
      transform: translateY(-5px);
      border-color: rgba(103, 232, 249, 0.35);
      box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
    }

    .poster {
      aspect-ratio: 16 / 10;
      position: relative;
      background:
        linear-gradient(to top, rgba(10, 15, 29, 0.50), rgba(10, 15, 29, 0.04)),
        var(--poster-img, var(--art, linear-gradient(135deg, #1e293b, #0f172a)));
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      overflow: hidden;
    }

    .poster::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to top, rgba(10, 15, 29, 0.72), transparent 56%),
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.18), transparent 48%);
    }

    .rank {
      position: absolute;
      left: 12px;
      bottom: 12px;
      z-index: 2;
    }

    .card-body {
      padding: 15px;
    }

    .game-card h3 {
      margin: 0;
      font-size: 1.02rem;
      letter-spacing: -0.035em;
    }

    .game-card p {
      margin: 7px 0 0;
      color: var(--muted);
      font-size: 0.86rem;
      line-height: 1.5;
      font-weight: 600;
    }

    .card-foot {
      margin-top: 13px;
      padding-top: 13px;
      border-top: 1px solid var(--line);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      color: var(--muted);
      font-weight: 900;
      font-size: 0.78rem;
    }

    .layout-2 {
      display: grid;
      grid-template-columns: 0.88fr 1.12fr;
      gap: 18px;
      align-items: stretch;
    }

    .panel {
      border: 1px solid var(--line);
      background: var(--panel);
      border-radius: 28px;
      padding: 22px;
      box-shadow: var(--shadow);
    }

    .panel h3 {
      margin: 0 0 12px;
      font-size: 1.35rem;
      letter-spacing: -0.04em;
    }

    .progress-list {
      display: grid;
      gap: 14px;
      margin-top: 18px;
    }

    .progress-item {
      display: grid;
      gap: 8px;
    }

    .progress-label {
      display: flex;
      justify-content: space-between;
      color: var(--soft);
      font-weight: 900;
      font-size: 0.88rem;
    }

    .bar {
      height: 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      overflow: hidden;
    }

    .bar span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--blue), var(--purple));
      width: var(--w);
    }

    .reports {
      display: grid;
      gap: 12px;
    }

    .report {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 14px;
      align-items: start;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.045);
      border-radius: 20px;
      padding: 14px;
    }

    .avatar {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      font-weight: 900;
      color: #07111f;
      background: linear-gradient(135deg, var(--green), var(--blue));
    }

    .report strong {
      display: block;
      margin-bottom: 5px;
      letter-spacing: -0.02em;
    }

    .report p {
      margin: 0;
      color: var(--muted);
      line-height: 1.55;
      font-size: 0.92rem;
      font-weight: 600;
    }

    .report small {
      color: var(--muted);
      font-weight: 900;
      white-space: nowrap;
    }

    .cta {
      margin: 52px 0 76px;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(103, 232, 249, 0.22);
      border-radius: 34px;
      background:
        radial-gradient(circle at 15% 30%, rgba(103, 232, 249, 0.22), transparent 32%),
        radial-gradient(circle at 90% 70%, rgba(167, 139, 250, 0.24), transparent 32%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(17, 24, 39, 0.88));
      padding: 42px;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 22px;
      box-shadow: var(--shadow);
    }

    .cta h2 {
      margin: 0;
      font-size: clamp(1.9rem, 4vw, 3.5rem);
      letter-spacing: -0.06em;
      line-height: 1;
    }

    .cta p {
      margin: 12px 0 0;
      color: var(--soft);
      line-height: 1.7;
      max-width: 680px;
      font-weight: 600;
    }

    footer {
      border-top: 1px solid var(--line);
      padding: 28px 0;
      color: var(--muted);
      font-weight: 700;
    }

    .footer-grid {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .footer-links {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    @media (max-width: 980px) {
      .hero-grid,
      .layout-2,
      .cta {
        grid-template-columns: 1fr;
      }

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

      .navlinks {
        display: none;
      }
    }

    @media (max-width: 640px) {
      .wrap {
        width: min(100% - 24px, var(--max));
      }

      .nav {
        height: auto;
        padding: 12px 0;
      }

      .brand span {
        display: none;
      }

      .hero {
        padding-top: 46px;
      }

      .search-panel {
        border-radius: 24px;
        grid-template-columns: 1fr;
      }

      .search-panel input {
        height: 46px;
      }

      .hero-stats,
      .catalog {
        grid-template-columns: 1fr;
      }

      .section-head {
        align-items: start;
        flex-direction: column;
      }

      .filters {
        justify-content: flex-start;
      }

      .rating-tile,
      .report {
        grid-template-columns: 1fr;
      }

      .report small {
        white-space: normal;
      }

      .cta {
        padding: 26px;
      }
    }
    .slideshow {
  position: relative;
  overflow: hidden;
}

.slide {
  display: none;
  animation: slideFade 0.45s ease;
}

.slide.active {
  display: block;
}

@keyframes slideFade {
  from {
    opacity: 0;
    transform: translateX(14px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
}

.slider-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 900;
  cursor: pointer;
}

.slider-btn:hover {
  background: rgba(103, 232, 249, 0.14);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
}

.slider-dot.active {
  width: 24px;
  background: var(--blue);
}

.cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.dots.slider-top-dots {
  display: flex;
  gap: 7px;
}

.top-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
  padding: 0;
  transition: 0.25s ease;
}

.top-dot.active {
  width: 26px;
  background: var(--blue);
  box-shadow: 0 0 18px rgba(103, 232, 249, 0.45);
}

.top-dot:hover {
  background: rgba(103, 232, 249, 0.75);
}

.slideshow {
  position: relative;
  overflow: hidden;
}

.slide {
  display: none;
  animation: slideFade 0.45s ease;
}

.slide.active {
  display: block;
}

@keyframes slideFade {
  from {
    opacity: 0;
    transform: translateX(14px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 36px rgba(103, 232, 249, 0.25);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}