/* ggbet - Estilos Cyberpunk Neon (2025) */

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

:root {
    --neon-green: #39ff14;
    --hot-pink: #ff1493;
    --cyber-blue: #00d9ff;
    --dark-bg: #0a0e27;
    --card-bg: #1a1f3a;
    --text-light: #e0e0e0;
    --text-white: #ffffff;
}

body {
    font-family: 'Rajdhani', 'Orbitron', sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a0033 100%);
    color: var(--text-light);
    line-height: 1.7;
}

/* Tipografia */
h1, h2, h3, h4 {
    font-weight: 700;
    color: var(--text-white);
    text-shadow: 0 0 20px var(--neon-green);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--neon-green), var(--hot-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 2.5rem;
    margin: 2.5rem 0 1.5rem;
    border-left: 5px solid var(--hot-pink);
    padding-left: 1.5rem;
}

h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--cyber-blue);
}

p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

/* Header */
header {
    background: rgba(26, 31, 58, 0.95);
    padding: 1.5rem 0;
    border-bottom: 2px solid var(--neon-green);
    box-shadow: 0 5px 30px rgba(57, 255, 20, 0.3);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.logo img {
    height: 70px;
    filter: drop-shadow(0 0 15px var(--neon-green));
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

nav a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
}

nav a:hover {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--hot-pink);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, var(--neon-green), var(--cyber-blue));
    color: var(--dark-bg) !important;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 0 20px var(--neon-green);
    transition: all 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--hot-pink);
}

/* Hero Section */
.hero {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-content {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.9), rgba(57, 255, 20, 0.1));
    padding: 4rem;
    border-radius: 20px;
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 40px rgba(57, 255, 20, 0.3);
}

.hero img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 2rem 0;
    border: 3px solid var(--hot-pink);
    box-shadow: 0 0 30px var(--hot-pink);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Seções */
section {
    margin: 5rem 0;
    padding: 3rem;
    background: rgba(26, 31, 58, 0.7);
    border-radius: 20px;
    border: 1px solid var(--cyber-blue);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.2);
}

/* Cards de Jogos */
.jogos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.jogo-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--neon-green);
    transition: all 0.3s;
    text-align: center;
}

.jogo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.4);
    border-color: var(--hot-pink);
}

.jogo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 2px solid var(--cyber-blue);
}

.jogo-card h3 {
    color: var(--neon-green);
    margin-bottom: 1rem;
}

/* Lista */
ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

ul li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--hot-pink);
    font-size: 0.9rem;
}

/* FAQ */
.faq-item {
    background: var(--card-bg);
    padding: 2rem;
    margin: 1.5rem 0;
    border-radius: 15px;
    border-left: 5px solid var(--neon-green);
    box-shadow: 0 5px 20px rgba(57, 255, 20, 0.2);
}

.faq-item h3 {
    color: var(--hot-pink);
    margin-bottom: 1rem;
}

/* Avaliações */
.avaliacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.avaliacao-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--cyber-blue);
    box-shadow: 0 5px 25px rgba(0, 217, 255, 0.2);
}

.avaliacao-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.avaliacao-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--neon-green);
}

.estrelas {
    color: #ffd700;
    font-size: 1.2rem;
}

/* Autor */
.autor-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--hot-pink);
    margin: 3rem 0;
}

.autor-info img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--neon-green);
    box-shadow: 0 0 20px var(--neon-green);
}

/* Footer */
footer {
    background: rgba(10, 14, 39, 0.95);
    padding: 3rem 2rem;
    margin-top: 5rem;
    border-top: 3px solid var(--hot-pink);
    text-align: center;
}

footer p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 0;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--cyber-blue);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Responsivo */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    nav ul {
        gap: 1rem;
        justify-content: center;
    }
    
    .jogos-grid,
    .avaliacoes-grid {
        grid-template-columns: 1fr;
    }
    
    .autor-info {
        flex-direction: column;
        text-align: center;
    }
}
