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

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

:root {
    --blue-primary: #0066cc;
    --blue-dark: #003d7a;
    --silver: #c0c0c0;
    --silver-light: #e8e8e8;
    --navy: #0a1628;
    --white: #ffffff;
    --accent-cyan: #00b4d8;
    --text-dark: #1a1a1a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(180deg, var(--navy) 0%, #152238 100%);
    color: var(--white);
    line-height: 1.7;
    min-height: 100vh;
}

/* Header */
header {
    background: rgba(10, 22, 40, 0.98);
    padding: 14px 30px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--blue-primary);
    backdrop-filter: blur(10px);
}

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

.logo-area {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-mark {
    width: 44px;
    height: 44px;
    margin-right: 12px;
}

.logo-name {
    font-family: 'Exo 2', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.logo-name span {
    color: var(--accent-cyan);
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 38px;
}

.nav-menu ul li a {
    font-family: 'Exo 2', sans-serif;
    color: var(--silver-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.nav-menu ul li a:hover {
    color: var(--accent-cyan);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--accent-cyan);
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Main Content */
main {
    margin-top: 78px;
}

/* Intro Section */
.intro-section {
    padding: 100px 30px;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(0, 102, 204, 0.15) 0%, transparent 70%);
}

.intro-section h1 {
    font-family: 'Exo 2', sans-serif;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(90deg, var(--white) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-section .intro-text {
    font-size: 19px;
    color: var(--silver);
    max-width: 800px;
    margin: 0 auto;
}

/* Notice Pills */
.notice-pills {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.notice-pill {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.3) 0%, rgba(0, 180, 216, 0.2) 100%);
    border: 1px solid rgba(0, 180, 216, 0.4);
    border-radius: 50px;
    padding: 20px 35px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.notice-pill:hover {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.5) 0%, rgba(0, 180, 216, 0.3) 100%);
    transform: translateY(-3px);
}

.pill-icon {
    font-size: 28px;
}

.pill-text h4 {
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pill-text p {
    font-size: 14px;
    color: var(--silver);
}

/* Game Arena */
.game-arena {
    background: var(--navy);
    padding: 70px 30px;
}

.game-arena h2 {
    font-family: 'Exo 2', sans-serif;
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.game-arena .subtitle {
    text-align: center;
    color: var(--silver);
    margin-bottom: 40px;
}

.arena-frame {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid var(--blue-primary);
    box-shadow: 0 0 50px rgba(0, 102, 204, 0.3), inset 0 0 30px rgba(0, 0, 0, 0.3);
}

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

/* Stats Section */
.stats-section {
    padding: 80px 30px;
    background: linear-gradient(180deg, var(--navy) 0%, #0d1e33 100%);
}

.stats-section h2 {
    font-family: 'Exo 2', sans-serif;
    text-align: center;
    font-size: 36px;
    color: var(--white);
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-card {
    background: linear-gradient(145deg, rgba(0, 61, 122, 0.4) 0%, rgba(10, 22, 40, 0.6) 100%);
    border: 1px solid rgba(0, 180, 216, 0.2);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 180, 216, 0.15);
}

.stat-icon {
    font-size: 42px;
    margin-bottom: 15px;
    display: block;
}

.stat-card h4 {
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    color: var(--white);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-card p {
    color: var(--silver);
    font-size: 14px;
}

/* Content Area */
.content-area {
    padding: 70px 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.content-area h1 {
    font-family: 'Exo 2', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 35px;
    text-align: center;
    background: linear-gradient(90deg, var(--white) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-area h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 26px;
    color: var(--accent-cyan);
    margin: 40px 0 18px;
    font-weight: 700;
}

.content-area p {
    margin-bottom: 18px;
    color: var(--silver);
    font-size: 16px;
}

.content-area ul {
    margin-left: 28px;
    margin-bottom: 22px;
}

.content-area ul li {
    margin-bottom: 10px;
    color: var(--silver);
}

/* Footer */
footer {
    background: rgba(10, 22, 40, 0.98);
    padding: 55px 30px 35px;
    border-top: 2px solid var(--blue-primary);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-content h4 {
    font-family: 'Exo 2', sans-serif;
    color: var(--accent-cyan);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.gaming-links {
    display: flex;
    justify-content: center;
    gap: 45px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.gaming-links a {
    color: var(--silver);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.gaming-links a:hover {
    color: var(--accent-cyan);
}

.footer-text {
    color: var(--silver);
    font-size: 13px;
    padding-top: 25px;
    border-top: 1px solid rgba(192, 192, 192, 0.2);
    opacity: 0.8;
}

/* Age Gate */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-gate-box {
    background: linear-gradient(145deg, var(--blue-dark) 0%, var(--navy) 100%);
    padding: 50px 45px;
    border-radius: 16px;
    text-align: center;
    max-width: 500px;
    width: 92%;
    border: 2px solid var(--accent-cyan);
    box-shadow: 0 0 60px rgba(0, 180, 216, 0.2);
}

.age-gate-box h2 {
    font-family: 'Exo 2', sans-serif;
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.age-gate-box p {
    color: var(--silver);
    font-size: 16px;
    margin-bottom: 35px;
    line-height: 1.7;
}

.gate-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
}

.gate-btn {
    padding: 14px 40px;
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gate-btn.enter {
    background: var(--accent-cyan);
    color: var(--navy);
}

.gate-btn.enter:hover {
    background: #00d4ff;
    box-shadow: 0 0 25px rgba(0, 180, 216, 0.5);
}

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

.gate-btn.leave:hover {
    background: var(--silver);
    color: var(--navy);
}

.access-denied {
    text-align: center;
    padding: 100px 30px;
}

.access-denied h1 {
    font-family: 'Exo 2', sans-serif;
    color: #ff4757;
    font-size: 40px;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--navy);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .nav-menu ul li a {
        font-size: 18px;
    }
    
    .intro-section h1 {
        font-size: 34px;
    }
    
    .intro-section .intro-text {
        font-size: 16px;
    }
    
    .notice-pills {
        flex-direction: column;
        align-items: center;
    }
    
    .notice-pill {
        width: 100%;
        max-width: 400px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .arena-frame iframe {
        height: 440px;
    }
    
    .logo-name {
        font-size: 18px;
    }
    
    .logo-mark {
        width: 36px;
        height: 36px;
    }
    
    .age-gate-box {
        padding: 35px 25px;
    }
    
    .gate-buttons {
        flex-direction: column;
    }
    
    .gaming-links {
        flex-direction: column;
        gap: 15px;
    }
}
