/* Geckora - Futuristic Space Theme */
@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;
}

:root {
    --space-blue: #0d1b2a;
    --neon-cyan: #00d9ff;
    --neon-purple: #b026ff;
    --neon-pink: #ff006e;
    --dark-navy: #1b263b;
    --text-light: #e0e1dd;
    --text-dim: #778da9;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: radial-gradient(ellipse at top, #1b263b, #0d1b2a);
    background-attachment: fixed;
    color: var(--text-light);
    line-height: 1.7;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(0, 217, 255, 0.3), transparent),
        radial-gradient(2px 2px at 60px 70px, rgba(176, 38, 255, 0.3), transparent),
        radial-gradient(2px 2px at 120px 10px, rgba(255, 0, 110, 0.3), transparent);
    background-size: 200px 200px;
    opacity: 0.3;
    z-index: -1;
}

/* Header */
header {
    background: rgba(13, 27, 42, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--neon-cyan);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon-cyan);
    text-decoration: none;
    letter-spacing: 5px;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.8);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    transition: all 0.3s;
    transform: translateX(-50%);
}

nav a:hover::before {
    width: 100%;
}

nav a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.8);
}

.burger {
    display: none;
    font-size: 2rem;
    color: var(--neon-cyan);
    cursor: pointer;
}

/* Main Content */
.content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.intro-panel {
    background: linear-gradient(135deg, rgba(27, 38, 59, 0.8), rgba(13, 27, 42, 0.8));
    border: 2px solid var(--neon-cyan);
    border-radius: 20px;
    padding: 4rem 3rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.2);
}

.intro-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 217, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.intro-panel h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.intro-panel p {
    font-size: 1.3rem;
    color: var(--text-dim);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.data-block {
    background: rgba(27, 38, 59, 0.6);
    border-left: 4px solid var(--neon-cyan);
    border-radius: 10px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
}

.data-block h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-cyan);
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.warning-panel {
    background: linear-gradient(135deg, rgba(176, 38, 255, 0.15), rgba(255, 0, 110, 0.15));
    border: 2px solid var(--neon-purple);
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
}

.warning-panel h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-purple);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.data-points {
    list-style: none;
}

.data-points li {
    padding: 0.8rem 0;
    padding-left: 2.5rem;
    position: relative;
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.data-points li:last-child {
    border-bottom: none;
}

.data-points li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    font-size: 1.2rem;
}

.game-terminal {
    background: rgba(13, 27, 42, 0.9);
    border: 2px solid var(--neon-purple);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 0 40px rgba(176, 38, 255, 0.3);
}

.game-terminal h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-purple);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 15px rgba(176, 38, 255, 0.8);
}

.game-terminal iframe {
    max-width: 100%;
    border-radius: 10px;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
}

.feature-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-cell {
    background: linear-gradient(135deg, rgba(27, 38, 59, 0.4), rgba(13, 27, 42, 0.4));
    border: 1px solid var(--neon-cyan);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s;
}

.feature-cell:hover {
    transform: translateY(-10px);
    border-color: var(--neon-purple);
    box-shadow: 0 10px 40px rgba(176, 38, 255, 0.3);
}

.feature-cell h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.feature-cell p {
    color: var(--text-dim);
}

/* Footer */
footer {
    background: rgba(13, 27, 42, 0.95);
    border-top: 2px solid var(--neon-cyan);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-dim);
}

.footer-links {
    list-style: none;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    display: block;
    padding: 0.4rem 0;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--neon-cyan);
}

.footer-base {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 217, 255, 0.2);
    color: var(--text-dim);
}

/* Age Verification */
.age-gate {
    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-gate.active {
    display: flex;
}

.age-panel {
    background: linear-gradient(135deg, rgba(27, 38, 59, 0.95), rgba(13, 27, 42, 0.95));
    border: 3px solid var(--neon-cyan);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    margin: 1rem;
    box-shadow: 0 0 60px rgba(0, 217, 255, 0.5);
}

.age-panel h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-cyan);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.8);
}

.age-panel p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-dim);
}

.age-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-button {
    padding: 1rem 2.5rem;
    border: 2px solid;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    transition: all 0.3s;
}

.age-button.confirm {
    background: transparent;
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
}

.age-button.confirm:hover {
    background: var(--neon-cyan);
    color: var(--space-blue);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.8);
}

.age-button.deny {
    background: transparent;
    border-color: var(--neon-pink);
    color: var(--neon-pink);
}

.age-button.deny:hover {
    background: var(--neon-pink);
    color: var(--space-blue);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .burger {
        display: block;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(13, 27, 42, 0.98);
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
        border-bottom: 2px solid var(--neon-cyan);
    }
    
    nav ul.visible {
        display: flex;
    }
    
    nav li {
        width: 100%;
        text-align: center;
        padding: 1rem 0;
    }
    
    nav a::before {
        display: none;
    }
    
    .site-logo {
        font-size: 1.8rem;
    }
    
    .intro-panel h1 {
        font-size: 2.5rem;
    }
    
    .data-block {
        padding: 1.5rem;
    }
    
    .content {
        padding: 2rem 1rem;
    }
    
    .age-actions {
        flex-direction: column;
    }
}
