    :root{
      --bg:#0b1220;
      --panel:#0f1b33;
      --text:#e7eefc;
      --muted:#a9b7d0;
      --accent:#66e3ff;
      --accent2:#7c5cff;
      --border:rgba(255,255,255,.08);
      --shadow: 0 16px 50px rgba(0,0,0,.45);
      --radius: 20px;
      --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
    }
    *{box-sizing:border-box}
    @keyframes blob1{
      0%, 100%{
        transform: translate(0, 0) scale(1);
        opacity: 0.25;
      }
      20%{
        transform: translate(200px, 300px) scale(1.1);
        opacity: 0.35;
      }
      40%{
        transform: translate(-150px, 150px) scale(0.9);
        opacity: 0.15;
      }
      60%{
        transform: translate(150px, -200px) scale(1.15);
        opacity: 0.3;
      }
      80%{
        transform: translate(-100px, 400px) scale(0.95);
        opacity: 0.28;
      }
    }
    @keyframes blob2{
      0%, 100%{
        transform: translate(0, 0) scale(1);
        opacity: 0.18;
      }
      25%{
        transform: translate(-250px, -150px) scale(1.15);
        opacity: 0.28;
      }
      50%{
        transform: translate(100px, 350px) scale(0.85);
        opacity: 0.12;
      }
      75%{
        transform: translate(-180px, 200px) scale(1.05);
        opacity: 0.25;
      }
    }
    @keyframes gradientShift{
      0%{
        background-position: 0% 50%;
      }
      50%{
        background-position: 100% 50%;
      }
      100%{
        background-position: 0% 50%;
      }
    }
    body{
      margin:0;
      font-family:var(--sans);
      background: linear-gradient(180deg, var(--bg), #060a14 80%);
      color:var(--text);
      min-height:100vh;
      display:flex;
      align-items:center;
      justify-content:center;
      padding:28px;
      position:relative;
      overflow-x:hidden;
    }
    body::before{
      content:'';
      position:fixed;
      top:-50vh;
      left:-50vw;
      right:-50vw;
      bottom:-50vh;
      width:200vw;
      height:200vh;
      background: radial-gradient(60vw 40vh at 35% 40%, rgba(124,92,255,1), transparent 60%);
      animation: blob1 25s ease-in-out infinite;
      pointer-events:none;
      z-index:0;
    }
    body::after{
      content:'';
      position:fixed;
      top:-50vh;
      left:-50vw;
      right:-50vw;
      bottom:-50vh;
      width:200vw;
      height:200vh;
      background: radial-gradient(45vw 35vh at 70% 40%, rgba(102,227,255,1), transparent 55%);
      animation: blob2 30s ease-in-out infinite;
      pointer-events:none;
      z-index:0;
    }
    .wrap{
      width:min(1280px, 100%);
      text-align:center;
      position:relative;
      z-index:1;
    }
    .hero{
      margin-bottom:30px;
    }
    .title{
      font-size: clamp(28px, 4vw, 42px);
      font-weight:800;
      letter-spacing:-.02em;
      margin:0;
    }
    .subtitle{
      margin:10px auto 0;
      color:var(--muted);
      line-height:1.5;
      max-width: 68ch;
      font-size: 15px;
    }
    .category-section{
      margin-top:48px;
    }
    .category-section:first-of-type{
      margin-top:34px;
    }
    .category-heading{
      font-size:24px;
      font-weight:700;
      color:var(--text);
      margin:0 0 18px 0;
      letter-spacing:-.01em;
      text-align:left;
    }
    .cards{
      display:grid;
      grid-template-columns: 1fr;
      gap:22px;
    }
    @media (min-width: 860px){
      .cards{grid-template-columns: 1fr 1fr 1fr;}
    }
    .card{
      background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
      border:1px solid var(--border);
      box-shadow: var(--shadow);
      border-radius: var(--radius);
      padding:26px;
      text-align:left;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .card:hover{
      transform: translateY(-2px);
      box-shadow: 0 20px 60px rgba(0,0,0,.55);
    }
    .card.cat-tools{
      background: linear-gradient(180deg, rgba(102,227,255,.08), rgba(102,227,255,.04));
      border-color: rgba(102,227,255,.15);
    }
    .card.cat-resources{
      background: linear-gradient(180deg, rgba(124,92,255,.08), rgba(124,92,255,.04));
      border-color: rgba(124,92,255,.15);
    }
    .card.cat-management{
      background: linear-gradient(180deg, rgba(80,227,194,.08), rgba(80,227,194,.04));
      border-color: rgba(80,227,194,.15);
    }
    .card.cat-savefiles{
      background: linear-gradient(180deg, rgba(236,72,153,.08), rgba(168,85,247,.04));
      border-color: rgba(236,72,153,.15);
    }
    .card.cat-utilities{
      background: linear-gradient(180deg, rgba(118,255,122,.08), rgba(118,255,122,.04));
      border-color: rgba(118,255,122,.15);
    }
    .card h2{
      margin:0;
      font-size:22px;
      font-weight:750;
      letter-spacing:-.01em;
    }
    .card p{
      margin:10px 0 0;
      color:var(--muted);
      line-height:1.5;
      font-size:14px;
    }
    .card .action{
      margin-top:22px;
      display:flex;
      justify-content:flex-end;
      align-items:center;
      gap:12px;
    }
    .card a{
      color:var(--accent);
      text-decoration: none;
      font-weight:600;
      transition: color .12s ease;
    }
    .card a:hover{
      color:var(--accent2);
    }
    .card .action:has(.meta){
      justify-content:space-between;
    }
    .card .action .meta{
      font-size:12px;
      color:var(--muted);
      font-style:italic;
    }
    .card .action-multi{
      margin-top:16px;
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      justify-content:flex-end;
    }
    .btn{
      display:inline-block;
      padding:12px 16px;
      border-radius:14px;
      font-weight:700;
      font-size:14px;
      text-decoration:none;
      color:var(--text);
      border:1px solid var(--border);
      background: linear-gradient(135deg, rgba(102,227,255,.18), rgba(124,92,255,.16));
      transition: filter .12s ease, transform .08s ease;
    }
    .action-multi .btn{
      padding:8px 14px;
      border-radius:10px;
      font-weight:600;
      font-size:13px;
    }
    .btn:hover{filter:brightness(1.1)}
    .btn:active{transform: translateY(1px)}
    .footer{
      margin-top:48px;
      text-align:center;
    }
    .kofi-box{
      display:inline-block;
      padding:16px 28px;
      background: linear-gradient(135deg, rgba(124,92,255,.5), rgba(102,227,255,.45), rgba(80,227,194,.45), rgba(124,92,255,.5));
      background-size: 200% 200%;
      animation: gradientShift 8s ease infinite;
      border:1px solid rgba(102,227,255,.6);
      border-radius:16px;
      box-shadow: 0 8px 32px rgba(102,227,255,.3), 0 0 48px rgba(124,92,255,.15);
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .kofi-box:hover{
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(102,227,255,.25);
    }
    .kofi-box p{
      margin:0;
      font-size:14px;
      color:var(--text);
    }
    .kofi-box a{
      color:var(--accent);
      text-decoration:none;
      font-weight:700;
      transition: color .12s ease;
    }
    .kofi-box a:hover{
      color:var(--accent2);
    }