:root {
    --bg-main: #0B1713;
    --bg-surface: #162C22;
    --text-main: #F2F4F3;
    --text-secondary: #688075;
    --accent-primary: #F37021;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
}

a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--accent-primary);
}

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

/* Header */
.main-header {
    background-color: rgba(11, 23, 19, 0.95);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--bg-surface);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    background-color: var(--bg-main);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-placeholder {
    width: 40px;
    height: 40px;
    background-color: var(--accent-primary);
    color: var(--bg-main);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.5rem;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.logo-text {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    font-weight: 500;
}

.lang-switcher a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.lang-switcher a.active {
    color: var(--accent-primary);
    font-weight: bold;
}

/* Hero */
.hero {
    padding: 100px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: var(--text-main);
}

.btn-primary:hover {
    background-color: #d15d18;
    color: var(--text-main);
}

/* Games Section */
.games-section,
.about-section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.game-card {
    background-color: var(--bg-surface);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-image-placeholder {
    height: 200px;
    background-color: #0F1F18;
}

.game-info {
    padding: 20px;
}

.game-info h3 {
    margin-bottom: 10px;
}

.game-info p {
    color: var(--accent-primary);
    font-size: 0.9rem;
}

/* About */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 150%;
    /* Extrapola um pouco para o logo ficar bem grande */
    background-image: url('/assets/img/athanode-logo.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.05;
    /* Super sutil */
    pointer-events: none;
    z-index: 0;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Footer */
.main-footer {
    background-color: var(--bg-surface);
    padding: 40px 0 20px 0;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--bg-main);
    color: var(--text-secondary);
    font-size: 0.9rem;
}