@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Source+Sans+Pro:wght@300;400;600;700;900&display=swap');

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

:root {
    --electric: #00d4ff;
    --purple: #9333ea;
    --dark: #0f172a;
    --slate: #1e293b;
    --white: #f8fafc;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background: var(--dark);
    color: var(--white);
    line-height: 1.7;
}

header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    padding: 1rem 2.5rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--electric);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.site-brand svg {
    width: 50px;
    height: 50px;
}

.brand-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--electric);
    letter-spacing: 3px;
}

.site-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.site-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.site-links a:hover {
    color: var(--electric);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger-menu span {
    width: 30px;
    height: 3px;
    background: var(--electric);
}

main {
    margin-top: 80px;
}

.hero-banner {
    background: linear-gradient(180deg, var(--slate) 0%, var(--dark) 100%);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(147, 51, 234, 0.15) 0%, transparent 50%);
}

.hero-banner h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: 5px;
    position: relative;
    z-index: 1;
}

.hero-banner h1 span {
    color: var(--electric);
}

.hero-banner p {
    font-size: 1.25rem;
    color: rgba(248, 250, 252, 0.85);
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
}

.status-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.status-item {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--electric);
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.status-item .marker {
    width: 10px;
    height: 10px;
    background: var(--electric);
    border-radius: 50%;
}

.status-item span {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-arena {
    background: var(--slate);
    padding: 5rem 2rem;
}

.game-arena h2 {
    font-family: 'Bebas Neue', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    color: var(--electric);
    margin-bottom: 2rem;
    letter-spacing: 3px;
}

.arena-screen {
    max-width: 1300px;
    margin: 0 auto;
    border: 3px solid var(--purple);
    overflow: hidden;
    box-shadow: 0 0 60px rgba(147, 51, 234, 0.3);
}

.arena-screen iframe {
    width: 100%;
    height: 680px;
    border: none;
    display: block;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--dark);
}

.stat-box {
    padding: 3rem 2rem;
    text-align: center;
    border-right: 1px solid rgba(0, 212, 255, 0.2);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.stat-box:nth-child(4n) {
    border-right: none;
}

.stat-box .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-box h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: var(--electric);
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
}

.stat-box p {
    color: rgba(248, 250, 252, 0.75);
    font-size: 0.95rem;
}

.page-section {
    padding: 5rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.page-section h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--electric);
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 3px;
}

.page-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--purple);
    margin: 2.5rem 0 1rem;
    letter-spacing: 2px;
}

.page-section p {
    color: rgba(248, 250, 252, 0.85);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.page-section ul {
    margin: 1rem 0 1.5rem 2rem;
}

.page-section li {
    color: rgba(248, 250, 252, 0.85);
    margin-bottom: 0.7rem;
}

.info-block {
    background: var(--slate);
    padding: 5rem 2rem;
    text-align: center;
}

.info-block h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.info-block p {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
    color: rgba(248, 250, 252, 0.8);
}

footer {
    background: var(--dark);
    border-top: 2px solid var(--electric);
    padding: 3rem 2rem;
    text-align: center;
}

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

.foot-links a {
    color: var(--electric);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.foot-links a:hover {
    color: var(--purple);
}

footer p {
    color: rgba(248, 250, 252, 0.5);
    font-size: 0.9rem;
}

.verify-screen {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

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

.verify-card {
    background: var(--slate);
    border: 2px solid var(--electric);
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    margin: 1rem;
}

.verify-card h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--electric);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.verify-card p {
    color: rgba(248, 250, 252, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.verify-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.v-btn {
    padding: 1rem 2.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    border: none;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.v-btn.enter {
    background: var(--electric);
    color: var(--dark);
}

.v-btn.enter:hover {
    box-shadow: 0 0 30px var(--electric);
}

.v-btn.leave {
    background: transparent;
    border: 2px solid var(--purple);
    color: var(--purple);
}

.v-btn.leave:hover {
    background: var(--purple);
    color: white;
}

.play-area {
    padding: 4rem 2rem;
    background: var(--dark);
}

.play-area h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    color: var(--electric);
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.play-note {
    text-align: center;
    color: rgba(248, 250, 252, 0.7);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-box:nth-child(2n) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }
    
    .site-links {
        position: fixed;
        top: 82px;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 2px solid var(--electric);
        transform: translateY(-200%);
        transition: transform 0.4s;
    }
    
    .site-links.active {
        transform: translateY(0);
    }
    
    .hero-banner h1 {
        font-size: 2.5rem;
    }
    
    .hero-banner p {
        font-size: 1.05rem;
    }
    
    .status-row {
        flex-direction: column;
        align-items: center;
    }
    
    .arena-screen iframe {
        height: 420px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-box {
        border-right: none;
    }
    
    .brand-title {
        font-size: 1.5rem;
    }
    
    .verify-buttons {
        flex-direction: column;
    }
}
