@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Exo+2:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #6b21a8;
    --deep-purple: #1e0936;
    --accent-pink: #c026d3;
    --glow-purple: #a855f7;
    --dark-bg: #0a0412;
    --text-light: #f3e8ff;
    --text-muted: #c4b5fd;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.7;
    min-height: 100vh;
}

/* Age Verification Overlay */
.age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 4, 18, 0.97);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.age-modal {
    background: linear-gradient(145deg, var(--deep-purple), var(--dark-bg));
    border: 2px solid var(--glow-purple);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    max-width: 480px;
    box-shadow: 0 0 60px rgba(168, 85, 247, 0.3);
}

.age-modal h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--glow-purple);
}

.age-modal p {
    margin-bottom: 30px;
    color: var(--text-muted);
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.age-btn {
    padding: 15px 45px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-btn.yes {
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
    color: white;
}

.age-btn.yes:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(192, 38, 211, 0.5);
}

.age-btn.no {
    background: transparent;
    border: 2px solid var(--text-muted);
    color: var(--text-muted);
}

.age-btn.no:hover {
    border-color: #ef4444;
    color: #ef4444;
}

/* Header */
header {
    background: linear-gradient(180deg, var(--deep-purple), transparent);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--glow-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav-desktop {
    display: flex;
    gap: 40px;
}

.nav-desktop a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-desktop a:hover {
    color: var(--glow-purple);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s;
    border-radius: 2px;
}

.nav-mobile {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--deep-purple);
    padding: 30px;
    flex-direction: column;
    gap: 20px;
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.2rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

/* Main Content */
main {
    padding-top: 100px;
}

.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 30px;
    background: radial-gradient(ellipse at center, var(--deep-purple) 0%, var(--dark-bg) 70%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-pink) 0%, transparent 70%);
    opacity: 0.15;
    top: 20%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--glow-purple) 0%, transparent 70%);
    opacity: 0.1;
    bottom: 20%;
    right: 15%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 40px rgba(168, 85, 247, 0.5);
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
    color: white;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(192, 38, 211, 0.4);
}

/* Notices Section */
.notices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 80px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.notice-card {
    background: linear-gradient(145deg, rgba(107, 33, 168, 0.2), rgba(10, 4, 18, 0.8));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.notice-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.notice-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--glow-purple);
}

.notice-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Game Section */
.game-section {
    padding: 60px 30px;
    background: linear-gradient(180deg, transparent, var(--deep-purple), transparent);
}

.game-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--glow-purple);
}

.game-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(168, 85, 247, 0.3);
    border: 2px solid var(--glow-purple);
}

.game-container iframe {
    width: 100%;
    height: 650px;
    border: none;
}

/* Info Section */
.info-section {
    padding: 80px 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--glow-purple);
}

.info-section p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 60px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 10px;
    color: var(--glow-purple);
}

.feature p {
    color: var(--text-muted);
}

/* Footer */
footer {
    background: var(--deep-purple);
    padding: 60px 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.responsible-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.responsible-links a {
    color: var(--glow-purple);
    text-decoration: none;
    transition: color 0.3s;
}

.responsible-links a:hover {
    color: var(--accent-pink);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(168, 85, 247, 0.2);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Page Styles */
.page-header {
    padding: 150px 30px 60px;
    text-align: center;
    background: radial-gradient(ellipse at top, var(--deep-purple), var(--dark-bg));
}

.page-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--glow-purple);
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
}

.page-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin: 40px 0 20px;
    color: var(--glow-purple);
}

.page-content p, .page-content li {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.page-content ul {
    list-style: none;
    padding-left: 20px;
}

.page-content ul li::before {
    content: '◆';
    color: var(--accent-pink);
    margin-right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .notices {
        grid-template-columns: 1fr;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .game-container iframe {
        height: 450px;
    }
    
    .responsible-links {
        flex-direction: column;
        gap: 15px;
    }
}
