html, body {
    margin: 0;
    padding: 0;
    font-family: 'Press Start 2P', cursive;
    background: #000;
    color: #eee;
    overflow-x: hidden;
  }
  
  /* Starfield container: covers full viewport */
  .starfield-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
  }
  
  #starfield {
    width: 100%;
    height: 100%;
    display: block;
  }
  
  /* Main content container with bottom margin to avoid overlap with banner */
  .container {
    position: relative;
    padding: 20px;
    margin-bottom: 150px; /* Adjust if banner height changes */
    z-index: 2;
  }
  
  /* Cards styling */
  .card {
    background: rgba(34, 34, 34, 0.9);
    border: 2px solid #555;
    width: 90%;
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    transition: transform 0.2s;
  }
  
  .card:hover {
    transform: scale(1.02);
  }
  
  .card h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #fff;
  }
  
  .items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  
  .item {
    background: #444;
    border: 1px solid #666;
    padding: 10px;
    width: 80%;
    text-align: center;
    color: #fff;
  }
  
  .item a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Category-specific colors */
  .drawing h2 {
    color: #f39c12;
  }
  .drawing .item {
    background: #e67e22;
  }
  
  .games h2 {
    color: #27ae60;
  }
  .games .item {
    background: #2ecc71;
  }
  
  .other h2 {
    color: #3498db;
  }
  .other .item {
    background: #2980b9;
  }
  
  /* Banner styling: fixed at the bottom with transparent background */
  .banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    background: transparent;
  }
  
  .banner img {
    width: 100%;
    height: auto;
    display: block;
  }
  