    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --pink: #ff2d78;
      --blue: #00e5ff;
      --purple: #b44fff;
      --bg: #08080f;
      --card: #0f0f1e;
      --border: #1e1e3a;
    }
    html { scroll-behavior: smooth; }
    body {
      background-color: var(--bg);
      font-family: 'Inter', sans-serif;
      color: #e0e0f0;
      overflow-x: hidden;
      min-width: 320px;
    }
    .orbitron { font-family: 'Orbitron', monospace; }
    .gradient-text {
      background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 50%, var(--blue) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .neon-pink  { color: var(--pink);   text-shadow: 0 0 12px rgba(255,45,120,.7); }
    .neon-blue  { color: var(--blue);   text-shadow: 0 0 12px rgba(0,229,255,.7); }
    .neon-purple{ color: var(--purple); text-shadow: 0 0 12px rgba(180,79,255,.7); }
    .wrap {
      width: 100%;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 16px;
      padding-right: 16px;
    }
    @media (min-width: 640px)  { .wrap { padding-left: 24px; padding-right: 24px; } }
    @media (min-width: 1024px) { .wrap { padding-left: 40px; padding-right: 40px; } }
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background:
        radial-gradient(ellipse at 20% 40%, rgba(180,79,255,.13) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 10%, rgba(255,45,120,.11) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 90%, rgba(0,229,255,.09) 0%, transparent 50%);
      pointer-events: none;
      z-index: 0;
    }
    body > * { position: relative; z-index: 1; }
    .grid-lines {
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(rgba(0,229,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,229,255,.03) 1px, transparent 1px);
      background-size: 48px 48px;
      pointer-events: none;
      z-index: 0;
    }
    #hdr {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      backdrop-filter: blur(20px);
      background: rgba(8,8,15,.88);
      border-bottom: 1px solid rgba(255,45,120,.15);
    }
    #hdr .inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 12px;
      padding-bottom: 12px;
    }
    .logo-wrap { display: flex; align-items: center; gap: 10px; }
    .logo-icon {
      width: 34px; height: 34px;
      border-radius: 9px;
      background: linear-gradient(135deg, var(--pink), var(--purple));
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .logo-text { font-family: 'Orbitron', monospace; font-weight: 700; font-size: 13px; }
    .hdr-badges { display: flex; align-items: center; gap: 8px; }
    .badge {
      display: inline-flex; align-items: center; gap: 4px;
      padding: 3px 9px;
      border-radius: 20px;
      font-size: 10px; font-weight: 600;
      letter-spacing: .5px; text-transform: uppercase;
      white-space: nowrap;
    }
    .b-hot  { background: rgba(255,45,120,.18); color: var(--pink);   border: 1px solid rgba(255,45,120,.4); }
    .b-new  { background: rgba(0,229,255,.14);  color: var(--blue);   border: 1px solid rgba(0,229,255,.35); }
    .b-tg   { background: rgba(41,182,246,.14); color: #29b6f6;       border: 1px solid rgba(41,182,246,.3); }
    .b-web  { background: rgba(180,79,255,.14); color: var(--purple); border: 1px solid rgba(180,79,255,.3); }
    .b-gold { background: rgba(255,215,0,.12);  color: #ffd700;       border: 1px solid rgba(255,215,0,.35); }
    .b-silver{background: rgba(192,192,192,.12);color: #c0c0c0;       border: 1px solid rgba(192,192,192,.3); }
    .b-bronze{background: rgba(205,127,50,.14); color: #cd7f32;       border: 1px solid rgba(205,127,50,.35);}
    @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.55} }
    .pulse { animation: pulse 2s ease-in-out infinite; }
    .hero {
      padding-top: 100px;
      padding-bottom: 64px;
      text-align: center;
    }
    @media (min-width: 768px) { .hero { padding-top: 130px; padding-bottom: 80px; } }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 7px 18px;
      border-radius: 40px;
      background: rgba(255,45,120,.1);
      border: 1px solid rgba(255,45,120,.4);
      font-size: 11px; font-weight: 600;
      color: var(--pink);
      letter-spacing: 1.5px; text-transform: uppercase;
      margin-bottom: 28px;
    }
    .hero-title {
      font-family: 'Orbitron', monospace;
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 12px;
      font-size: clamp(38px, 8vw, 80px);
    }
    .hero-sub {
      font-family: 'Orbitron', monospace;
      font-weight: 700;
      font-size: clamp(18px, 4vw, 40px);
      margin-bottom: 20px;
      line-height: 1.2;
    }
    .hero-desc {
      font-size: 15px;
      color: #9090b0;
      max-width: 560px;
      margin: 0 auto 36px;
      line-height: 1.7;
    }
    @media (min-width: 768px) { .hero-desc { font-size: 16px; } }
    .stats-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap;
      margin-bottom: 36px;
    }
    .stat-item { text-align: center; }
    .stat-num {
      font-family: 'Orbitron', monospace;
      font-weight: 700;
      font-size: clamp(28px, 6vw, 44px);
      line-height: 1;
    }
    .stat-label {
      font-size: 10px;
      color: #555570;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-top: 4px;
    }
    .stat-div { width: 1px; height: 40px; background: #1e1e3a; }
    @media (max-width: 500px) { .stat-div { display: none; } }
    .warning {
      display: inline-block;
      max-width: 560px;
      width: 100%;
      background: rgba(255,45,120,.07);
      border: 1px solid rgba(255,45,120,.28);
      border-radius: 12px;
      padding: 13px 18px;
      font-size: 13px;
      color: #9090b0;
      line-height: 1.6;
      text-align: center;
    }
    .divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--pink), var(--purple), var(--blue), transparent);
      opacity: .45;
    }
    .section { padding-top: 64px; padding-bottom: 64px; }
    @media (min-width: 768px) { .section { padding-top: 80px; padding-bottom: 80px; } }
    .sec-head { text-align: center; margin-bottom: 48px; }
    .sec-title {
      font-family: 'Orbitron', monospace;
      font-weight: 700;
      font-size: clamp(20px, 4vw, 30px);
      margin-bottom: 8px;
    }
    .sec-sub { font-size: 13px; color: #55556a; }
    .rank {
      display: inline-flex; align-items: center; justify-content: center;
      width: 34px; height: 34px;
      border-radius: 50%;
      font-family: 'Orbitron', monospace;
      font-weight: 700; font-size: 12px;
      flex-shrink: 0;
    }
    .r1 { background: linear-gradient(135deg,#ffd700,#ff8c00); color:#000; box-shadow:0 0 14px rgba(255,215,0,.55); }
    .r2 { background: linear-gradient(135deg,#c0c0c0,#808080); color:#000; box-shadow:0 0 10px rgba(192,192,192,.4); }
    .r3 { background: linear-gradient(135deg,#cd7f32,#8b4513); color:#fff; box-shadow:0 0 10px rgba(205,127,50,.4); }
    .r-other { background: rgba(255,45,120,.14); color: var(--pink); border: 1px solid rgba(255,45,120,.3); }
    .stars { color: #ffd700; letter-spacing: 1px; font-size: 14px; }
    .btn-main {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      padding: 13px 28px;
      background: linear-gradient(135deg, var(--pink), #c41f6a);
      color: #fff;
      border-radius: 50px;
      font-weight: 600; font-size: 14px;
      text-decoration: none;
      transition: all .25s ease;
      box-shadow: 0 4px 20px rgba(255,45,120,.38);
      border: none; cursor: pointer;
      white-space: nowrap;
    }
    .btn-main:hover {
      box-shadow: 0 6px 28px rgba(255,45,120,.6);
      transform: translateY(-2px);
    }
    .btn-main.gold {
      background: linear-gradient(135deg,#ffd700,#ff8c00);
      color: #000;
      box-shadow: 0 4px 20px rgba(255,215,0,.3);
    }
    .btn-main.gold:hover { box-shadow: 0 6px 28px rgba(255,215,0,.5); }
    .btn-main.purple {
      background: linear-gradient(135deg,#b44fff,#7b2fff);
      box-shadow: 0 4px 20px rgba(180,79,255,.35);
    }
    .btn-main.purple:hover { box-shadow: 0 6px 28px rgba(180,79,255,.55); }
    .btn-sm {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 7px 14px;
      background: transparent;
      color: var(--blue);
      border: 1px solid rgba(0,229,255,.35);
      border-radius: 50px;
      font-size: 12px; font-weight: 500;
      text-decoration: none;
      transition: all .25s ease;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .btn-sm:hover {
      background: rgba(0,229,255,.1);
      border-color: var(--blue);
      box-shadow: 0 0 18px rgba(0,229,255,.2);
      transform: translateY(-1px);
    }
    .top3-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }
    @media (min-width: 768px) { .top3-grid { grid-template-columns: repeat(3, 1fr); } }
    .top-card {
      background: linear-gradient(145deg,#0f0f1e,#14102a);
      border: 1px solid rgba(180,79,255,.3);
      border-radius: 20px;
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
      transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    }
    .top-card::after {
      content: '';
      position: absolute;
      top: -60%; left: -60%;
      width: 220%; height: 220%;
      background: conic-gradient(transparent, rgba(180,79,255,.06), transparent 30%);
      animation: spin 8s linear infinite;
      pointer-events: none;
    }
    @keyframes spin { to { transform: rotate(360deg); } }
    .top-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 48px rgba(255,45,120,.25), 0 0 60px rgba(180,79,255,.12);
      border-color: rgba(255,45,120,.6);
    }
    .top-card .inner { position: relative; z-index: 2; display: flex; flex-direction: column; height: 100%; }
    .tc-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; }
    .tc-badges { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; }
    .tc-icon {
      width: 56px; height: 56px;
      border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      font-size: 26px;
      margin-bottom: 14px;
    }
    .tc-name {
      font-family: 'Orbitron', monospace;
      font-weight: 700;
      font-size: clamp(16px, 3vw, 20px);
      color: #fff;
      margin-bottom: 6px;
    }
    .tc-stars { margin-bottom: 12px; }
    .tc-desc { font-size: 13px; color: #8080a0; line-height: 1.65; margin-bottom: 16px; flex: 1; }
    .tc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
    .list-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;
    }
    @media (min-width: 540px)  { .list-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 900px)  { .list-grid { grid-template-columns: repeat(3, 1fr); } }
    @media (min-width: 1100px) { .list-grid { grid-template-columns: repeat(4, 1fr); } }
    .list-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 14px;
      display: flex;
      align-items: center;
      gap: 12px;
      transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    }
    .list-card:hover {
      transform: translateY(-3px);
      border-color: rgba(255,45,120,.45);
      box-shadow: 0 6px 24px rgba(255,45,120,.15);
    }
    .lc-info { flex: 1; min-width: 0; }
    .lc-name {
      font-weight: 600;
      font-size: 13px;
      color: #fff;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-bottom: 4px;
    }
    .lc-stars { font-size: 11px; margin-bottom: 5px; }
    .lc-tags { display: flex; flex-wrap: wrap; gap: 4px; }
    .tbl-wrap {
      overflow-x: auto;
      border-radius: 16px;
      border: 1px solid var(--border);
      background: var(--card);
    }
    table { width: 100%; border-collapse: collapse; font-size: 13px; }
    thead th {
      background: rgba(180,79,255,.12);
      color: var(--purple);
      padding: 13px 14px;
      text-align: left;
      font-weight: 600;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: .8px;
      border-bottom: 1px solid rgba(180,79,255,.25);
      white-space: nowrap;
    }
    tbody td {
      padding: 12px 14px;
      border-bottom: 1px solid rgba(255,255,255,.045);
      vertical-align: middle;
      white-space: nowrap;
    }
    tbody tr:last-child td { border-bottom: none; }
    tbody tr:hover td { background: rgba(255,45,120,.04); }
    .td-name { white-space: nowrap; font-weight: 600; color: #fff; }
    .td-link { color: var(--pink); text-decoration: none; font-size: 12px; }
    .td-link:hover { text-decoration: underline; }
    .steps-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }
    @media (min-width: 540px)  { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 900px)  { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
    .step-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 24px 20px;
      text-align: center;
      transition: border-color .25s ease, box-shadow .25s ease;
    }
    .step-card:hover {
      border-color: rgba(0,229,255,.3);
      box-shadow: 0 4px 20px rgba(0,229,255,.1);
    }
    .step-num {
      width: 48px; height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg,rgba(0,229,255,.18),rgba(180,79,255,.18));
      border: 1px solid rgba(0,229,255,.35);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Orbitron', monospace;
      font-weight: 700; font-size: 18px;
      color: var(--blue);
      margin: 0 auto 16px;
    }
    .step-title { font-weight: 600; color: #fff; font-size: 15px; margin-bottom: 8px; }
    .step-text { font-size: 13px; color: #7070a0; line-height: 1.65; }
    .tips-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
      margin-top: 28px;
    }
    @media (min-width: 768px) { .tips-grid { grid-template-columns: repeat(3,1fr); } }
    .tip-card {
      display: flex; align-items: flex-start; gap: 12px;
      padding: 16px;
      border-radius: 14px;
    }
    .tip-card i { margin-top: 2px; flex-shrink: 0; font-size: 15px; }
    .tip-title { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 4px; }
    .tip-text  { font-size: 12px; color: #7070a0; line-height: 1.6; }
    footer {
      background: rgba(5,5,12,.95);
      border-top: 1px solid rgba(255,45,120,.1);
      padding: 48px 0 28px;
    }
    .footer-top {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
      margin-bottom: 28px;
    }
    @media (min-width: 768px) {
      .footer-top {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
      }
    }
    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px 20px;
    }
    @media (min-width: 768px) { .footer-links { justify-content: flex-end; } }
    .footer-links a {
      color: #55556a;
      font-size: 13px;
      text-decoration: none;
      transition: color .2s;
    }
    .footer-links a:hover { color: #fff; }
    .footer-bottom {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      text-align: center;
    }
    @media (min-width: 768px) {
      .footer-bottom { flex-direction: row; justify-content: space-between; }
    }
    .footer-copy { font-size: 11px; color: #33334a; }
    .anim {
      opacity: 0;
      transform: translateY(22px);
    } 
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: #08080f; }
    ::-webkit-scrollbar-thumb { background: rgba(255,45,120,.35); border-radius: 3px; }
    ::-webkit-scrollbar-thumb:hover { background: var(--pink); }