   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', 'Orbitron', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }

    body {
      background: #0a0000;
      color: #fff;
      overflow-x: hidden;
    }

    /* ========= GAMING RED/BLACK THEME FOR DOWNLOAD PAGE ========= */
    .download-page {
      background: radial-gradient(circle at 20% 0%, #1a0505, #000000);
      color: #e5e7eb;
      padding: 80px 6%;
      position: relative;
    }

    /* Gaming accent overlay */
    .download-page::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: 
        linear-gradient(rgba(227, 27, 35, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(227, 27, 35, 0.04) 1px, transparent 1px);
      background-size: 40px 40px;
      pointer-events: none;
    }

    /* HERO SECTION */
    .download-hero {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 60px;
      position: relative;
      z-index: 2;
    }

    .hero-text {
      max-width: 520px;
    }

    .hero-text h1 {
      font-size: 52px;
      font-weight: 900;
      line-height: 1.1;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .hero-text h1 span {
      background: linear-gradient(135deg, #e31b23, #ff4d4d, #ff8c8c);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-shadow: 0 0 20px rgba(227, 27, 35, 0.5);
    }

    .hero-text p {
      margin: 20px 0 32px;
      font-size: 16px;
      color: #cbd5e1;
      line-height: 1.6;
    }

    /* GAMING DOWNLOAD BUTTON - RED/BLACK */
    .download-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: linear-gradient(135deg, #e31b23, #991b1b);
      padding: 14px 32px;
      border-radius: 60px;
      color: white;
      font-weight: 800;
      text-decoration: none;
      box-shadow: 0 0 25px rgba(227, 27, 35, 0.6);
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .download-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 0 40px #e31b23;
      background: linear-gradient(135deg, #ff3333, #b11219);
    }

    /* HERO IMAGE */
    .hero-visual img {
      max-width: 480px;
      width: 100%;
      filter: drop-shadow(0 0 40px rgba(227, 27, 35, 0.5));
      border-radius: 20px;
    }

    /* PLATFORMS SECTION - GAMING CARDS */
    .platforms {
      margin-top: 100px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 40px;
      position: relative;
      z-index: 2;
    }

    .platform-card {
      background: rgba(10, 5, 5, 0.85);
      border: 2px solid rgba(227, 27, 35, 0.4);
      border-radius: 24px;
      padding: 40px 30px;
      text-align: center;
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .platform-card::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 24px;
      padding: 2px;
      background: linear-gradient(135deg, #e31b23, #ff4d4d, #dc2626);
      mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: 0;
      transition: opacity 0.3s;
    }

    .platform-card:hover {
      transform: translateY(-8px);
      border-color: transparent;
      box-shadow: 0 0 30px rgba(227, 27, 35, 0.4);
    }

    .platform-card:hover::before {
      opacity: 1;
    }

    .platform-card h3 {
      font-size: 26px;
      font-weight: 800;
      margin-bottom: 20px;
      background: linear-gradient(135deg, #ffffff, #e31b23);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .platform-card img {
      width: 140px;
      margin-bottom: 20px;
      filter: drop-shadow(0 0 15px rgba(227, 27, 35, 0.6));
      transition: transform 0.3s;
    }

    .platform-card:hover img {
      transform: scale(1.05);
    }

    .platform-card p {
      font-size: 14px;
      color: #cbd5e1;
      line-height: 1.5;
    }

    /* Gaming badge */
    .game-badge {
      display: inline-block;
      margin-top: 16px;
      padding: 5px 12px;
      background: rgba(227, 27, 35, 0.2);
      border-radius: 20px;
      font-size: 11px;
      color: #ff8888;
      letter-spacing: 1px;
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .download-hero {
        flex-direction: column;
        text-align: center;
        gap: 40px;
      }
      .hero-text {
        max-width: 100%;
      }
      .hero-text h1 {
        font-size: 38px;
      }
      .download-page {
        padding: 60px 5%;
      }
      .platforms {
        margin-top: 60px;
        gap: 25px;
      }
      .platform-card {
        padding: 30px 20px;
      }
      .platform-card h3 {
        font-size: 22px;
      }
    }

    @media (max-width: 480px) {
      .hero-text h1 {
        font-size: 32px;
      }
      .download-btn {
        padding: 12px 24px;
        font-size: 14px;
      }
      .platform-card img {
        width: 100px;
      }
    } 
