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

    html, body {
      min-height: 100%;              /* allows scrolling if content grows */
      width: 100%;
      font-family: Arial, sans-serif;
      background: url('/assets/background_website.png') no-repeat center center fixed;
      background-size: cover;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      text-align: center;
      padding: 20px;
      overflow-x: hidden;
    }

    /* Logo */
    img.logo {
      width: 400px;
      max-width: 80%;
      margin-bottom: 20px;
    }

    /* Main description */
    p.description {
      font-size: 1.1rem;
      line-height: 1.5;
      max-width: 800px;
      opacity: 0.85;
      margin-bottom: 40px;
    }

    /* Game cards */
    .cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      width: 100%;
      max-width: 1000px;
    }

    .card {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      backdrop-filter: blur(6px);
      padding: 20px;
      width: 260px;
      text-align: left;
      transition: transform 0.3s ease;
      max-width: 100vw;
    }
    .card:hover {
      transform: translateY(-5px);
    }
    .card img {
      width: 100%;
      border-radius: 8px;
      margin-bottom: 15px;
    }
    .card h3 {
      font-size: 1.3rem;
      margin-bottom: 8px;
    }
    .card p {
      font-size: 0.9rem;
      line-height: 1.4;
      opacity: 0.9;
    }

    /* Release styling */
    .release-label {
      font-size: 0.8rem;
      font-weight: bold;
      margin-top: 12px;
      text-align: center;
      opacity: 0.85;
    }
    .release-date {
      font-size: 0.85rem;
      font-style: italic;
      text-align: center;
      opacity: 0.8;
    }

    /* Footer */
    footer {
      margin-top: 60px;
      font-size: 0.8rem;
      opacity: 0.8;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 6px;
    }
    footer a {
      color: #ffffff;
      text-decoration: underline;
    }
    footer a:hover {
      text-decoration: none;
    }
    footer img.icon {
      width: 18px;
      height: 18px;
      vertical-align: text-bottom;
      filter: brightness(0) invert(1); /* makes SVG white */
    }