@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #1a1a2e 100%);
    color: #00ff88;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

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"><defs><pattern id="circuit" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><rect x="0" y="0" width="20" height="20" fill="none" stroke="%2300ff88" stroke-width="0.5" opacity="0.1"/><circle cx="10" cy="10" r="1" fill="%2300ff88" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23circuit)"/></svg>');
    pointer-events: none;
    z-index: -1;
    animation: circuitFlow 20s linear infinite;
}

@keyframes circuitFlow {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(20px) translateY(20px); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid #00ff88;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: #00ff88;
    text-decoration: none;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
    letter-spacing: 3px;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border: 2px solid #00ff88;
    border-radius: 5px;
    background: rgba(0, 255, 136, 0.1);
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #00ff88;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.nav {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav a {
    color: #00ff88;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav a:hover {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.8);
}

.nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #00ff88, #ffffff);
    transition: width 0.3s;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.nav a:hover::after {
    width: 100%;
}

/* Main Content */
.main {
    margin-top: 100px;
    padding: 2rem 0;
}

.hero {
    text-align: center;
    padding: 6rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><rect x="0" y="0" width="50" height="50" fill="none" stroke="%2300ff88" stroke-width="1" opacity="0.2"/><circle cx="25" cy="25" r="2" fill="%2300ff88" opacity="0.3"/></pattern></defs><rect width="1200" height="600" fill="url(%23grid)"/></svg>');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    margin-bottom: 4rem;
    border: 2px solid #00ff88;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 255, 136, 0.1) 50%, transparent 70%);
    animation: scanLine 3s infinite;
}

@keyframes scanLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: 4.5rem;
    font-weight: 900;
    color: #00ff88;
    margin-bottom: 2rem;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.8);
    letter-spacing: 4px;
    position: relative;
    z-index: 1;
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% { text-shadow: 0 0 30px rgba(0, 255, 136, 0.8); }
    100% { text-shadow: 0 0 50px rgba(0, 255, 136, 1), 0 0 80px rgba(0, 255, 136, 0.5); }
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #00ff88, #ffffff, #00ff88);
    background-size: 200% 200%;
    color: #0a0a0a;
    padding: 1.5rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.3rem;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: buttonPulse 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
    border: 2px solid #00ff88;
}

@keyframes buttonPulse {
    0% { box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4); }
    50% { box-shadow: 0 12px 35px rgba(0, 255, 136, 0.6); }
    100% { box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4); }
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.7);
}

/* Game Section */
.game-section {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 255, 136, 0.05) 100%);
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem 0;
    border: 2px solid #00ff88;
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.2);
    position: relative;
}

.game-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ff88, #ffffff, #00ff88);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.game-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    color: #00ff88;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
    letter-spacing: 3px;
}

.game-container {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.game-frame {
    border: 4px solid #00ff88;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.3);
    position: relative;
}

.game-frame::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, #00ff88, #ffffff, #00ff88);
    border-radius: 15px;
    z-index: -1;
}

/* Notices */
.notices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.notice {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 255, 136, 0.05) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border-left: 5px solid #00ff88;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
    transition: transform 0.3s;
    position: relative;
}

.notice:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.3);
}

.notice h3 {
    color: #00ff88;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
    letter-spacing: 2px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    border-top: 2px solid #00ff88;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ff88, #ffffff, #00ff88);
}

.footer-content {
    text-align: center;
}

.footer h3 {
    font-family: 'Orbitron', monospace;
    color: #00ff88;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
    letter-spacing: 3px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: #00ff88;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.8);
}

/* Age Verification Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    margin: 15% auto;
    padding: 4rem;
    border: 3px solid #00ff88;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 255, 136, 0.3);
    position: relative;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #00ff88, #ffffff, #00ff88);
    border-radius: 20px;
    z-index: -1;
}

.modal h2 {
    font-family: 'Orbitron', monospace;
    color: #00ff88;
    margin-bottom: 2rem;
    font-size: 3rem;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
    letter-spacing: 2px;
}

.modal p {
    margin-bottom: 2.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
}

.modal-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.modal-btn {
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 50px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal-btn.yes {
    background: linear-gradient(45deg, #00ff88, #ffffff);
    color: #0a0a0a;
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
    border: 2px solid #00ff88;
}

.modal-btn.no {
    background: transparent;
    color: #00ff88;
    border: 3px solid #00ff88;
}

.modal-btn:hover {
    transform: translateY(-2px);
}

.modal-btn.yes:hover {
    box-shadow: 0 12px 35px rgba(0, 255, 136, 0.6);
}

.modal-btn.no:hover {
    background: #00ff88;
    color: #0a0a0a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(26, 26, 46, 0.98) 100%);
        flex-direction: column;
        padding: 3rem;
        text-align: center;
        border-top: 2px solid #00ff88;
    }
    
    .nav.active {
        display: flex;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .notices {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .modal-content {
        margin: 20% auto;
        padding: 3rem;
    }
    
    .modal-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .game-section h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .game-section h2 {
        font-size: 2rem;
    }
    
    .logo {
        font-size: 2rem;
    }
}