body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background: radial-gradient(circle at top, #0a0a0a 0%, #111 80%);
  color: #00ffff;
  overflow-x: hidden;
}

/* Capa */
.capa {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-bottom: 2px solid #00ffff;
  box-shadow: 0 0 20px #00ffff;
}

/* Menu */
nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #111;
  padding: 6px;
  border-bottom: 2px solid #00ffff;
}

.dropdown {
  margin: 5px;
  position: relative;
}

.dropbtn {
  background: #0a0a0a;
  color: #00ffff;
  border: 1px solid #00ffff;
  font-weight: bold;
  padding: 6px 10px;
  cursor: pointer;
  transition: all 0.3s;
}

.dropbtn:hover {
  background: #00ffff;
  color: #000;
  box-shadow: 0 0 15px #00ffff;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #111;
  min-width: 160px;
  box-shadow: 0 0 15px rgba(0,255,255,0.5);
  border: 1px solid #00ffff;
  z-index: 10;
}

.dropdown-content a {
  color: #00ffff;
  padding: 8px 12px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #00ffff;
  color: #000;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Conteúdo */
main {
  margin: 20px auto;
  padding: 10px;
  max-width: 1200px;
}

h1, h2, p {
  text-align: center;
}

/* Grid de jogos */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.game-card {
  background: rgba(15, 15, 15, 0.9);
  border: 1px solid rgba(0,255,255,0.4);
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: inset 0 0 10px rgba(0,255,255,0.3), 0 0 20px rgba(0,255,255,0.5);
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: inset 0 0 15px rgba(0,255,255,0.5), 0 0 30px rgba(0,255,255,0.8);
}

.game-image {
  width: 150px;
  height: 150px;
  border-radius: 10px;
  margin-bottom: 15px;
  cursor: pointer;
}

/* Botão neon pulsante */
.download-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 12px;
  background-color: #00ffff;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  box-shadow: 0 0 15px #00ffff;
  animation: pulse 2s infinite;
}

.download-btn:hover {
  background-color: #fff;
  box-shadow: 0 0 25px #00ffff;
}

/* Animação de brilho */
@keyframes pulse {
  0% { box-shadow: 0 0 10px #00ffff; }
  50% { box-shadow: 0 0 25px #00ffff; }
  100% { box-shadow: 0 0 10px #00ffff; }
}

/* Rodapé */
footer {
  text-align: center;
  padding: 15px;
  border-top: 2px solid #00ffff;
  background-color: #111;
  color: #00ffff;
}

/* Responsividade */
@media (max-width: 768px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 cards por linha no celular */
  }
  .game-card {
    padding: 10px;
  }
  .game-image {
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 2px 0;
  }
  .dropbtn {
    padding: 4px 6px;
    font-size: 12px;
    margin: 0 4px;
  }
  .dropdown {
    margin: 0 4px;
  }
  main {
    margin-top: 10px;
    padding: 8px;
  }
  h1, h2, p {
    margin: 6px 0;
  }
  .capa {
    height: auto;
    object-fit: contain;
    max-width: 100%;
  }
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 cards por linha no celular */
  }
}

/* Ícones de contato no rodapé */
.social-links img {
  width: 80px;   /* menor que os 140px dos cards */
  height: 80px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 15px #00ffff;
   display: block; /* elimina qualquer traço inline */
}

.social-links img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px #00ffff;
}

.social-links a {
  text-decoration: none;   /* remove sublinhado */
  border: none;            /* garante que não apareça linha */
}

.social-links {
  display: flex;           /* coloca lado a lado */
  justify-content: center; /* centraliza */
  gap: 20px;               /* espaço entre eles */
}
