@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;600;700;800&family=Orbitron:wght@400;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #475569 75%, #64748b 100%);
    color: #f1f5f9;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10,20 Q30,10 50,20 T90,20" stroke="rgba(59, 130, 246, 0.1)" stroke-width="1" fill="none"/><path d="M5,40 Q25,30 45,40 T85,40" stroke="rgba(59, 130, 246, 0.08)" stroke-width="1" fill="none"/><path d="M15,60 Q35,50 55,60 T95,60" stroke="rgba(59, 130, 246, 0.06)" stroke-width="1" fill="none"/></svg>') repeat;
    pointer-events: none;
    z-index: 1;
    animation: windFlow 20s linear infinite;
}

@keyframes windFlow {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(100px); }
}

/* Header Styles */
.header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(25px);
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 3px solid #3b82f6;
    box-shadow: 0 4px 30px rgba(59, 130, 246, 0.4);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 2.8rem;
    font-weight: 900;
    color: #3b82f6;
    text-shadow: 0 0 35px #3b82f6, 0 0 70px #60a5fa;
    text-decoration: none;
    position: relative;
    letter-spacing: 3px;
    animation: windGlow 3s ease-in-out infinite alternate;
}

@keyframes windGlow {
    from { filter: drop-shadow(0 0 20px #3b82f6); }
    to { filter: drop-shadow(0 0 40px #60a5fa); }
}

.logo::after {
    content: '💨';
    position: absolute;
    right: -60px;
    top: -8px;
    font-size: 2rem;
    animation: windFloat 4s ease-in-out infinite;
}

@keyframes windFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(0deg); }
    75% { transform: translateY(-5px) rotate(-5deg); }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: scale(1.05);
}

.hamburger span {
    width: 32px;
    height: 3px;
    background: #3b82f6;
    margin: 5px 0;
    transition: 0.4s;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
}

.nav {
    display: flex;
    list-style: none;
    gap: 3.5rem;
}

.nav a {
    color: #f1f5f9;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.3rem;
    transition: all 0.4s ease;
    position: relative;
    padding: 1.2rem 2rem;
    border-radius: 35px;
    font-family: 'Exo 2', sans-serif;
}

.nav a:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.15);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    text-shadow: 0 0 20px #3b82f6;
}

/* Main Content */
.main-content {
    margin-top: 110px;
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 7rem 0;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.25), rgba(96, 165, 250, 0.15));
    border-radius: 40px;
    margin-bottom: 6rem;
    position: relative;
    overflow: hidden;
    border: 4px solid rgba(59, 130, 246, 0.5);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    animation: windRotate 25s linear infinite;
}

@keyframes windRotate {
    0% { transform: rotate(0deg) translateX(-150px); }
    100% { transform: rotate(360deg) translateX(-150px); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
    background: linear-gradient(45deg, #3b82f6, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px rgba(59, 130, 246, 0.8);
    animation: windPulse 4s ease-in-out infinite alternate;
    letter-spacing: 4px;
}

@keyframes windPulse {
    from { filter: drop-shadow(0 0 40px rgba(59, 130, 246, 0.6)); }
    to { filter: drop-shadow(0 0 80px rgba(59, 130, 246, 1)); }
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 3.5rem;
    color: #e2e8f0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.8;
}

/* Game Container */
.game-container {
    background: rgba(15, 23, 42, 0.9);
    border-radius: 35px;
    padding: 5rem;
    margin: 5rem 0;
    border: 5px solid #3b82f6;
    box-shadow: 0 0 60px rgba(59, 130, 246, 0.6);
    position: relative;
    overflow: hidden;
}

.game-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #93c5fd, #3b82f6);
    background-size: 400% 100%;
    animation: windShimmer 5s linear infinite;
}

@keyframes windShimmer {
    0% { background-position: -400% 0; }
    100% { background-position: 400% 0; }
}

.game-frame {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 25px;
    background: #000;
    box-shadow: inset 0 0 40px rgba(59, 130, 246, 0.4);
}

/* Notices */
.notices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 4rem;
    margin: 6rem 0;
}

.notice {
    background: rgba(15, 23, 42, 0.8);
    padding: 4rem;
    border-radius: 30px;
    border-left: 7px solid #3b82f6;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.notice:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.5);
}

.notice h3 {
    color: #3b82f6;
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Orbitron', monospace;
}

.notice p {
    color: #e2e8f0;
    line-height: 1.9;
    font-weight: 400;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: rgba(15, 23, 42, 0.98);
    padding: 6rem 0 4rem;
    margin-top: 8rem;
    border-top: 5px solid #3b82f6;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #93c5fd, #3b82f6);
    background-size: 400% 100%;
    animation: windShimmer 5s linear infinite;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-family: 'Exo 2', sans-serif;
}

.footer-links a:hover {
    color: #60a5fa;
    background: rgba(59, 130, 246, 0.15);
    transform: translateY(-4px) scale(1.05);
    text-shadow: 0 0 20px #3b82f6;
}

.footer p {
    color: #94a3b8;
    font-size: 1.1rem;
    font-weight: 400;
}

/* Age Verification Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
}

.modal-content {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    margin: 15% auto;
    padding: 6rem;
    border: 5px solid #3b82f6;
    border-radius: 35px;
    width: 90%;
    max-width: 650px;
    text-align: center;
    box-shadow: 0 0 100px rgba(59, 130, 246, 0.8);
    position: relative;
    overflow: hidden;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #93c5fd, #3b82f6);
    background-size: 400% 100%;
    animation: windShimmer 5s linear infinite;
}

.modal h2 {
    color: #3b82f6;
    margin-bottom: 3rem;
    font-size: 2.8rem;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
}

.modal p {
    color: #f1f5f9;
    margin-bottom: 3.5rem;
    line-height: 1.9;
    font-size: 1.3rem;
}

.modal-buttons {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}

.btn {
    padding: 1.8rem 4rem;
    border: none;
    border-radius: 25px;
    font-family: 'Exo 2', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.5s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 2px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.8s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, #3b82f6, #60a5fa);
    color: #0f172a;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.8);
}

.btn-secondary {
    background: transparent;
    color: #3b82f6;
    border: 4px solid #3b82f6;
}

.btn-secondary:hover {
    background: #3b82f6;
    color: #0f172a;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.98);
        flex-direction: column;
        padding: 3rem;
        gap: 2rem;
        border-top: 4px solid #3b82f6;
    }
    
    .nav.active {
        display: flex;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .game-frame {
        height: 600px;
    }
    
    .notices {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .modal-content {
        margin: 20% auto;
        padding: 5rem;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .logo::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .game-frame {
        height: 500px;
    }
}