/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background-color: #0a0a0a;
    color: #f2f2f2;
    font-family: 'Press Start 2P', monospace;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px 0;
  }
  
  /* Container */
  .container {
    max-width: 1200px;
    width: 100%;
    background: #111;
    padding: 30px;
    box-shadow: 0 0 20px #8f5aff66;
    border-radius: 10px;
    margin-top: 40px;
    border: 2px solid #8f5aff;
  }
  
  header {
    text-align: center;
    margin-bottom: 30px;
  }
  
  h1 {
    font-size: 2.5rem;
    color: #8f5aff;
    margin-bottom: 10px;
  }
  
  .glitch {
    position: relative;
    animation: glitch 2s infinite;
    text-shadow: 2px 2px #ff00c8, -2px -2px #00ffe1;
  }
  
  @keyframes glitch {
    0% { text-shadow: 2px 2px #ff00c8, -2px -2px #00ffe1; }
    25% { text-shadow: -3px 1px #ff00c8, 3px -1px #00ffe1; }
    50% { text-shadow: 1px -2px #ff00c8, -1px 2px #00ffe1; }
    75% { text-shadow: 3px 0px #ff00c8, -3px 0px #00ffe1; }
    100% { text-shadow: 0px 0px #ff00c8, 0px 0px #00ffe1; }
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: center;
    gap: 25px;
    background: #1a1a1a;
    padding: 10px 0;
    margin-bottom: 30px;
    border-bottom: 2px solid #8f5aff;
  }
  
  .navbar a {
    font-size: 1rem;
    color: #8f5aff;
    text-decoration: none;
    transition: text-shadow 0.3s;
  }
  
  .navbar a:hover {
    text-shadow: 0 0 5px #ff00c8;
  }
  
  /* Seções */
  h2 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    border-left: 4px solid #8f5aff;
    padding-left: 12px;
  }
  
  p {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  /* Cards de jogos */
  .games-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .game-card {
    background: #1a1a1a;
    border: 1px solid #8f5aff;
    position: relative;
    padding: 60px;
    width: calc(50% - 20px);
    box-sizing: border-box;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .game-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 5px;
    border: 2px solid #333;
    margin-bottom: 15px;
    background-color: #000;
  }
  
  .game-card h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
  }
  
  .button-container {
    position: absolute;
    bottom: 20px; /* distância da parte inferior */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .game-button {
    background: #8f5aff;
    color: #0a0a0a;
    border: 2px solid #3b002f;
    padding: 10px 18px;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.65rem;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 10px;
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 2px #ff00c8;
  }
  
  .game-button:hover {
    box-shadow: 0 0 4px #ff00c8, 0 0 20px #8f5aff;
    transform: scale(1.02);
  }
  
  /* Footer */
  footer {
    margin-top: 40px;
    text-align: center;
  }
  
  footer .social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
  }
  
  footer .social-links img {
    width: 30px;
    filter: invert(1);
    transition: transform 0.3s;
  }
  
  footer .social-links img:hover {
    transform: scale(1.2);
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .game-card {
      width: 100%;
    }
  
    h1 {
      font-size: 2rem;
    }
  
    h2 {
      font-size: 1.2rem;
    }
  
    .navbar a {
      font-size: 0.9rem;
    }
  }
  
  