@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;600;700&family=Lato:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #fafafa;
    --bg-secondary: #ffffff;
    --text-primary: #2c2c2c;
    --text-secondary: #666666;
    --accent: #d4af37;
    --accent-dark: #b8941f;
    --border: #e0e0e0;
}

body {
    font-family: 'Lato', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
}

/* Navigation */
.main-nav {
    background: var(--bg-secondary);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: lowercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: lowercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    font-weight: 400;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent);
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border);
    padding: 0.5rem 1rem;
    cursor: pointer;
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
    text-align: center;
}

.hero h1 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 4rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 2rem;
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-accent {
    color: var(--accent);
    font-weight: 600;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    font-weight: 300;
}

/* Info Grid */
.info-grid {
    max-width: 1200px;
    margin: 8rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.info-item {
    text-align: center;
    padding: 2rem 0;
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.info-item h3 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent);
    text-transform: lowercase;
}

.info-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 300;
}

/* Content Section */
.content-section {
    max-width: 800px;
    margin: 8rem auto;
    padding: 0 2rem;
}

.content-section h2 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.5px;
}

.content-section h3 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
    margin: 3rem 0 1.5rem;
    text-transform: lowercase;
}

.content-section p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.content-section ul {
    padding-left: 2rem;
    margin-bottom: 2rem;
}

.content-section li {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    font-weight: 300;
}

/* Game Section */
.game-section {
    max-width: 1400px;
    margin: 8rem auto;
    padding: 0 2rem;
}

.game-header {
    text-align: center;
    margin-bottom: 4rem;
}

.game-header h2 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.game-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 300;
}

.game-container {
    background: var(--bg-secondary);
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.game-embed {
    width: 100%;
    height: 700px;
    border: none;
    background: #000;
}

/* Divider */
.divider {
    max-width: 1200px;
    margin: 8rem auto;
    height: 1px;
    background: var(--border);
}

/* Footer */
.site-footer {
    background: var(--bg-secondary);
    padding: 4rem 2rem 3rem;
    margin-top: 8rem;
    border-top: 1px solid var(--border);
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: lowercase;
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 2rem;
    font-weight: 300;
}

/* Age Modal */
.age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(250, 250, 250, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-overlay.hidden {
    display: none;
}

.age-dialog {
    background: var(--bg-secondary);
    padding: 5rem 4rem;
    border: 1px solid var(--border);
    max-width: 550px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.age-dialog h2 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.age-dialog p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 300;
}

.age-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-actions button {
    padding: 1rem 3rem;
    border: 1px solid var(--border);
    background: transparent;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: lowercase;
    letter-spacing: 1px;
}

.btn-confirm {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.btn-confirm:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

.btn-decline {
    color: var(--text-primary);
}

.btn-decline:hover {
    border-color: var(--text-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: var(--bg-secondary);
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        border-bottom: 1px solid var(--border);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin: 4rem auto;
    }
    
    .content-section,
    .game-section {
        margin: 4rem auto;
    }
    
    .game-embed {
        height: 500px;
    }
    
    .age-dialog {
        margin: 2rem;
        padding: 3rem 2rem;
    }
    
    .age-actions {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
