/* Global Styling */
body {
    margin: 0;
    padding: 0;
    font-family: "Courier New", Courier, monospace;
    background: linear-gradient(135deg, #74ebd5, #acb6e5);
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
  }
  
  header {
    margin-top: 20px;
  }
  
  h1 {
    font-size: 3rem;
    color: white;
  }
  
  main {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .game-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
  }
  
  .game-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    width: 200px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
  }
  
  .game-card:hover {
    transform: translateY(-10px);
  }
  
  .game-card img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
  }
  
  h2 {
    font-size: 1.5rem;
    color: #0c67ae;
  }
  
  footer {
    margin-top: 30px;
  }
  
  footer p {
    color: white;
    font-size: 1rem;
  }