@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: #000814;
    color: #caf0f8;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Starfield Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent);
    background-size: 200% 200%;
    opacity: 0.3;
    z-index: -1;
    animation: stars 120s linear infinite;
}

@keyframes stars {
    from { background-position: 0 0; }
    to { background-position: 200% 200%; }
}

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, rgba(0, 119, 182, 0.8), rgba(3, 4, 94, 0.8));
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #00b4d8;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-name h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00b4d8;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(0, 180, 216, 0.8);
}

.site-name h1::before {
    content: "⭐ ";
}

/* Nav Links */
.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: #caf0f8;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(0, 180, 216, 0.2);
    color: #00b4d8;
    text-shadow: 0 0 10px rgba(0, 180, 216, 0.8);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: #00b4d8;
    border: none;
    color: #000;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
}

/* Main Wrapper */
.main-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Banner */
.banner {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(3, 4, 94, 0.3));
    border-radius: 25px;
    margin-bottom: 4rem;
    border: 2px solid #00b4d8;
    box-shadow: 0 0 40px rgba(0, 180, 216, 0.3);
}

.banner h2 {
    font-size: 4.5rem;
    font-weight: 800;
    color: #00b4d8;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 0 0 30px rgba(0, 180, 216, 0.8);
}

.banner p {
    font-size: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.9;
    font-weight: 300;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.card {
    background: linear-gradient(135deg, rgba(3, 4, 94, 0.6), rgba(0, 119, 182, 0.3));
    border: 2px solid #0077b6;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    transition: all 0.4s;
    backdrop-filter: blur(5px);
}

.card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: #00b4d8;
    box-shadow: 0 20px 50px rgba(0, 180, 216, 0.5);
}

.card-emoji {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.card h3 {
    font-size: 2rem;
    color: #00b4d8;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.card p {
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 300;
}

/* Section Block */
.section-block {
    background: rgba(3, 4, 94, 0.4);
    border-left: 6px solid #00b4d8;
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.section-block h3 {
    font-size: 2.5rem;
    color: #00b4d8;
    margin-bottom: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-block p {
    font-size: 1.3rem;
    line-height: 2;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.section-block ul {
    list-style: none;
    font-size: 1.3rem;
    line-height: 2.5;
    font-weight: 300;
}

.section-block ul li::before {
    content: "➤ ";
    color: #00b4d8;
    font-weight: bold;
    margin-right: 0.75rem;
}

/* Game Section */
.game-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(3, 4, 94, 0.6));
    border: 3px solid #00b4d8;
    border-radius: 25px;
    padding: 4rem;
    margin-bottom: 4rem;
    text-align: center;
    box-shadow: 0 0 50px rgba(0, 180, 216, 0.4);
}

.game-section h3 {
    font-size: 3.5rem;
    color: #00b4d8;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 0 0 20px rgba(0, 180, 216, 0.8);
}

.game-section p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.game-embed {
    width: 100%;
    max-width: 900px;
    height: 650px;
    border: none;
    border-radius: 15px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
}

/* Footer */
.site-footer {
    background: linear-gradient(90deg, rgba(0, 119, 182, 0.6), rgba(3, 4, 94, 0.8));
    border-top: 3px solid #00b4d8;
    padding: 3rem;
    text-align: center;
    margin-top: 5rem;
    backdrop-filter: blur(10px);
}

.site-footer p {
    margin: 1rem 0;
    font-size: 1.2rem;
    font-weight: 400;
}

.support-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.support-links a {
    color: #00b4d8;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.support-links a:hover {
    color: #caf0f8;
    text-shadow: 0 0 15px rgba(0, 180, 216, 1);
}

/* Age Check Modal */
.age-check {
    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-check.active {
    display: flex;
}

.age-dialog {
    background: linear-gradient(135deg, #000814, #03045e);
    border: 4px solid #00b4d8;
    border-radius: 25px;
    padding: 5rem;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 0 80px rgba(0, 180, 216, 0.8);
}

.age-dialog h2 {
    font-size: 3.5rem;
    color: #00b4d8;
    margin-bottom: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(0, 180, 216, 0.8);
}

.age-dialog p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    line-height: 1.9;
    font-weight: 300;
}

.age-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.age-buttons button {
    padding: 1.5rem 4rem;
    font-size: 1.4rem;
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.age-buttons button:hover {
    transform: scale(1.1);
}

.btn-enter {
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: #000;
}

.btn-leave {
    background: #333;
    color: #caf0f8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(3, 4, 94, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }

    .nav-links.show {
        display: flex;
    }

    .top-bar {
        flex-wrap: wrap;
        padding: 1.5rem;
    }

    .site-name h1 {
        font-size: 2rem;
    }

    .banner h2 {
        font-size: 2.5rem;
    }

    .banner p {
        font-size: 1.2rem;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .section-block {
        padding: 2rem;
    }

    .game-embed {
        height: 450px;
    }

    .age-dialog {
        margin: 1rem;
        padding: 3rem;
    }

    .age-dialog h2 {
        font-size: 2.5rem;
    }

    .age-buttons {
        flex-direction: column;
    }
}
