body {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    background-color: #0d0221;
    color: #f0f0f0;
    overflow-x: hidden;
    cursor: url('/images/glow-cursor.png'), auto;
  }
  
  .neon-theme {
    position:absolute;
    top:0px;
    right:0px;
    bottom:0px;
    left:0px;
    color: color-mix(135deg, #0d0221 60%, #12034f);
    ;
  }
  
  header {
    text-align: center;
    padding: 2rem;
  }
  
  .glow-title {
    font-size: 3rem;
    color: #0ff;
    text-shadow: 0 0 5px #0ff, 0 0 20px #0ff, 0 0 40px #0ff;
    animation: pulse 2s infinite;
  }
  
  .tagline {
    font-size: 1.2rem;
    color: #ff00f7;
    text-shadow: 0 0 5px #ff00f7;
    margin-bottom: 1rem;
  }
  
  button {
    background: transparent;
    color: #0ff;
    border: 2px solid #0ff;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    margin: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  
  button:hover {
    background-color: #0ff;
    color: #000;
    box-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
  }
  
  .game-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
  }
  
  .game-card {
    width: 200px;
    height: 200px;
    perspective: 1000px;
    text-decoration: none;
  }
  
  .card-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    position: relative;
  }
  
  .game-card:hover .card-inner {
    transform: rotateY(180deg);
  }
  
  .card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #1b003b;
    color: #0ff;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border: 2px solid #0ff;
    border-radius: 15px;
    box-shadow: 0 0 10px #0ff, 0 0 30px #0ff;
    backface-visibility: hidden;
  }
  
  .card-back {
    transform: rotateY(180deg);
    background: #33004d;
    color: #ff00f7;
  }
  
  /* Footer */
  .neon-footer {
    text-align: center;
    padding: 2rem;
    font-size: 1rem;
    background: #0d0221;
    color: #0ff;
    text-shadow: 0 0 5px #0ff;
    }
  .footer-glow {
    color: #0ff;
    font-size: 1rem;
    text-shadow:
      0 0 5px #0ff,
      0 0 10px #0ff,
      0 0 15px #0ff,
      0 0 20px #0ff;
  }
  
  body::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: #0ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
    pointer-events: none;
    animation: trailMove 0.1s linear infinite;
  }
  
  #easter-egg-trigger {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
    background-color: #0ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #0ff;
    cursor: pointer;
  }
  
  .hidden-egg {
    display: none;
    position: fixed;
    bottom: 70px;
    right: 30px;
    background: #111;
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid #0ff;
    color: #0ff;
    text-align: center;
    box-shadow: 0 0 20px #0ff;
    z-index: 1000;
  }
  .neon-404 {
    background-color: #0a0a0a;
    color: #0ff;
    text-align: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: 'Courier New', monospace;
  }
  
  .center-404 h1 {
    font-size: 5rem;
    color: #0ff;
    text-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
  }
  
  .neon-glow-sub {
    font-size: 1.5rem;
    margin: 1rem;
    color: #fff;
    text-shadow: 0 0 5px #0ff;
  }
  
  .glow-button {
    background: none;
    border: 2px solid #0ff;
    padding: 0.5rem 1rem;
    color: #0ff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s ease;
    text-shadow: 0 0 5px #0ff;
  }
  
  .glow-button:hover {
    background-color: #0ff;
    color: #000;
    box-shadow: 0 0 20px #0ff;
  }
  

  @keyframes pulse {
    0%, 100% {
      text-shadow: 0 0 5px #0ff, 0 0 20px #0ff, 0 0 40px #0ff;
    }
    50% {
      text-shadow: 0 0 15px #ff00f7, 0 0 30px #ff00f7, 0 0 50px #ff00f7;
    }
  }
  