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

  body {
    font-family: 'Montserrat', sans-serif;
    background-color: #121212;
    line-height: 1.6;
  }

  img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }

  header {
    background: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
    color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #282c34;
    color: #fff;
    padding: .5rem 1rem;
  }

  nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
  }

  .games-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .game-link {
    width: calc(33% - 20px);
    margin: 10px;
    text-align: center;
  }

  .game-link img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  nav .logo {
    filter: brightness(0) invert(1);
  }

  nav .nav-links {
    list-style-type: none;
  }

  nav .nav-links li {
    display: inline;
    margin: 0 10px;
  }

  /* Main Content Styles */
  main {
    padding: 20px;
  }

  /* Footer Styles */
  footer {
    background-color: #282c34;
    color: #fff;
    text-align: center;
    padding: 1rem;
  }

  /* Games Page Styles */
  #games {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    padding: 1rem;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    nav ul {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    nav .nav-links li {
      margin-bottom: 0.5rem;
    }
  }

  p,
  li,
  span,
  label {
    color: #ddd;
  }

  #toggleButton {
    background-color: #4CAF50;
    color: white;
    padding: 10px 24px;
    margin: 20px 0;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
  }

  #toggleButton:hover {
    background-color: #45a049;
  }