@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ff6b35;
    --secondary: #1a1a2e;
    --accent: #16213e;
    --text: #e8e8e8;
    --highlight: #0f3460;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.6;
}

/* Age Verification Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-content {
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 3px solid var(--primary);
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.5);
}

.age-content h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.age-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-btn {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.age-btn.yes {
    background: var(--primary);
    color: white;
}

.age-btn.yes:hover {
    background: #ff8555;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.age-btn.no {
    background: #555;
    color: white;
}

.age-btn.no:hover {
    background: #777;
}

/* Header */
header {
    background: rgba(26, 26, 46, 0.95);
    padding: 1.5rem 2rem;
    border-bottom: 3px solid var(--primary);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 50px;
    height: 50px;
}

.site-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Desktop Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s;
}

/* Main Content */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero {
    background: rgba(15, 52, 96, 0.5);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 2px solid var(--primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero h1 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.notice-box {
    background: rgba(255, 107, 53, 0.1);
    border-left: 5px solid var(--primary);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 10px;
}

.notice-box h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.notice-box ul {
    list-style: none;
    padding-left: 1rem;
}

.notice-box li {
    margin: 0.8rem 0;
    font-size: 1.1rem;
    padding-left: 1.5rem;
    position: relative;
}

.notice-box li:before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.game-container {
    margin: 3rem 0;
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--primary);
}

.game-container h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.game-wrapper {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.game-wrapper iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.content-section {
    background: rgba(15, 52, 96, 0.3);
    padding: 2.5rem;
    margin: 2rem 0;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.content-section h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-section h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.content-section p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.content-section ul, .content-section ol {
    margin: 1rem 0 1rem 2rem;
}

.content-section li {
    margin: 0.5rem 0;
    line-height: 1.7;
}

/* Footer */
footer {
    background: rgba(26, 26, 46, 0.95);
    border-top: 3px solid var(--primary);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-content h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
    border-radius: 8px;
}

.footer-links a:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.footer-disclaimer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.3);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 26, 46, 0.98);
        padding: 2rem;
        border-top: 2px solid var(--primary);
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 2rem;
    }
    
    .site-title {
        font-size: 1.3rem;
    }
    
    .age-content {
        padding: 2rem;
        margin: 1rem;
    }
    
    .age-content h2 {
        font-size: 1.8rem;
    }
    
    .game-wrapper iframe {
        height: 400px;
    }
}
