@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Roboto:wght@300;400;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: #0b0b0b;
    color: white;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- NAVBAR (ESTILO ORIGEMZ/TEMPESTYZ) --- */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 3px solid #ff3e3e;
    height: 90px;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between; /* Logo na esquerda, resto na direita */
    align-items: center;
    width: 100%;
}

.logo img { 
    height: 60px; 
    filter: drop-shadow(0 0 5px rgba(255, 62, 62, 0.5));
}

/* Agrupamento do Menu + Login para a Direita */
.nav-right-side {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav ul { display: flex; list-style: none; align-items: center; }
nav ul li a {
    color: white;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    padding: 0 15px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}
nav ul li a:hover { color: #ff3e3e; }

/* --- BOTÃO STEAM CINZA (TOP RIGHT) --- */
.btn-steam-top {
    background: #2a2a2a;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid #444;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-steam-top i { font-size: 18px; }
.btn-steam-top:hover { 
    background: #3d3d3d; 
    border-color: #ff3e3e;
    transform: translateY(-2px);
}

/* --- ÁREA LOGADO --- */
.user-logged { text-align: right; }
.user-id { display: block; font-size: 12px; color: #ff3e3e; font-weight: bold; font-family: 'Oswald'; }
.logout-link { color: #888; font-size: 10px; text-decoration: none; text-transform: uppercase; }
.logout-link:hover { color: white; }


/* --- HERO SECTION (BANNER) --- */
.hero {
    height: 100vh;
    background: url('../img/background_dayz.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    background-position: center bottom; /* Fixa a imagem no rodapé da seção */
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 10%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 75px;
    line-height: 0.9;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-content h1 span { color: #ff3e3e; }

.hero-content p {
    font-size: 18px;
    color: #dfdfdf;
    max-width: 650px;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* --- BOTOES HERO --- */
.hero-buttons { display: flex; flex-direction: column; gap: 15px; width: 480px; }

.btn-discord, .btn-steam-main {
    padding: 18px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-discord { background: #5865F2; color: white; }
.btn-discord:hover { background: #4752c4; transform: translateX(10px); }

.btn-steam-main { 
    background: #1b2838; 
    color: white; 
    border: 1px solid #2a475e;
}
.btn-steam-main:hover { 
    background: #2a475e; 
    transform: translateX(10px);
    border-color: #ff3e3e;
}

/* --- BALANCE CARD (COINS PAGE) --- */
.balance-card {
    background: rgba(0, 0, 0, 0.7);
    padding: 25px;
    border-left: 5px solid #ff3e3e;
    border-radius: 8px;
    display: inline-block;
}
.balance-card small { color: #aaa; text-transform: uppercase; letter-spacing: 1px; }
.balance-card h2 { color: #4caf50; font-size: 40px; font-family: 'Oswald'; }

/* Ajustes responsivos básicos */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 45px; }
    .hero-buttons { width: 100%; }
    .nav-right-side { display: none; } /* Menu hamburguer seria necessário aqui */
}

