/* Variáveis de Paleta de Cores e Fontes */
:root {
    --bg-dark: #0a080d;
    --bg-card: rgba(20, 16, 28, 0.85); /* Levemente mais escuro para contraste com o vídeo */
    --primary-color: #ff6a00; /* Laranja Goku */
    --secondary-color: #ffb300; /* Amarelo Ki */
    --accent-purple: #8257e5; /* Roxo Xeno Trunks */
    --text-color: #f5f5f7;
    --text-muted: #a09cb0;
    --font-heading: 'Kanit', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

/* Reset e Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Container do Vídeo de Fundo --- */
.video-background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2; /* Fica atrás de absolutamente tudo */
    overflow: hidden;
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que o vídeo se adapte sem distorcer em qualquer tela/celular */
    filter: blur(4px); /* Adiciona um desfoque suave no próprio vídeo para destacar o conteúdo */
}

/* --- Overlay Escuro e Transparente --- */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradiente preto transparente muito mais forte para escurecer o vídeo de fundo */
    /*background: linear-gradient(
        180deg, 
        rgba(10, 8, 13, 0.9) 0%, 
        rgba(10, 8, 13, 0.75) 50%, 
        rgba(10, 8, 13, 0.95) 100%
    );*/
    background-color: rgba(10, 8, 13, 0.65); /* Camada extra de segurança de cor escura */
}

/* Efeito de Aura de Energia ao fundo */
.energy-aura {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% -20%, rgba(255, 106, 0, 0.12) 0%, rgba(130, 87, 229, 0.04) 50%, rgba(0,0,0,0) 100%);
    pointer-events: none;
    z-index: -1;
}

/* Header */
.main-header {
    background: rgba(10, 8, 13, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 106, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    height: 50px;
    filter: drop-shadow(0 0 10px rgba(255, 106, 0, 0.5));
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    margin-left: 20px;
    font-family: var(--font-heading);
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu .nav-discord {
    background: var(--accent-purple);
    padding: 8px 16px;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(130, 87, 225, 0.4);
}

.nav-menu .nav-discord:hover {
    background: #6f42c1;
    color: #fff;
}

/* Hero Section */
.hero {
    padding: 100px 0 80px 0;
    text-align: center;
    position: relative;
}

.badge {
    background: rgba(130, 87, 229, 0.2);
    border: 1px solid var(--accent-purple);
    color: #dfd5ff;
    padding: 6px 15px;
    border-radius: 50px;
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

/* Título Principal com sombra de contraste */
.game-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
    letter-spacing: -1px;
    /* Sombra preta suave projetada para destacar as letras brancas */
    /*text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.9);*/
}

.highlight-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 20px rgba(255, 106, 0, 0.3));
}

/* Slogan com sombra de contraste */
.game-slogan {
    font-size: 1.2rem;
    color: var(--text-color); /* Branco suave para melhor leitura */
    max-width: 600px;
    margin: 0 auto 40px auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

/* CTAs chamativos e Mobile-First */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.btn-play, .btn-discord {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.btn-play {
    background: linear-gradient(135deg, #ff6a00 0%, #ff4500 100%);
    color: #fff;
    box-shadow: 0 8px 30px rgba(255, 106, 0, 0.4);
    border: 2px solid #ffaa66;
}

.btn-play small, .btn-discord small {
    font-size: 0.75rem;
    font-family: var(--font-body);
    font-weight: 400;
    opacity: 0.9;
    margin-top: 2px;
}

.btn-discord {
    background: #5865F2;
    color: #fff;
    box-shadow: 0 8px 30px rgba(88, 101, 242, 0.3);
    border: 2px solid #8a94f8;
}

.btn-play:hover, .btn-discord:hover {
    transform: translateY(-3px);
}

.btn-play:hover {
    box-shadow: 0 12px 35px rgba(255, 106, 0, 0.6);
}

/* Efeito de brilho passando no botão de Jogar */
.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

/* Seção de Features */
.features-section {
    padding: 80px 0;
    background: transparent; /* Permite ver o vídeo de fundo fluindo pelas seções */
}

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 50px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.orange {
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(10px); /* Aumenta o desfoque do vídeo atrás do card */
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 106, 0, 0.3);
}

.feature-card.highlighted {
    border: 1px solid rgba(130, 87, 229, 0.4);
    box-shadow: 0 0 30px rgba(130, 87, 229, 0.15);
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 60px;
    margin-bottom: 15px;
}

/* Estilização para as Imagens dos Ícones personalizados */
.custom-icon {
    height: 100%;
    width: auto;
    max-width: 60px; /* Ajuste para o tamanho ideal dos seus ícones */
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255, 106, 0, 0.4)); /* Brilho de energia suave */
    transition: transform 0.3s ease;
}

.feature-card.highlighted .custom-icon {
    filter: drop-shadow(0 0 10px rgba(130, 87, 229, 0.5)); /* Brilho com o tom roxo do Trunks */
}

.feature-card:hover .custom-icon {
    transform: scale(1.1); /* Ícone pulsa levemente no hover */
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 10px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Footer */
.main-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
    position: relative;
    background-color: rgba(10, 8, 13, 0.9);
}

.footer-content p {
    margin-bottom: 10px;
}

.disclaimer {
    color: #615e6f;
    font-size: 0.75rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Animações Keyframes */
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.03); opacity: 1; }
    100% { transform: scale(1); opacity: 0.9; }
}

@keyframes shine {
    0% { left: -100%; }
    30% { left: 150%; }
    100% { left: 150%; }
}

/* Responsividade (Telas de Tablets e Computadores) */
@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cta-buttons {
        flex-direction: row;
        max-width: 650px;
    }

    .btn-play, .btn-discord {
        flex: 1;
    }

    .game-title {
        font-size: 5rem;
    }
}