:root {
    --gold: #d4af37;
    --dark-bg: #0d0d0d;
    --glass: rgba(255, 255, 255, 0.07);
}

body {
    margin: 0;
    background: var(--dark-bg) url('https://www.transparenttextures.com/patterns/dark-leather.png');
    color: white;
    font-family: 'Roboto', sans-serif;
}

.header-top-bar {
    display: flex;
    justify-content: space-between;
    padding: 15px 5%;
    background: rgba(0,0,0,0.8);
    border-bottom: 1px solid var(--gold);
}

.top-menu a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    font-family: 'Cinzel';
    font-size: 0.9em;
}

.game-header-banner {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1518709268805-4e9042af9f23?q=80&w=1500&auto=format&fit=crop');
    background-size: cover;
    border-radius: 0 0 50px 50px;
    border-bottom: 2px solid var(--gold);
}

.main-logo {
    font-family: 'Cinzel';
    font-size: 4em;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    margin: 0;
}

.btn-action {
    display: inline-block;
    padding: 15px 35px;
    margin: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Cinzel';
    transition: 0.3s;
}

.primary { background: var(--gold); color: black; }
.secondary { border: 1px solid var(--gold); color: var(--gold); }

.world-stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: -50px auto 50px;
    padding: 0 20px;
}

.stat-card {
    background: var(--glass);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2em;
    color: var(--gold);
    font-weight: bold;
}