@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Exo+2:wght@300;400;500;600&display=swap');

:root {
    --neon-cyan: #00f5ff;
    --neon-pink: #ff00ff;
    --dark-bg: #0a0a0f;
    --panel-bg: #12121a;
    --card-bg: #1a1a25;
    --text-white: #ffffff;
    --text-gray: #9ca3af;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--dark-bg);
    color: var(--text-white);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 245, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 245, 255, 0.2);
}

.header-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
}

.brand-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background: var(--neon-cyan);
    margin: 4px 0;
    transition: 0.3s ease;
    box-shadow: 0 0 8px var(--neon-cyan);
}

.hamburger.open span:first-child {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    font-family: 'Orbitron', sans-serif;
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--neon-cyan);
}

.nav-menu a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 15px var(--neon-cyan);
}

.nav-menu a:hover::before {
    width: 100%;
}

main {
    position: relative;
    z-index: 1;
    padding-top: 80px;
}

.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 
        0 0 30px rgba(0, 245, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3);
}

.hero h1 span {
    display: block;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.play-btn {
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--dark-bg);
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
    padding: 1.2rem 4rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 20px rgba(0, 245, 255, 0.5),
        0 0 40px rgba(255, 0, 255, 0.3);
}

.play-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 30px rgba(0, 245, 255, 0.7),
        0 0 60px rgba(255, 0, 255, 0.5);
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.info-box {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 245, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.info-box:hover {
    border-color: rgba(0, 245, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.2);
    transform: translateY(-5px);
}

.info-box-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.info-box h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.info-box p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.game-area {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.game-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

.game-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(0, 245, 255, 0.3);
    box-shadow: 
        0 0 30px rgba(0, 245, 255, 0.2),
        inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.game-wrapper iframe {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
    background: #000;
}

.stats-section {
    padding: 4rem 2rem;
    background: var(--panel-bg);
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--neon-pink);
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-section {
    padding: 5rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.about-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
}

.about-section p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-section ul {
    list-style: none;
    margin: 1.5rem 0;
}

.about-section li {
    color: var(--text-gray);
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
}

.about-section li::before {
    content: '▹';
    color: var(--neon-pink);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.site-footer {
    background: var(--panel-bg);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(0, 245, 255, 0.2);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-cyan);
    margin-bottom: 2rem;
    text-shadow: 0 0 15px rgba(0, 245, 255, 0.5);
}

.gambling-links {
    margin-bottom: 2rem;
}

.gambling-links h4 {
    color: var(--text-white);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.gambling-links a {
    color: var(--text-gray);
    text-decoration: none;
    margin: 0 1.5rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.gambling-links a:hover {
    color: var(--neon-cyan);
}

.footer-legal {
    border-top: 1px solid rgba(0, 245, 255, 0.1);
    padding-top: 2rem;
    color: var(--text-gray);
    font-size: 0.85rem;
}

.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 15, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-gate.hidden {
    display: none;
}

.age-modal {
    background: var(--card-bg);
    padding: 3.5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 480px;
    border: 1px solid rgba(0, 245, 255, 0.3);
    box-shadow: 
        0 0 40px rgba(0, 245, 255, 0.2),
        0 0 80px rgba(255, 0, 255, 0.1);
}

.age-modal h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.age-modal p {
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.age-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-confirm, .age-deny {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 1px;
}

.age-confirm {
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
    color: var(--dark-bg);
}

.age-confirm:hover {
    box-shadow: 0 0 25px rgba(0, 245, 255, 0.6);
}

.age-deny {
    background: transparent;
    color: var(--text-gray);
    border: 1px solid var(--text-gray);
}

.age-deny:hover {
    border-color: #ff4444;
    color: #ff4444;
}

.page-hero {
    padding: 10rem 2rem 4rem;
    text-align: center;
}

.page-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
    margin-bottom: 1rem;
}

.page-hero p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.content-area {
    max-width: 950px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}

.content-area h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: var(--neon-cyan);
    margin: 3rem 0 1.5rem;
}

.content-area h3 {
    color: var(--neon-pink);
    margin: 2rem 0 1rem;
    font-size: 1.1rem;
}

.content-area p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-area ul {
    list-style: none;
    margin: 1rem 0;
}

.content-area li {
    color: var(--text-gray);
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.content-area li::before {
    content: '◈';
    color: var(--neon-pink);
    position: absolute;
    left: 0;
}

.game-tips {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid rgba(0, 245, 255, 0.2);
}

.game-tips h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
}

.game-tips p {
    color: var(--text-gray);
}

@media (max-width: 992px) {
    .info-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .info-boxes {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .game-wrapper iframe {
        height: 500px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .age-modal {
        margin: 1rem;
        padding: 2.5rem;
    }
    
    .age-actions {
        flex-direction: column;
    }
    
    .gambling-links a {
        display: block;
        margin: 0.5rem 0;
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding: 1rem;
    }
    
    .brand-text {
        font-size: 1.2rem;
    }
    
    .brand-icon {
        width: 35px;
        height: 35px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .play-btn {
        padding: 1rem 2.5rem;
    }
    
    .game-wrapper iframe {
        height: 400px;
    }
    
    .game-title {
        font-size: 1.8rem;
    }
}
