body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: white;
      color: black;
    }

    header {
      padding: 20px;
      text-align: center;
      background: #368c7c;
      font-size: 1.8rem;
      font-weight: bold;
    }

    .container {
      max-width: 900px;
      margin: auto;
      padding: 40px 20px;
      text-align: center;
    }

    .game-image {
      width: 100%;
      max-width: 600px;
      border-radius: 12px;
      margin-bottom: 20px;
    }

    .trailer {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 50px;
  border-radius: 12px;
  overflow: hidden;
}

.trailer iframe {
  width: 100%;
  height: 100%;
  border: none;
}

    .sprite-row {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      margin-bottom: 30px;
    }

    .sprite {
      width: 120px;
      height: 120px;
      object-fit: contain;
      padding: 10px;
      border-radius: 10px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .description {
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 30px;
    }

    .play-button {
      display: inline-block;
      padding: 15px 30px;
      font-size: 1.2rem;
      color: white;
      background: #38bdf8;
      border: none;
      border-radius: 8px;
      text-decoration: none;
      transition: background 0.3s ease;
    }

    .play-button:hover {
      background: #0ea5e9;
    }

    footer {
      text-align: center;
      padding: 20px;
      font-size: 0.9rem;
      color: #94a3b8;
    }