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

    body {
      background: #0a0a0f;
      color: #e0e0e0;
      font-family: 'Segoe UI', Arial, sans-serif;
    }

    /* ── HEADER ── */
    .site-header {
      background: linear-gradient(135deg, #0d0d1a 0%, #1a0d2e 100%);
      border-bottom: 3px solid #7c3aed;
      padding: 28px 16px 22px;
      text-align: center;
    }

    .logo {
      font-size: clamp(1.6rem, 4vw, 2.8rem);
      font-weight: 900;
      background: linear-gradient(135deg, #a78bfa, #7c3aed, #4f46e5);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: 2px;
    }

    .tagline {
      color: #a78bfa;
      font-size: 0.85rem;
      margin-top: 8px;
      letter-spacing: 3px;
      text-transform: uppercase;
      opacity: 0.8;
    }

    .trust-badges {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 16px;
    }

    .badge {
      background: rgba(124, 58, 237, 0.15);
      border: 1px solid rgba(124, 58, 237, 0.4);
      border-radius: 20px;
      padding: 4px 14px;
      font-size: 0.75rem;
      color: #c4b5fd;
    }

    /* ── NAV BUTTONS (Tier-1 keywords) ── */
    .nav-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      padding: 14px 12px;
      background: #080810;
      border-bottom: 1px solid #1e1a30;
      justify-content: center;
    }

    .nav-btn {
      background: linear-gradient(135deg, #7c3aed, #4f46e5);
      color: #fff;
      font-size: 0.72rem;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 20px;
      text-decoration: none;
      white-space: nowrap;
      transition: all 0.2s;
      border: 1px solid rgba(167, 139, 250, 0.3);
    }

    .nav-btn:hover {
      background: linear-gradient(135deg, #9861f5, #6366f1);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
      color: #fff;
      text-decoration: none;
    }

    /* ── HERO H1 ── */
    .hero-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 30px 16px 10px;
    }

    .hero-section h1 {
      font-size: clamp(1.2rem, 2.5vw, 1.8rem);
      font-weight: 800;
      color: #fff;
      margin-bottom: 10px;
    }

    .hero-section h1 span {
      color: #a78bfa;
    }

    .hero-desc {
      font-size: 0.9rem;
      color: #9ca3af;
      line-height: 1.8;
      max-width: 800px;
    }

    .hero-desc a {
      color: #a78bfa;
      text-decoration: none;
    }

    /* ── SECTION HEADING ── */
    .section-head {
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      padding: 24px 16px 12px;
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .section-head::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, rgba(124, 58, 237, 0.5), transparent);
    }

    /* ── GAME GRID ── */
    .game-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 14px;
      padding: 0 12px 24px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .game-card {
      background: #0f0f1a;
      border: 1px solid #1e1a30;
      border-radius: 10px;
      overflow: hidden;
      text-decoration: none;
      display: block;
      transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    }

    .game-card:hover {
      border-color: #7c3aed;
      transform: translateY(-4px);
      box-shadow: 0 8px 20px rgba(124, 58, 237, 0.25);
      text-decoration: none;
    }

    .game-card img {
      width: 100%;
      height: 140px;
      object-fit: cover;
      display: block;
    }

    .card-info {
      padding: 10px 12px;
    }

    .card-title {
      font-size: 0.82rem;
      font-weight: 600;
      color: #e0e0e0;
      margin-bottom: 6px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .game-card:hover .card-title {
      color: #a78bfa;
    }

    .play-tag {
      display: inline-block;
      background: rgba(124, 58, 237, 0.2);
      color: #a78bfa;
      font-size: 0.65rem;
      padding: 2px 8px;
      border-radius: 10px;
      border: 1px solid rgba(124, 58, 237, 0.3);
    }

    /* ── TOPLIST ── */
    .toplist-section {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 12px 30px;
    }

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

    .top-table tr {
      border-bottom: 1px solid #1e1a30;
      transition: background 0.15s;
    }

    .top-table tr:hover {
      background: rgba(124, 58, 237, 0.06);
    }

    .top-table td {
      padding: 10px 12px;
      vertical-align: middle;
    }

    .top-rank {
      font-size: 0.75rem;
      font-weight: 700;
      color: #7c3aed;
      width: 40px;
      text-align: center;
    }

    .top-rank.gold {
      color: #f59e0b;
    }

    .top-rank.silver {
      color: #94a3b8;
    }

    .top-rank.bronze {
      color: #b45309;
    }

    .top-img img {
      width: 60px;
      height: 45px;
      object-fit: cover;
      border-radius: 4px;
      border: 1px solid #2a2040;
    }

    .top-title a {
      color: #c4b5fd;
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 600;
    }

    .top-title a:hover {
      color: #fff;
    }

    .top-desc {
      font-size: 0.72rem;
      color: #6b7280;
      margin-top: 2px;
    }

    .play-small {
      display: inline-block;
      background: linear-gradient(135deg, #7c3aed, #4f46e5);
      color: #fff;
      font-size: 0.65rem;
      padding: 4px 12px;
      border-radius: 20px;
      text-decoration: none;
      white-space: nowrap;
    }

    .play-small:hover {
      background: #9861f5;
      color: #fff;
      text-decoration: none;
    }

    /* ── KEYWORD CLOUD (footer) ── */
    .keyword-cloud {
      background: #080810;
      border-top: 1px solid #1e1a30;
      padding: 22px 16px;
    }

    .keyword-cloud h3 {
      font-size: 0.8rem;
      color: #6b7280;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 12px;
      text-align: center;
    }

    .kw-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      justify-content: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .kw-item a {
      display: block;
      background: #0f0f1a;
      border: 1px solid #1e1a30;
      color: #6b7280;
      font-size: 0.74rem;
      padding: 4px 12px;
      border-radius: 4px;
      text-decoration: none;
      transition: all 0.15s;
    }

    .kw-item a:hover {
      color: #a78bfa;
      border-color: #7c3aed;
      background: #120d20;
    }

    /* ── FOOTER ── */
    footer {
      text-align: center;
      padding: 20px;
      background: #050508;
      border-top: 1px solid #0f0f1a;
      font-size: 0.72rem;
      color: #374151;
    }

    footer a {
      color: #7c3aed;
      text-decoration: none;
    }

    @media(max-width:600px) {
      .game-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
      }

      .top-desc {
        display: none;
      }
    }