    :root {
      --primary: #c62828;
      --dark: #121212;
      --light: #f5f5f5;
    }

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

    html, body {
      height: 100%;
      font-family: 'Roboto', sans-serif;
      background-color: var(--dark);
      color: var(--light);
    }

    body {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      text-align: center;
      padding: 1.5rem;
    }

    header img {
        height: 80px;
        margin-bottom: 0.5rem;
    }

    h1 {
        font-size: 2.5rem;
        font-family: 'Orbitron', sans-serif;
        color: var(--primary);
        margin-bottom: 0.5rem;
    }
    .content {
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .game-screenshot {
      max-width: 90%;
      max-height: 450px;
      border-radius: 12px;
      margin-bottom: 1rem;
    }

    p {
      max-width: 600px;
      margin: 0 auto 1rem;
      line-height: 1.5;
    }

    footer {
      font-size: 0.85rem;
      color: #aaa;
    }

    a {
      color: var(--primary);
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    .steam-logo {
        max-width: 16px;
    }