/* style.css */
:root {
  /* Paleta de Cores - Modifique aqui! */
  --cor-fundo: #121212; /* Preto suave (Dark Mode) */
  --cor-texto: #e0e0e0;
  --cor-destaque: #00ff88; /* Verde Neon para botões */
  --cor-destaque-hover: #00cc6a;
  --cor-cartao: #1e1e1e;
  --fonte-principal: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background-color: var(--cor-fundo);
  color: var(--cor-texto);
  font-family: var(--fonte-principal);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Container Centralizado */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  width: 100%;
}

/* Header Simples */
header {
  text-align: center;
  padding: 40px 0;
  border-bottom: 1px solid #333;
}
header h1 { font-size: 2.5rem; margin-bottom: 10px; }
header p { opacity: 0.8; font-size: 1.1rem; }

/* Grid de Jogos (Para a Home) */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.game-card {
  background: var(--cor-cartao);
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.2s;
  border: 1px solid #333;
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: var(--cor-destaque);
}

/* Botões */
.btn {
  display: inline-block;
  background: var(--cor-destaque);
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  margin-top: 15px;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
}
.btn:hover { background: var(--cor-destaque-hover); }

/* Estilos da Landing Page do Jogo (Spoke) */
.hero-game {
  text-align: center;
  padding: 60px 20px;
}
.tag-badge {
  background: #333;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Formulário de Captura */
.cta-box {
  background: #252525;
  padding: 30px;
  border-radius: 10px;
  margin-top: 40px;
  text-align: center;
  border: 1px dashed var(--cor-destaque);
}
.form-input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
  border: 1px solid #444;
  background: #121212;
  color: white;
}

/* Rodapé */
footer {
  margin-top: auto;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #666;
}
