
    :root {
      --bg: #0a0a0c;
      --bg2: #111116;
      --bg3: #17171f;
      --card: #1a1a24;
      --border: rgba(255,255,255,0.07);
      --border2: rgba(255,255,255,0.12);
      --accent: #ff4500;
      --accent2: #ff6b35;
      --text: #f0ede8;
      --muted: #8a8694;
      --glow: rgba(255,69,0,0.25);
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.7;
      min-height: 100vh;
    }
    .wrap { width: min(1100px, 92%); margin: 0 auto; }
    .top {
      border-bottom: 1px solid var(--border);
      background: rgba(10,10,12,0.92);
      backdrop-filter: blur(10px);
    }
    .top .wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 18px 0;
      flex-wrap: wrap;
    }
    .logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 30px;
      letter-spacing: 1.4px;
      color: var(--text);
      text-decoration: none;
    }
    .logo span { color: var(--accent); }
    .btn {
      display: inline-flex;
      align-items: center;
      padding: 10px 20px;
      border-radius: 6px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.4px;
      text-decoration: none;
      border: 1px solid var(--border2);
      color: var(--text);
      transition: 0.2s;
    }
    .btn:hover { border-color: var(--accent); color: var(--accent); }
    .hero {
      padding: 64px 0 36px;
      text-align: center;
      animation: fadeUp 0.8s ease both;
      position: relative;
      overflow: hidden;
      border-radius: 16px;
      background:
        radial-gradient(circle at 15% 20%, rgba(255,69,0,0.18), transparent 42%),
        radial-gradient(circle at 85% 30%, rgba(255,107,53,0.14), transparent 40%),
        radial-gradient(circle at 50% 85%, rgba(255,170,0,0.10), transparent 42%),
        linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0));
    }
    .hero::before,
    .hero::after {
      content: "";
      position: absolute;
      inset: -25% -20%;
      pointer-events: none;
      z-index: 0;
    }
    .hero::before {
      background:
        radial-gradient(circle at 20% 30%, rgba(255,69,0,0.22), transparent 35%),
        radial-gradient(circle at 80% 50%, rgba(255,107,53,0.18), transparent 34%);
      filter: blur(20px);
      animation: heroFloatA 11s ease-in-out infinite alternate;
    }
    .hero::after {
      background:
        radial-gradient(circle at 65% 20%, rgba(255,170,0,0.15), transparent 30%),
        radial-gradient(circle at 35% 75%, rgba(255,69,0,0.14), transparent 32%);
      filter: blur(24px);
      animation: heroFloatB 14s ease-in-out infinite alternate;
    }
    .hero > * {
      position: relative;
      z-index: 1;
    }
    .tag {
      color: var(--accent2);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 1.4px;
      font-weight: 700;
      margin-bottom: 14px;
    }
    h1 {
      font-family: 'Bebas Neue', sans-serif;
      letter-spacing: 1.4px;
      font-size: clamp(38px, 8vw, 64px);
      line-height: 1;
      margin-bottom: 14px;
    }
    .sub {
      color: var(--muted);
      max-width: 720px;
      margin: 0 auto;
      font-size: 16px;
    }
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 18px;
      padding: 28px 0 64px;
    }
    .featured {
      background: linear-gradient(135deg, rgba(255,69,0,0.12), rgba(255,107,53,0.08));
      border: 1px solid rgba(255,107,53,0.35);
      border-radius: 16px;
      padding: 26px;
      margin-bottom: 8px;
      animation: fadeUp 0.9s ease both;
    }
    .featured-tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      color: #ffb08f;
      margin-bottom: 10px;
    }
    .featured h2 {
      font-size: clamp(24px, 4vw, 34px);
      line-height: 1.2;
      margin-bottom: 10px;
    }
    .featured p {
      color: var(--muted);
      margin-bottom: 16px;
      max-width: 820px;
    }
    .btn-row {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }
    .card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      height: 100%;
      opacity: 0;
      transform: translateY(18px);
      transition: transform 0.5s ease, opacity 0.5s ease, border-color 0.25s ease;
    }
    .card.show {
      opacity: 1;
      transform: translateY(0);
    }
    .card h2 {
      font-size: 20px;
      line-height: 1.3;
      margin-bottom: 10px;
    }
    .card p {
      color: var(--muted);
      font-size: 14px;
      margin-bottom: 18px;
    }
    .card a {
      color: #fff;
      text-decoration: none;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      border-radius: 6px;
      padding: 10px 16px;
      display: inline-block;
      font-size: 13px;
      font-weight: 700;
      box-shadow: 0 4px 20px var(--glow);
      margin-top: auto;
      align-self: flex-start;
    }
    .card a:hover, .featured a:hover { filter: brightness(1.05); }
    .card:hover {
      border-color: rgba(255,107,53,0.35);
      transform: translateY(-4px);
    }
    .featured a {
      color: #fff;
      text-decoration: none;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      border-radius: 6px;
      padding: 10px 16px;
      display: inline-block;
      font-size: 13px;
      font-weight: 700;
      box-shadow: 0 4px 20px var(--glow);
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(18px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes heroFloatA {
      0% { transform: translate3d(-2%, 0, 0) scale(1); }
      50% { transform: translate3d(2%, -2%, 0) scale(1.05); }
      100% { transform: translate3d(1%, 2%, 0) scale(1.02); }
    }
    @keyframes heroFloatB {
      0% { transform: translate3d(2%, 1%, 0) scale(1); }
      50% { transform: translate3d(-1%, 2%, 0) scale(1.04); }
      100% { transform: translate3d(-2%, -1%, 0) scale(1.01); }
    }
    @media (prefers-reduced-motion: reduce) {
      .hero, .featured { animation: none; }
      .hero::before, .hero::after { animation: none; }
      .card { opacity: 1; transform: none; transition: none; }
      .card:hover { transform: none; }
    }
  
