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

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

body {
    font-family: 'Exo 2', sans-serif;
    background: #0a1216;
    color: #c8e6ec;
    min-height: 100vh;
    line-height: 1.8;
}

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

a {
    color: #00d4aa;
    text-decoration: none;
    transition: all 0.25s;
}

a:hover {
    color: #5fffdc;
    text-shadow: 0 0 10px rgba(0, 212, 170, 0.5);
}

.top-bar {
    background: linear-gradient(90deg, #0d181d 0%, #152229 50%, #0d181d 100%);
    border-bottom: 1px solid #1e3a42;
    padding: 0.8rem 1.5rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand svg {
    width: 42px;
    height: 42px;
}

.brand-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #00d4aa;
    letter-spacing: 3px;
}

.hamburger {
    display: none;
    background: transparent;
    border: 2px solid #00d4aa;
    border-radius: 6px;
    padding: 8px;
    cursor: pointer;
}

.hamburger svg {
    width: 24px;
    height: 24px;
    fill: #00d4aa;
    display: block;
}

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

.nav-menu a {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    border: 1px solid transparent;
    border-radius: 4px;
}

.nav-menu a:hover {
    border-color: #00d4aa;
    background: rgba(0, 212, 170, 0.1);
}

.wrapper {
    padding-top: 70px;
}

.split-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 70px);
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background: linear-gradient(180deg, #0d181d 0%, #111f26 100%);
}

.hero-text h1 {
    font-size: 2.8rem;
    color: #00d4aa;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.notice-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.notice-item {
    background: rgba(0, 212, 170, 0.1);
    border-left: 3px solid #00d4aa;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-visual {
    background: radial-gradient(ellipse at center, #1a2f38 0%, #0a1216 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-visual img {
    max-width: 100%;
    max-height: 400px;
}

.game-zone {
    padding: 4rem 2rem;
    background: #0d181d;
}

.game-zone h2 {
    text-align: center;
    font-size: 1.8rem;
    color: #00d4aa;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.game-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    background: #111f26;
    border: 1px solid #1e3a42;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 212, 170, 0.1);
}

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

.features-row {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.feature-tile {
    flex: 0 0 280px;
    background: linear-gradient(145deg, #152229, #0d181d);
    border: 1px solid #1e3a42;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

.feature-tile:hover {
    border-color: #00d4aa;
    transform: translateY(-4px);
}

.feature-tile h3 {
    color: #00d4aa;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-tile p {
    font-size: 0.9rem;
    opacity: 0.85;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-content h1 {
    font-size: 2.2rem;
    color: #00d4aa;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 2px;
}

.page-content h2 {
    font-size: 1.2rem;
    color: #00d4aa;
    margin: 2.5rem 0 1rem;
    letter-spacing: 1px;
}

.page-content p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.page-content ul, .page-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.page-content li {
    margin-bottom: 0.5rem;
}

.bottom-bar {
    background: #0a0f12;
    border-top: 1px solid #1e3a42;
    padding: 3rem 2rem;
}

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

.bottom-bar h4 {
    font-family: 'Orbitron', sans-serif;
    color: #00d4aa;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
}

.support-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.6;
    max-width: 500px;
    margin: 0 auto;
}

.verify-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 18, 22, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.verify-box {
    background: linear-gradient(160deg, #152229, #0d181d);
    border: 2px solid #00d4aa;
    border-radius: 16px;
    padding: 3rem;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 0 80px rgba(0, 212, 170, 0.2);
}

.verify-box h2 {
    color: #00d4aa;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.verify-box p {
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

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

.verify-btn {
    font-family: 'Orbitron', sans-serif;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.verify-btn.confirm {
    background: linear-gradient(145deg, #00d4aa, #00a88a);
    color: #0a1216;
}

.verify-btn.confirm:hover {
    background: #5fffdc;
    transform: scale(1.05);
}

.verify-btn.deny {
    background: transparent;
    border: 2px solid #00d4aa;
    color: #00d4aa;
}

.verify-btn.deny:hover {
    background: rgba(0, 212, 170, 0.1);
}

.denied-msg {
    padding: 4rem;
    text-align: center;
}

.denied-msg h2 {
    color: #ff5a5a;
    margin-bottom: 1rem;
}

@media (max-width: 900px) {
    .split-hero {
        grid-template-columns: 1fr;
    }
    
    .hero-text {
        padding: 3rem 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-visual {
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0d181d;
        border-bottom: 1px solid #1e3a42;
        padding: 1rem;
        display: none;
    }
    
    .nav-menu.open {
        display: block;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-menu a {
        display: block;
        text-align: center;
        padding: 1rem;
    }
    
    .game-wrapper iframe {
        height: 380px;
    }
    
    .brand-name {
        font-size: 1.1rem;
    }
    
    .features-row {
        padding: 2rem 1rem;
    }
}
