@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;800;900&family=Roboto:wght@300;400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --space-black: #0a0e1a;
    --deep-blue: #1a1f3d;
    --cosmic-purple: #6c3cff;
    --neon-cyan: #00d4ff;
    --star-white: #ffffff;
    --text-gray: #b8c4e0;
    --card-bg: rgba(26, 31, 61, 0.6);
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--space-black);
    color: var(--star-white);
    min-height: 100vh;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(108, 60, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    line-height: 1.6;
}

/* Top Navigation Bar */
.top-bar {
    background: rgba(26, 31, 61, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--cosmic-purple);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(108, 60, 255, 0.3);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--cosmic-purple), var(--neon-cyan));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.brand h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--neon-cyan), var(--cosmic-purple), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientFlow 4s linear infinite;
    letter-spacing: 4px;
}

@keyframes gradientFlow {
    to { background-position: 200% center; }
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.main-nav ul li a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: 1px solid transparent;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    background: linear-gradient(135deg, rgba(108, 60, 255, 0.3), rgba(0, 212, 255, 0.3));
    border-color: var(--neon-cyan);
    color: var(--star-white);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.mobile-toggle {
    display: none;
    background: var(--cosmic-purple);
    border: 1px solid var(--neon-cyan);
    color: white;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 8px;
}

/* Main Content Area */
.content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-section {
    text-align: center;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--cosmic-purple);
    box-shadow: 0 10px 40px rgba(108, 60, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 212, 255, 0.05) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    color: var(--text-gray);
    line-height: 1.8;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--cosmic-purple);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
    border-color: var(--neon-cyan);
}

.feature-card .emoji {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.6));
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
}

.feature-card p {
    color: var(--text-gray);
}

.content-card {
    background: var(--card-bg);
    border: 1px solid var(--deep-blue);
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.content-card h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
}

.content-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--cosmic-purple);
}

.content-card p {
    margin-bottom: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.content-card ul {
    margin: 1rem 0 1rem 2rem;
}

.content-card ul li {
    margin-bottom: 0.8rem;
    color: var(--text-gray);
}

.game-showcase {
    background: var(--card-bg);
    border: 2px solid var(--neon-cyan);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
}

.game-showcase h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
}

.game-container {
    max-width: 900px;
    margin: 0 auto;
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 15px;
    background: #000;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

/* Footer */
footer {
    background: rgba(26, 31, 61, 0.9);
    border-top: 2px solid var(--cosmic-purple);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-wrapper {
    max-width: 1300px;
    margin: 0 auto;
}

.footer-block {
    margin-bottom: 2rem;
}

.footer-block h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.7);
}

.footer-info {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--cosmic-purple);
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Age Verification */
.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 26, 0.98);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.age-gate.visible {
    display: flex;
}

.age-gate-content {
    background: var(--deep-blue);
    border: 2px solid var(--neon-cyan);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 0 60px rgba(0, 212, 255, 0.5);
}

.age-gate-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
}

.age-gate-content p {
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.age-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-buttons button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    border: 2px solid;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-accept {
    background: linear-gradient(135deg, var(--cosmic-purple), var(--neon-cyan));
    border-color: var(--neon-cyan);
    color: white;
}

.btn-accept:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.8);
}

.btn-reject {
    background: transparent;
    border-color: #666;
    color: #999;
}

.btn-reject:hover {
    border-color: #888;
    color: #bbb;
}

/* Responsive Design */
@media (max-width: 968px) {
    .main-nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 31, 61, 0.98);
        flex-direction: column;
        padding: 1rem;
        border-top: 2px solid var(--cosmic-purple);
    }

    .main-nav ul.open {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-section h2 {
        font-size: 2rem;
    }

    .feature-cards {
        grid-template-columns: 1fr;
    }

    .content-wrapper {
        padding: 2rem 1rem;
    }

    .game-iframe {
        height: 400px;
    }

    .age-gate-content {
        margin: 1rem;
        padding: 2rem;
    }

    .age-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .brand h1 {
        font-size: 1.5rem;
    }

    .game-iframe {
        height: 350px;
    }
}