@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #2a1f3a 100%);
    color: #e0e0e0;
    min-height: 100vh;
    line-height: 1.6;
}

header {
    background: rgba(10, 14, 39, 0.95);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(138, 43, 226, 0.3);
    border-bottom: 2px solid #8a2be2;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: #8a2be2;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.8);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

nav a:hover {
    color: #8a2be2;
    background: rgba(138, 43, 226, 0.1);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #8a2be2;
    transition: all 0.3s ease;
    border-radius: 2px;
}

main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(75, 0, 130, 0.1) 100%);
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 2px solid rgba(138, 43, 226, 0.3);
    box-shadow: 0 8px 32px rgba(138, 43, 226, 0.2);
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #8a2be2;
    text-shadow: 0 0 30px rgba(138, 43, 226, 0.6);
    font-weight: 900;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #b8b8d0;
}

.content-card {
    background: rgba(26, 31, 58, 0.6);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(138, 43, 226, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(138, 43, 226, 0.4);
}

.content-card h2 {
    color: #8a2be2;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
}

.notice-box {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.15) 0%, rgba(255, 140, 0, 0.15) 100%);
    border-left: 4px solid #ff4500;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 10px;
}

.notice-box h3 {
    color: #ff8c00;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.game-container {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(10, 14, 39, 0.5);
    border-radius: 15px;
    border: 2px solid rgba(138, 43, 226, 0.3);
}

.game-container iframe {
    max-width: 100%;
    border: none;
    border-radius: 10px;
    box-shadow: 0 8px 40px rgba(138, 43, 226, 0.4);
}

footer {
    background: rgba(10, 14, 39, 0.95);
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
    border-top: 2px solid #8a2be2;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #8a2be2;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #b57bee;
    text-shadow: 0 0 10px rgba(138, 43, 226, 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, #0a0e27 0%, #1a1f3a 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 3px solid #8a2be2;
    box-shadow: 0 0 50px rgba(138, 43, 226, 0.6);
}

.age-modal-content h2 {
    color: #8a2be2;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 900;
}

.age-modal-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-btn {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.age-btn.yes {
    background: linear-gradient(135deg, #8a2be2 0%, #b57bee 100%);
    color: white;
}

.age-btn.yes:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.8);
}

.age-btn.no {
    background: linear-gradient(135deg, #ff4500 0%, #ff6347 100%);
    color: white;
}

.age-btn.no:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 69, 0, 0.8);
}

ul {
    margin-left: 2rem;
    margin-top: 1rem;
}

ul li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: rgba(10, 14, 39, 0.98);
        flex-direction: column;
        padding: 5rem 2rem;
        transition: right 0.3s ease;
        border-left: 2px solid #8a2be2;
    }

    nav ul.active {
        right: 0;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .age-modal-content {
        margin: 1rem;
        padding: 2rem;
    }

    .age-buttons {
        flex-direction: column;
    }
}
