@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #e5e5e5;
    min-height: 100vh;
    line-height: 1.6;
}

/* Header Styles */
header {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #00d4ff;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    color: #00d4ff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #00d4ff;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li a {
    color: #e5e5e5;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

nav ul li a:hover {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
}

/* Main Content */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-section {
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.hero-section h1 {
    font-size: 3.5rem;
    color: #00d4ff;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.hero-section p {
    font-size: 1.3rem;
    color: #a0a0a0;
}

.content-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
}

.content-section h2 {
    color: #00d4ff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.content-section h3 {
    color: #00d4ff;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section p, .content-section ul {
    margin-bottom: 1rem;
    color: #d0d0d0;
    font-size: 1.05rem;
}

.content-section ul {
    padding-left: 2rem;
}

.content-section ul li {
    margin-bottom: 0.5rem;
}

.notice-box {
    background: rgba(255, 100, 100, 0.1);
    border: 2px solid #ff6464;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
}

.notice-box h3 {
    color: #ff6464;
    margin-top: 0;
}

.notice-box ul {
    list-style: none;
    padding-left: 0;
}

.notice-box ul li {
    padding: 0.5rem 0;
    color: #ffb4b4;
    font-weight: 700;
}

.notice-box ul li:before {
    content: "⚠ ";
    margin-right: 0.5rem;
}

/* Game Container */
.game-container {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid #00d4ff;
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.game-container h2 {
    color: #00d4ff;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.game-frame {
    width: 100%;
    max-width: 900px;
    height: 600px;
    border: none;
    border-radius: 10px;
    margin: 0 auto;
    display: block;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.6);
    border-top: 2px solid #00d4ff;
    padding: 3rem 2rem;
    margin-top: 5rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-container h3 {
    color: #00d4ff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.responsible-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.responsible-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.1rem;
}

.responsible-links a:hover {
    color: #00d4ff;
}

.footer-nav {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.3);
}

.footer-nav a {
    color: #a0a0a0;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #00d4ff;
}

/* 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: 9999;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    border: 3px solid #00d4ff;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.5);
}

.age-modal-content h2 {
    color: #00d4ff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.age-modal-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #d0d0d0;
}

.age-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-buttons button {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-yes {
    background: #00d4ff;
    color: #1a1a2e;
}

.btn-yes:hover {
    background: #00a8cc;
    transform: scale(1.05);
}

.btn-no {
    background: #ff6464;
    color: #fff;
}

.btn-no:hover {
    background: #cc5050;
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    nav.active {
        max-height: 500px;
        border-bottom: 2px solid #00d4ff;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }

    nav ul li {
        width: 100%;
        text-align: center;
    }

    nav ul li a {
        display: block;
        padding: 1rem;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .content-section {
        padding: 1.5rem;
    }

    .game-frame {
        height: 400px;
    }

    .responsible-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-nav a {
        display: block;
        margin: 0.5rem 0;
    }

    .age-modal-content {
        margin: 1rem;
        padding: 2rem;
    }

    .age-buttons {
        flex-direction: column;
    }
}