@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Roboto:wght@300;400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --neon-blue: #00d4ff;
    --neon-green: #39ff14;
    --dark-base: #0a0e17;
    --card-bg: #111827;
    --text-light: #e5e7eb;
    --accent-glow: rgba(0, 212, 255, 0.3);
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--dark-base);
    color: var(--text-light);
    min-height: 100vh;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
}

a {
    color: var(--neon-blue);
    text-decoration: none;
    transition: all 0.3s;
}

a:hover {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

.top-bar {
    background: linear-gradient(180deg, #1a1f2e 0%, var(--dark-base) 100%);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.top-bar-inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--neon-blue);
    text-transform: uppercase;
    text-shadow: 0 0 20px var(--accent-glow);
}

.menu-btn {
    display: none;
    background: transparent;
    border: 1px solid var(--neon-blue);
    padding: 8px 12px;
    cursor: pointer;
}

.menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neon-blue);
    margin: 5px 0;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-menu a {
    color: var(--text-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.6rem 1.2rem;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.nav-menu a:hover {
    border-color: var(--neon-blue);
    background: rgba(0, 212, 255, 0.1);
    color: var(--neon-blue);
}

.main-banner {
    padding: 150px 2rem 60px;
    text-align: center;
    background: radial-gradient(circle at 50% 30%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
}

.main-banner h1 {
    font-size: 2.8rem;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.main-banner p {
    font-size: 1.1rem;
    color: #9ca3af;
    max-width: 700px;
    margin: 0 auto;
}

.info-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.info-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    padding: 2rem;
    flex: 1 1 300px;
    max-width: 400px;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-green));
}

.info-card h3 {
    color: var(--neon-blue);
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.info-card p {
    color: #9ca3af;
    font-size: 0.95rem;
}

.game-area {
    width: 100%;
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.game-frame {
    background: #000;
    border: 2px solid var(--neon-blue);
    border-radius: 4px;
    box-shadow: 0 0 40px var(--accent-glow);
    overflow: hidden;
}

.game-frame iframe {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

.text-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.text-section h2 {
    font-size: 1.6rem;
    color: var(--neon-blue);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.text-section h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--neon-green);
}

.text-section p {
    color: #9ca3af;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.dual-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.col-box {
    background: var(--card-bg);
    padding: 2rem;
    border-left: 3px solid var(--neon-blue);
}

.col-box h3 {
    color: var(--neon-green);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.col-box p {
    color: #9ca3af;
}

.bottom-bar {
    background: #0d1117;
    padding: 3rem 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.bottom-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.bottom-links {
    margin-bottom: 1.5rem;
}

.bottom-links a {
    margin: 0 1rem;
    color: #6b7280;
    font-size: 0.9rem;
}

.help-links {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.help-links span {
    display: block;
    font-size: 0.8rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.help-links a {
    margin: 0 0.8rem;
    font-size: 0.85rem;
    color: #6b7280;
}

.verify-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 23, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.verify-overlay.hidden {
    display: none;
}

.verify-box {
    background: var(--card-bg);
    border: 2px solid var(--neon-blue);
    padding: 3rem;
    text-align: center;
    max-width: 480px;
    box-shadow: 0 0 80px var(--accent-glow);
}

.verify-box h2 {
    color: var(--neon-blue);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.verify-box p {
    color: #9ca3af;
    margin-bottom: 2rem;
}

.verify-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.verify-btns button {
    padding: 0.9rem 2.5rem;
    border: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-confirm {
    background: var(--neon-blue);
    color: var(--dark-base);
}

.btn-confirm:hover {
    background: var(--neon-green);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
}

.btn-deny {
    background: transparent;
    color: var(--text-light);
    border: 1px solid #4b5563 !important;
}

.btn-deny:hover {
    border-color: var(--neon-blue) !important;
    color: var(--neon-blue);
}

.page-header {
    padding: 130px 2rem 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 2rem;
    color: var(--neon-blue);
}

.legal-text {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.legal-text h2 {
    color: var(--neon-blue);
    font-size: 1.2rem;
    margin: 2.5rem 0 1rem;
}

.legal-text p {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.legal-text ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.legal-text li {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.play-note {
    background: var(--card-bg);
    border-left: 3px solid var(--neon-green);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.play-note h3 {
    color: var(--neon-green);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.play-note p {
    color: #9ca3af;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1f2e;
        display: none;
        padding: 1rem;
    }
    
    .nav-menu.open {
        display: block;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .main-banner h1 {
        font-size: 1.8rem;
    }
    
    .brand {
        font-size: 1.2rem;
    }
    
    .game-frame iframe {
        height: 380px;
    }
    
    .verify-box {
        margin: 1rem;
        padding: 2rem;
    }
    
    .verify-btns {
        flex-direction: column;
    }
    
    .dual-cols {
        grid-template-columns: 1fr;
    }
}
