/* --- Cores vibrantes de EA Sports / Estilo Cyber-Game --- */
:root {
    --bg-dark: #0a0813;
    --bg-card: #141126;
    --neon-green: #00ff66;
    --neon-purple: #8a2be2;
    --neon-cyan: #00f0ff;
    --text-white: #ffffff;
    --text-gray: #8b88a5;
    --fifa-gold: linear-gradient(135deg, #ffe066 0%, #f5b041 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Space Grotesk', sans-serif;
    overflow-x: hidden;
}

/* --- Iluminação de Fundo --- */
.stadium-lights {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 600px;
    background: radial-gradient(circle at 50% -100px, rgba(0, 240, 255, 0.15) 0%, rgba(138, 43, 226, 0.05) 50%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

/* --- Header --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.logo {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.8rem;
    letter-spacing: -1px;
}
.logo span { color: #ec4899; }

nav a {
    color: var(--text-gray);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 700;
    transition: 0.3s;
}
nav a:hover { color: var(--text-white); text-shadow: 0 0 10px var(--neon-cyan); }

/* --- Hero Section --- */
main { max-width: 1300px; margin: 0 auto; padding: 0 5%; position: relative; z-index: 5; }

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    padding: 6rem 0;
    min-height: 80vh;
    flex-wrap: wrap;
}

.hero-content { flex: 1; min-width: 300px; }

.badge {
    background: rgba(0, 255, 102, 0.1);
    color: var(--neon-green);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 255, 102, 0.2);
}

.hero h1 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.text-neon { color: var(--neon-cyan); }

.hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

/* --- Botões Principais --- */
.cta-buttons { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem; }

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-twitch {
    background: var(--neon-purple);
    color: white !important;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
}
.btn-twitch:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(138, 43, 226, 0.5); }

.btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: white !important;
    background: rgba(255, 255, 255, 0.02);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-2px); }

/* --- Card do FIFA --- */
.card-fifa-container { 
    position: relative; 
    margin: 0 auto;
    width: 280px;
    height: 400px;
}

.card-fifa {
    width: 280px;
    height: 400px;
    background: var(--fifa-gold);
    position: relative;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6), 0 0 30px rgba(245, 176, 65, 0.2);
    padding: 20px;
}

.card-rating { position: absolute; top: 20px; left: 25px; font-size: 3rem; font-weight: 800; color: #1a1a1a; }
.card-position { position: absolute; top: 65px; left: 25px; font-size: 1.2rem; color: #333; font-weight: bold; }

.card-avatar {
    font-size: 6rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.card-name {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.8rem;
    color: #1a1a1a;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px 20px;
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: bold;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 10px;
    width: 80%;
}
.card-stats div { display: flex; justify-content: space-between; }
.card-stats span { color: #555; margin-right: 8px; font-weight: 400; }

/* --- Espaços para AdSense --- */
.ads-placeholder {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 2rem auto;
    border-radius: 8px;
    width: 100%;
}
.top-ad { max-width: 970px; height: 90px; }
.middle-ad { max-width: 728px; height: 90px; }

/* --- Seção de Downloads --- */
.downloads-section { padding: 4rem 0; }
.section-desc { text-align: center; color: var(--text-gray); margin-bottom: 3rem; font-size: 1.1rem; }

.grid-downloads {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.download-card {
    background: linear-gradient(145deg, #141126 0%, #0d0a1a 100%);
    border: 1px solid rgba(138, 43, 226, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.download-card:hover { transform: translateY(-5px); border-color: var(--neon-cyan); }
.dl-icon { font-size: 3rem; margin-bottom: 1rem; }
.download-card h3 { font-family: 'Archivo Black', sans-serif; margin-bottom: 0.5rem; font-size: 1.4rem; }
.download-card p { color: var(--text-gray); margin-bottom: 2rem; min-height: 70px; }

.btn-click {
    display: block;
    background: var(--neon-green);
    color: #0a0813 !important;
    text-decoration: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.2);
    transition: 0.2s;
}
.btn-click:hover { transform: scale(1.03); box-shadow: 0 0 30px rgba(0, 255, 102, 0.4); }
.btn-click span { font-size: 0.8rem; display: block; opacity: 0.8; }

/* --- Seção de Táticas --- */
.taticas-section { padding: 4rem 0; }
.taticas-section h2 { font-family: 'Archivo Black', sans-serif; font-size: 2.5rem; margin-bottom: 3rem; text-align: center;}

.grid-taticas { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }

.tatica-box {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: 16px;
    transition: border-color 0.3s;
}
.tatica-box:hover { border-color: var(--neon-purple); }
.tatica-box .icon { font-size: 2rem; margin-bottom: 1rem; }
.tatica-box h3 { margin-bottom: 0.5rem; font-size: 1.3rem; color: var(--neon-cyan); }
.tatica-box p { color: var(--text-gray); line-height: 1.6; }

/* --- Footer --- */
footer { text-align: center; padding: 3rem 5%; color: var(--text-gray); font-size: 0.85rem; border-top: 1px solid rgba(255,255,255,0.05); margin-top: 4rem; }