@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:wght@300;400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #ffd700;
    --dark-gold: #ff8c00;
    --crimson: #8b0000;
    --dark-red: #5c0000;
    --cream: #fffaf0;
    --black: #1a1a1a;
}

body {
    font-family: 'Roboto', sans-serif;
    background: radial-gradient(circle at top, var(--crimson), var(--dark-red));
    color: var(--cream);
    min-height: 100vh;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
}

/* Age Verification Modal */
.age-modal {
    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-modal.active {
    display: flex;
}

.age-content {
    background: linear-gradient(135deg, var(--dark-red), var(--crimson));
    padding: 3.5rem;
    border-radius: 15px;
    text-align: center;
    max-width: 550px;
    border: 5px solid var(--gold);
    box-shadow: 0 0 80px rgba(255, 215, 0, 0.6);
}

.age-content h2 {
    color: var(--gold);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 3px;
}

.age-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 2;
    color: var(--cream);
}

.age-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.age-btn {
    padding: 1.3rem 3.5rem;
    font-size: 1.4rem;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.age-btn.yes {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
    font-weight: bold;
}

.age-btn.yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.age-btn.no {
    background: #444;
    color: var(--cream);
}

.age-btn.no:hover {
    background: #666;
}

/* Header */
header {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    padding: 2rem 3rem;
    border-bottom: 4px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    width: 60px;
    height: 60px;
}

.site-title {
    font-size: 3.5rem;
    font-family: 'Bebas Neue', cursive;
    color: var(--gold);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    letter-spacing: 4px;
}

/* Desktop Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
}

nav a:hover {
    color: var(--gold);
    border-bottom: 2px solid var(--gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 7px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 35px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Main Content */
main {
    max-width: 1300px;
    margin: 0 auto;
    padding: 3.5rem 2.5rem;
}

.hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(139, 0, 0, 0.5));
    padding: 4rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    border: 3px solid var(--gold);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--gold);
    margin-bottom: 2rem;
    font-family: 'Bebas Neue', cursive;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: 3px;
}

.hero p {
    font-size: 1.3rem;
    line-height: 2;
    margin-bottom: 1.5rem;
}

.notice-box {
    background: rgba(255, 215, 0, 0.08);
    border: 4px solid var(--gold);
    padding: 3rem;
    margin: 3rem 0;
    border-radius: 10px;
    box-shadow: inset 0 0 30px rgba(255, 215, 0, 0.1);
}

.notice-box h3 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 3px;
}

.notice-box ul {
    list-style: none;
    padding-left: 0;
}

.notice-box li {
    margin: 1.3rem 0;
    font-size: 1.2rem;
    padding-left: 2.5rem;
    position: relative;
}

.notice-box li:before {
    content: "★";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.8rem;
}

.game-container {
    margin: 3rem 0;
    background: rgba(0, 0, 0, 0.6);
    padding: 3.5rem;
    border-radius: 10px;
    border: 3px solid var(--gold);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.game-container h2 {
    color: var(--gold);
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
    font-family: 'Bebas Neue', cursive;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    letter-spacing: 3px;
}

.game-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--dark-gold);
}

.game-wrapper iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.content-section {
    background: rgba(0, 0, 0, 0.5);
    padding: 3.5rem;
    margin: 3rem 0;
    border-radius: 10px;
    border-left: 8px solid var(--gold);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.content-section h2 {
    color: var(--gold);
    font-size: 3rem;
    margin-bottom: 2rem;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 3px;
}

.content-section h3 {
    color: var(--dark-gold);
    font-size: 2.2rem;
    margin: 2.5rem 0 1.5rem;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
}

.content-section p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    line-height: 2;
}

.content-section ul, .content-section ol {
    margin: 1.5rem 0 2rem 3rem;
}

.content-section li {
    margin: 1rem 0;
    line-height: 1.9;
}

/* Footer */
footer {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
    border-top: 4px solid var(--gold);
    padding: 4rem 2.5rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.footer-content h3 {
    color: var(--gold);
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 3px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s;
    padding: 1rem 2rem;
    border: 3px solid var(--gold);
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a:hover {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.footer-disclaimer {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 2px solid var(--gold);
    font-size: 1rem;
    opacity: 0.85;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        padding: 2rem;
        border-top: 3px solid var(--gold);
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    nav a {
        display: block;
        padding: 1.5rem;
        border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero {
        padding: 2.5rem;
    }
    
    .site-title {
        font-size: 2rem;
    }
    
    .age-content {
        padding: 2.5rem;
        margin: 1rem;
    }
    
    .age-content h2 {
        font-size: 2.5rem;
    }
    
    .game-wrapper iframe {
        height: 500px;
    }

    header {
        padding: 1.5rem 2rem;
    }

    .content-section, .game-container, .notice-box {
        padding: 2rem;
    }
}
