@import url('https://fonts.googleapis.com/css2?family=Creepster&family=Nosifer&family=Special+Elite&display=swap');

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

:root {
    --primary-color: #8b0000;
    --secondary-color: #ff6b00;
    --dark-bg: #1a0a0a;
    --card-bg: #2d1414;
    --text-color: #e8d4c4;
    --accent: #ffcc00;
}

body {
    font-family: 'Special Elite', cursive;
    background: #1a0a0a;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 0, 0.1) 0%, transparent 50%);
    color: var(--text-color);
    line-height: 1.7;
    min-height: 100vh;
}

/* Header */
header {
    background: linear-gradient(180deg, rgba(139, 0, 0, 0.8) 0%, rgba(45, 20, 20, 0.9) 100%);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--secondary-color);
    box-shadow: 0 5px 30px rgba(139, 0, 0, 0.5);
}

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

.logo {
    font-family: 'Nosifer', cursive;
    font-size: 2.2rem;
    color: var(--secondary-color);
    text-decoration: none;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 107, 0, 0.6);
    letter-spacing: 3px;
}

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

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.6rem 1.2rem;
    border: 2px solid transparent;
    border-radius: 8px;
}

nav ul li a:hover {
    color: var(--accent);
    border-color: var(--secondary-color);
    background: rgba(139, 0, 0, 0.3);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 32px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
    transition: 0.3s;
}

/* Main Content */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 20px;
}

.page-title {
    font-family: 'Creepster', cursive;
    font-size: 4rem;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 107, 0, 0.4);
    letter-spacing: 4px;
}

.page-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #d4a574;
    margin-bottom: 3rem;
    font-style: italic;
}

/* Content Sections */
.content-box {
    background: linear-gradient(135deg, rgba(45, 20, 20, 0.9), rgba(26, 10, 10, 0.95));
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), inset 0 0 30px rgba(139, 0, 0, 0.2);
}

.content-box h2 {
    font-family: 'Creepster', cursive;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.content-box h3 {
    font-family: 'Creepster', cursive;
    font-size: 1.8rem;
    color: var(--accent);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-box p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.content-box ul {
    margin: 1rem 0 1.5rem 2.5rem;
    line-height: 2;
}

/* Warning Boxes */
.warning-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.warning-box {
    background: rgba(139, 0, 0, 0.3);
    border: 3px solid var(--accent);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 0 25px rgba(255, 204, 0, 0.3);
}

.warning-box h3 {
    font-family: 'Creepster', cursive;
    color: var(--accent);
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
}

.warning-box p {
    margin: 0;
    font-size: 1rem;
}

/* Game Frame */
.game-frame {
    background: #000;
    border: 4px solid var(--primary-color);
    border-radius: 12px;
    padding: 1.2rem;
    margin: 2.5rem 0;
    box-shadow: 0 0 50px rgba(139, 0, 0, 0.6), inset 0 0 20px rgba(255, 107, 0, 0.2);
}

.game-frame iframe {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 8px;
}

/* Footer */
footer {
    background: linear-gradient(180deg, rgba(45, 20, 20, 0.9) 0%, rgba(139, 0, 0, 0.8) 100%);
    padding: 3rem 0;
    margin-top: 4rem;
    border-top: 3px solid var(--secondary-color);
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-wrapper h3 {
    font-family: 'Creepster', cursive;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    background: rgba(139, 0, 0, 0.2);
}

.footer-links a:hover {
    background: var(--secondary-color);
    color: #000;
    border-color: var(--accent);
    transform: scale(1.05);
}

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

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

.age-content {
    background: linear-gradient(135deg, rgba(45, 20, 20, 0.98), rgba(26, 10, 10, 0.98));
    padding: 3.5rem;
    border-radius: 15px;
    text-align: center;
    max-width: 550px;
    border: 4px solid var(--secondary-color);
    box-shadow: 0 0 80px rgba(255, 107, 0, 0.5);
}

.age-content h2 {
    font-family: 'Creepster', cursive;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.age-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.age-btn-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.age-btn-container button {
    padding: 1.2rem 3.5rem;
    font-size: 1.2rem;
    font-family: 'Creepster', cursive;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 2px;
}

.btn-accept {
    background: var(--secondary-color);
    color: #000;
}

.btn-accept:hover {
    background: var(--accent);
    transform: scale(1.08);
}

.btn-decline {
    background: #555;
    color: var(--text-color);
}

.btn-decline:hover {
    background: #333;
    transform: scale(1.08);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: rgba(45, 20, 20, 0.98);
        transition: 0.4s;
        padding-top: 6rem;
        border-left: 3px solid var(--secondary-color);
    }

    nav.open {
        right: 0;
    }

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

    nav ul li {
        border-bottom: 2px solid rgba(139, 0, 0, 0.5);
    }

    nav ul li a {
        display: block;
        padding: 1.5rem;
    }

    .logo {
        font-size: 1.6rem;
    }

    .page-title {
        font-size: 2.8rem;
    }

    .warning-container {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }

    .age-content {
        margin: 1.5rem;
        padding: 2.5rem;
    }

    .age-btn-container {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .content-box {
        padding: 1.8rem;
    }
}
