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

    body {
      font-family: 'Montserrat', sans-serif;
      background: linear-gradient(180deg, #0b0f2b, #0a0a1a);
      color: white;
      overflow-x: hidden;
    }

    header {
      padding: 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #0f122e;
    }

    header img {
      height: 40px;
    }

    .hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 4rem 2rem;
      background: url('https://shared.akamai.steamstatic.com/store_item_assets/steam/apps/2519830/ss_0d586470504defc8320b1589958dbed9053f7085.1920x1080.jpg') center/cover no-repeat;
      backdrop-filter: blur(2px);
    }

    .hero h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
    }

    .hero p {
      font-size: 1.2rem;
      max-width: 600px;
      margin-bottom: 2rem;
      opacity: 0.9;
    }

    .hero .download {
      background: linear-gradient(90deg, #fc466b 0%, #3f5efb 100%);
      color: white;
      padding: 1rem 2rem;
      border-radius: 30px;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
      transition: transform 0.2s;
    }

    .hero .download:hover {
      transform: scale(1.05);
    }

    .media-section {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1rem;
      padding: 4rem 2rem;
      background-color: #10132d;
    }

    .media-section img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 0 16px #0008;
    }

    .video-section {
      padding: 4rem 2rem;
      text-align: center;
      background-color: #0f1126;
    }

    .video-section iframe {
      max-width: 90%;
      width: 700px;
      height: 400px;
      border-radius: 12px;
      box-shadow: 0 0 16px #0008;
    }

    .support {
      text-align: center;
      padding: 2rem;
      font-size: 1.1rem;
      background-color: #0f1126;
    }

    .footer {
      text-align: center;
      padding: 2rem;
      font-size: 0.9rem;
      color: #aaa;
    }

    .report-btn {
      margin-top: 1.5rem;
      background-color: #ff3c6b;
      color: white;
      border: none;
      padding: 0.8rem 1.5rem;
      border-radius: 25px;
      font-weight: bold;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      .hero h1 { font-size: 2rem; }
      .hero p { font-size: 1rem; }
      .video-section iframe { width: 100%; height: 250px; }
    }
  