@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, #1a0033 0%, #4a0080 100%);
    color: #e0e0e0;
    min-height: 100vh;
}

header {
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffd700;
    text-decoration: none;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.nav-toggle {
    display: none;
    background: none;
    border: 2px solid #ffd700;
    color: #ffd700;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
}

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

nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

nav a:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

h1 {
    font-size: 3.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

h2 {
    font-size: 2rem;
    color: #ffd700;
    margin: 2rem 0 1rem;
}

.subtitle {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.game-container {
    width: 100%;
    max-width: 1000px;
    margin: 3rem auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(255, 215, 0, 0.3);
}

.game-container iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.info-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 5px solid #ffd700;
}

.warning-box {
    background: rgba(255, 100, 100, 0.1);
    border: 2px solid #ff6464;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.warning-box h3 {
    color: #ff6464;
    margin-bottom: 1rem;
}

.content-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    line-height: 1.8;
}

footer {
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    margin-top: 4rem;
    text-align: center;
}

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

.footer-links a {
    color: #ffd700;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.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-modal-content {
    background: linear-gradient(135deg, #2a0055 0%, #6a00cc 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 3px solid #ffd700;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
}

.age-modal h2 {
    margin-top: 0;
}

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

.age-btn {
    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;
}

.age-btn.yes {
    background: #ffd700;
    color: #1a0033;
}

.age-btn.yes:hover {
    background: #ffed4e;
    transform: scale(1.05);
}

.age-btn.no {
    background: #ff6464;
    color: white;
}

.age-btn.no:hover {
    background: #ff3030;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        transition: left 0.3s;
        padding: 2rem;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    nav a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .game-container iframe {
        height: 500px;
    }
    
    .age-modal-content {
        margin: 1rem;
        padding: 2rem;
    }
    
    .age-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}
