:root {
    --primary: #6E00FF;
    --primary-dark: #4A00B3;
    --primary-light: #B069DB;
    --text: #333;
    --text-light: #666;
    --bg: #f8f9fa;
    --card-bg: #fff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 2rem 0;
    text-align: center;
    box-shadow: var(--shadow);
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 1rem;
    list-style: none;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 500;
    background-color: rgba(255, 255, 255, 0.1);
}

nav a:hover, nav a.active {
    background-color: rgba(255, 255, 255, 0.2);
}

.destaque-jogo {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: var(--card);
    border-radius: 12px;
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.destaque-conteudo {
    flex: 1;
}

.destaque-jogo h2 {
    font-size: 1.8rem;
    color: var(--roxo-escuro);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.destaque-texto {
    color: var(--texto-claro);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.destaque-metadados {
    display: flex;
    gap: 1rem;
    margin: 1.8rem 0;
}

.destaque-metadados span {
    background: rgba(110, 0, 255, 0.1);
    color: var(--roxo-principal);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.destaque-capa {
    width: 320px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* DESTAQUE MÚSICA */
.destaque-musica {
    background: var(--card);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    text-align: center;
}

.destaque-musica h2 {
    font-size: 1.8rem;
    color: var(--roxo-escuro);
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
}

.musica-desc {
    color: var(--texto-claro);
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.player-musica {
    background: rgba(110, 0, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    margin: 2rem auto;
    max-width: 600px;
    border: 1px solid rgba(110, 0, 255, 0.1);
}

/* BOTÕES */
.botao-destaque {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 2rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.botao-destaque:hover {
    background: transparent;
    color: var(--roxo-principal);
    border-color: var(--roxo-principal);
}

.botao-secundario:hover {
    background: var(--roxo-principal);
    color: white;
}

footer {
    background: var(--primary-dark);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

footer p {
    margin-bottom: 1rem;
}

.links-uteis {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.links-uteis a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.links-uteis a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .destaque-jogo {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .destaque-metadados {
        justify-content: center;
    }

    .destaque-capa {
        width: 100%;
        max-width: 300px;
    }

    nav ul {
        flex-wrap: wrap;
    }
}

/* SEÇÃO MAIS JOGOS */
.mais-jogos {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.mais-jogos h2 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    justify-content: center;
}

.subtitulo {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2rem;
}

.jogos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.jogo-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.jogo-card:hover {
    transform: translateY(-5px);
}

.jogo-capa {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.jogo-info {
    padding: 1.5rem;
}

.jogo-info h3 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.jogo-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.jogo-metadados {
    display: flex;
    gap: 0.8rem;
    margin: 1rem 0;
}

.jogo-metadados span {
    background: rgba(110, 0, 255, 0.1);
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.botao-jogo {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.botao-jogo:hover {
    background: var(--primary-dark);
}

@media (max-width: 768px) {
    .jogos-grid {
        grid-template-columns: 1fr;
    }
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}