@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #0a0015;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(120, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 128, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(0, 128, 255, 0.1) 0%, transparent 50%);
    color: #fff;
    min-height: 100vh;
    line-height: 1.6;
}

/* Navigation */
nav {
    background: rgba(10, 0, 21, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid rgba(147, 51, 234, 0.3);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(147, 51, 234, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #9333ea, #ec4899, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #9333ea, #ec4899);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-nav-toggle div {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Main Content */
.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.page-title {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title h1 {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #9333ea, #ec4899, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-title p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* Content Blocks */
.content-block {
    background: rgba(20, 10, 40, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(147, 51, 234, 0.2);
}

.content-block h2 {
    font-size: 2.5rem;
    color: #ec4899;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-block h3 {
    font-size: 1.8rem;
    color: #9333ea;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.content-block p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.content-block ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-block li {
    color: rgba(255, 255, 255, 0.85);
    margin: 0.8rem 0;
}

/* Alert Block */
.alert-block {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2), rgba(236, 72, 153, 0.2));
    border: 2px solid #ec4899;
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(236, 72, 153, 0.3);
}

.alert-block h3 {
    color: #ec4899;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.alert-block p {
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Grid Layout */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-item {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.15), rgba(59, 130, 246, 0.15));
    border: 1px solid rgba(147, 51, 234, 0.4);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(147, 51, 234, 0.4);
    border-color: #9333ea;
}

.info-item h3 {
    color: #3b82f6;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-item p {
    color: rgba(255, 255, 255, 0.8);
}

/* Game Container */
.game-container {
    background: rgba(20, 10, 40, 0.8);
    border: 2px solid rgba(147, 51, 234, 0.5);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 10px 50px rgba(147, 51, 234, 0.3);
}

.game-container h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #9333ea, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    font-weight: 900;
}

.game-container iframe {
    border: none;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
    max-width: 100%;
}

/* Footer */
footer {
    background: rgba(10, 0, 21, 0.9);
    border-top: 2px solid rgba(147, 51, 234, 0.3);
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-links a {
    color: #9333ea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.footer-links a:hover {
    color: #ec4899;
    background: rgba(147, 51, 234, 0.2);
}

footer p {
    color: rgba(255, 255, 255, 0.6);
}

/* Age 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-modal-content {
    background: linear-gradient(135deg, rgba(20, 10, 40, 0.95), rgba(40, 20, 60, 0.95));
    border: 3px solid #9333ea;
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(147, 51, 234, 0.5);
}

.age-modal-content h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #9333ea, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 900;
}

.age-modal-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.age-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-btn.yes {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    color: #fff;
}

.age-btn.yes:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(147, 51, 234, 0.6);
}

.age-btn.no {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
}

.age-btn.no:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.6);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 0, 21, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1.5rem;
        border-bottom: 2px solid rgba(147, 51, 234, 0.3);
    }

    .nav-links.active {
        left: 0;
    }

    .page-title h1 {
        font-size: 2.5rem;
    }

    .page-title p {
        font-size: 1.2rem;
    }

    .content-wrapper {
        padding: 2rem 1rem;
    }

    .content-block {
        padding: 2rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .age-modal-content {
        margin: 1rem;
        padding: 2rem;
    }
}
