:root {
    --color-background: #121212;
    --color-surface: #1e1e1e;
    --color-primary: #c5a861;
    --color-text: #e0e0e0;
    --color-text-secondary: #a0a0a0;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-background);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Seções --- */
.content-section {
    padding: 80px 0;
    text-align: center;
}

.content-section h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.content-section p {
    max-width: 600px;
    margin: 0 auto 20px auto;
    color: var(--color-text-secondary);
}

.dark-bg {
    background-color: #0d0d0d;
}

/* --- 1. Hero --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: white;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::after { /* Overlay escuro */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.hero-content {
    z-index: 1;
}

.logo {
    font-family: var(--font-heading);
    font-size: 5rem;
    letter-spacing: 5px;
    color: white;
}

.tagline {
    font-size: 1.2rem;
    margin-top: -10px;
    margin-bottom: 30px;
    color: var(--color-text-secondary);
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--color-primary);
    color: var(--color-background);
}

/* --- 3. Games --- */
.game-card {
    display: flex;
    background-color: var(--color-surface);
    margin-top: 40px;
    text-align: left;
    border-radius: 5px;
    overflow: hidden;
}

.game-image img {
    width: 350px;
    height: 100%;
    object-fit: cover;
}

.game-info {
    padding: 40px;
}

.game-info h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
}

.status {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-background);
    padding: 3px 10px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 10px;
    margin-bottom: 20px;
}

.learn-more {
    display: inline-block;
    margin-top: 20px;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: bold;
}

/* --- 4. Team --- */
.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.member {
    background-color: var(--color-surface);
    padding: 15px 30px;
    border-radius: 5px;
}

/* --- 5. Contact --- */
.social-links {
    margin-top: 40px;
}

.social-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--color-primary);
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    background-color: #0d0d0d;
}

/* --- Responsividade --- */
@media (max-width: 768px) {
    .logo {
        font-size: 3rem;
    }

    .content-section h2 {
        font-size: 2.5rem;
    }

    .game-card {
        flex-direction: column;
    }

    .game-image img {
        width: 100%;
        height: 200px;
    }
}