* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cosmic-blue: #0A1F44;
    --neon-cyan: #00F0FF;
    --electric-purple: #B026FF;
    --star-white: #FFFFFF;
    --nebula-pink: #FF006E;
    --deep-space: #05071A;
    --light-gray: #E0E0E0;
}

body {
    font-family: 'Roboto', sans-serif;
    background: radial-gradient(ellipse at center, #0A1F44 0%, #05071A 100%);
    color: var(--light-gray);
    line-height: 1.7;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    z-index: -1;
    background: 
        radial-gradient(2px 2px at 20px 30px, white, transparent),
        radial-gradient(2px 2px at 60px 70px, white, transparent),
        radial-gradient(1px 1px at 50px 50px, white, transparent),
        radial-gradient(1px 1px at 130px 80px, white, transparent),
        radial-gradient(2px 2px at 90px 10px, white, transparent);
    background-size: 200px 200px;
    animation: stars 60s linear infinite;
    opacity: 0.5;
}

@keyframes stars {
    from { transform: translateY(0); }
    to { transform: translateY(-200px); }
}

header {
    background: rgba(5, 7, 26, 0.85);
    backdrop-filter: blur(12px);
    padding: 1rem 2.5rem;
    border-bottom: 3px solid var(--neon-cyan);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 240, 255, 0.3);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-brand {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-symbol {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--electric-purple));
    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: 1.8rem;
    font-weight: 900;
    color: var(--deep-space);
    animation: glow 3s ease-in-out infinite;
    font-family: 'Orbitron', sans-serif;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 240, 255, 0.5); }
    50% { box-shadow: 0 0 25px rgba(0, 240, 255, 0.9), 0 0 35px rgba(176, 38, 255, 0.6); }
}

.brand-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.7);
}

.primary-nav {
    display: flex;
    gap: 1rem;
}

.primary-nav a {
    color: var(--light-gray);
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 1.8rem;
    border: 2px solid transparent;
    border-radius: 30px;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.primary-nav a:hover {
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu span {
    width: 30px;
    height: 3px;
    background: var(--neon-cyan);
    border-radius: 3px;
    transition: 0.3s;
}

.page-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 3rem 2rem;
    width: 100%;
}

.hero-banner {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(176, 38, 255, 0.2), rgba(0, 240, 255, 0.2));
    border-radius: 25px;
    margin-bottom: 4rem;
    border: 3px solid var(--electric-purple);
    box-shadow: 0 15px 60px rgba(176, 38, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 240, 255, 0.1), transparent);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.hero-banner h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.8);
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    z-index: 1;
}

.hero-banner p {
    font-size: 1.4rem;
    max-width: 950px;
    margin: 0 auto;
    line-height: 2.2;
    color: var(--light-gray);
    position: relative;
    z-index: 1;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.feature-card {
    background: rgba(10, 31, 68, 0.6);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--neon-cyan);
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.2), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: scale(1.05);
    border-color: var(--electric-purple);
    box-shadow: 0 10px 40px rgba(176, 38, 255, 0.5);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    color: var(--neon-cyan);
    font-size: 1.9rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}

.feature-card p {
    color: var(--light-gray);
    font-size: 1.1rem;
    line-height: 1.9;
}

.game-area {
    background: rgba(5, 7, 26, 0.7);
    border-radius: 25px;
    padding: 3rem;
    margin: 4rem 0;
    border: 3px solid var(--electric-purple);
    box-shadow: 0 15px 60px rgba(176, 38, 255, 0.4);
}

.game-area h2 {
    text-align: center;
    font-size: 3.5rem;
    color: var(--electric-purple);
    margin-bottom: 2.5rem;
    text-shadow: 0 0 15px rgba(176, 38, 255, 0.8);
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
}

.game-iframe {
    width: 100%;
    height: 800px;
    border: none;
    border-radius: 18px;
    background: #000;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

.content-area {
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(10, 31, 68, 0.4);
    border-radius: 20px;
    border-left: 5px solid var(--nebula-pink);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.content-area h2 {
    color: var(--electric-purple);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}

.content-area p {
    color: var(--light-gray);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 2;
}

.content-area ul {
    list-style: none;
    padding: 0;
}

.content-area li {
    padding: 1.2rem 1.8rem;
    margin: 1rem 0;
    background: rgba(5, 7, 26, 0.5);
    border-radius: 12px;
    border-left: 4px solid var(--neon-cyan);
    color: var(--light-gray);
    font-size: 1.1rem;
    transition: all 0.3s;
}

.content-area li:hover {
    background: rgba(0, 240, 255, 0.1);
    transform: translateX(10px);
}

.content-area li::before {
    content: "★ ";
    color: var(--neon-cyan);
    font-weight: bold;
    margin-right: 1rem;
}

footer {
    background: rgba(5, 7, 26, 0.95);
    padding: 4rem 2rem 2rem;
    margin-top: 5rem;
    border-top: 3px solid var(--neon-cyan);
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    padding: 1rem 2.5rem;
    border: 2px solid var(--neon-cyan);
    border-radius: 35px;
    transition: all 0.3s;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a:hover {
    background: var(--neon-cyan);
    color: var(--deep-space);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.6);
    transform: translateY(-3px);
}

.footer-note {
    text-align: center;
    color: var(--light-gray);
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 240, 255, 0.3);
}

.verify-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.verify-modal.active {
    display: flex;
}

.modal-box {
    background: linear-gradient(135deg, #0A1F44, #05071A);
    padding: 4rem;
    border-radius: 25px;
    text-align: center;
    max-width: 600px;
    border: 4px solid var(--neon-cyan);
    box-shadow: 0 25px 100px rgba(0, 240, 255, 0.6);
}

.modal-box h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.8);
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}

.modal-box p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 2;
}

.modal-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.modal-btn {
    padding: 1.3rem 3.5rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 800;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Orbitron', sans-serif;
}

.btn-accept {
    background: linear-gradient(135deg, var(--neon-cyan), var(--electric-purple));
    color: var(--star-white);
    border: 3px solid var(--neon-cyan);
}

.btn-accept:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.7);
}

.btn-reject {
    background: transparent;
    color: var(--light-gray);
    border: 3px solid var(--nebula-pink);
}

.btn-reject:hover {
    background: var(--nebula-pink);
    color: var(--star-white);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .mobile-menu {
        display: flex;
    }
    
    .primary-nav {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 85px);
        background: rgba(5, 7, 26, 0.98);
        flex-direction: column;
        padding: 3rem;
        transition: left 0.4s;
        gap: 0;
    }
    
    .primary-nav.active {
        left: 0;
    }
    
    .primary-nav a {
        width: 100%;
        text-align: center;
        padding: 1.5rem;
        border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    }
    
    header {
        padding: 1rem 1.5rem;
    }
    
    .hero-banner h1 {
        font-size: 2.8rem;
    }
    
    .hero-banner p {
        font-size: 1.1rem;
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
    }
    
    .game-iframe {
        height: 600px;
    }
    
    .page-content {
        padding: 2rem 1rem;
    }
    
    .modal-box {
        margin: 1rem;
        padding: 2.5rem;
    }
    
    .modal-box h2 {
        font-size: 2rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
}
