/* Buriedis - Unique Grid Layout */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Roboto:wght@300;400;500&display=swap');

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

:root {
    --primary-color: #8b0000;
    --secondary-color: #ff4444;
    --accent-color: #660066;
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --text-light: #f5f5f5;
    --text-muted: #999;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #0a0a0a;
    color: var(--text-light);
    line-height: 1.6;
}

/* Header */
header {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 20px rgba(139, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
}

.site-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: -5px;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-bottom: 2px solid transparent;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav a:hover,
nav a.active {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--secondary-color);
    transition: 0.3s;
}

/* Main Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, rgba(102, 0, 102, 0.1) 100%);
    border-radius: 15px;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 68, 68, 0.2);
}

.hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Grid Layout */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.grid-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 68, 68, 0.2);
    transition: all 0.3s ease;
}

.grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.3);
    border-color: var(--secondary-color);
}

.grid-card h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.grid-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.grid-card p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.grid-card ul,
.grid-card ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.grid-card li {
    margin-bottom: 0.5rem;
}

/* Full Width Card */
.full-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 68, 68, 0.2);
}

.full-card h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.full-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.full-card p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.full-card ul,
.full-card ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.full-card li {
    margin-bottom: 0.5rem;
}

/* Alert Box */
.alert-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 5px solid var(--secondary-color);
    box-shadow: 0 5px 25px rgba(139, 0, 0, 0.4);
}

.alert-box strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

/* Game Section */
.game-section {
    text-align: center;
    margin: 3rem 0;
}

.game-section iframe {
    width: 100%;
    max-width: 950px;
    height: 650px;
    border: 3px solid var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(255, 68, 68, 0.4);
}

/* Footer */
footer {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    margin-top: 4rem;
    border-top: 3px solid var(--secondary-color);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--secondary-color);
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-light);
}

/* Age Modal */
.age-verification {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-verification.show {
    display: flex;
}

.age-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    max-width: 550px;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 0 50px rgba(255, 68, 68, 0.5);
}

.age-box h2 {
    font-family: 'Oswald', sans-serif;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 3rem;
    text-transform: uppercase;
}

.age-box p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.age-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-actions button {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.btn-confirm {
    background: var(--secondary-color);
    color: #fff;
}

.btn-confirm:hover {
    background: var(--primary-color);
    transform: scale(1.05);
}

.btn-decline {
    background: #333;
    color: #fff;
}

.btn-decline:hover {
    background: #555;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    nav {
        display: none;
    }

    nav.active {
        display: block;
        width: 100%;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 68, 68, 0.2);
    }

    .hamburger {
        display: flex;
        position: absolute;
        top: 1.5rem;
        right: 2rem;
    }

    .site-logo h1 {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .game-section iframe {
        height: 450px;
    }

    .age-box {
        margin: 1rem;
        padding: 2rem;
    }

    .age-actions {
        flex-direction: column;
    }

    .age-actions button {
        width: 100%;
    }
}
