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

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

:root {
    --primary-dark: #0a0e17;
    --secondary-dark: #111827;
    --accent-cyan: #00d4ff;
    --accent-purple: #9333ea;
    --accent-teal: #14b8a6;
    --text-light: #f1f5f9;
    --text-muted: #94a3b8;
    --glow-cyan: 0 0 30px rgba(0, 212, 255, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-teal);
    text-shadow: var(--glow-cyan);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.nav-desktop {
    display: flex;
    gap: 2rem;
}

.nav-desktop a {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-desktop a:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-cyan);
}

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

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--accent-cyan);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 14, 23, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--text-light);
}

.close-menu {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2.5rem;
    cursor: pointer;
    color: var(--accent-cyan);
}

/* Main Content */
main {
    padding-top: 80px;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
    background: 
        radial-gradient(ellipse at top, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
        var(--primary-dark);
}

.hero-section h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--text-light), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-teal));
    color: var(--primary-dark);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    box-shadow: var(--glow-cyan);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.6);
    color: var(--primary-dark);
}

/* Notices Section */
.notices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.notice-card {
    background: var(--secondary-dark);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.notice-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
    box-shadow: var(--glow-cyan);
}

.notice-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.notice-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--accent-cyan);
}

.notice-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Game Section */
.game-section {
    padding: 4rem 2rem;
    background: var(--secondary-dark);
}

.game-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--accent-cyan);
}

.game-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(0, 212, 255, 0.3);
    box-shadow: var(--glow-cyan);
}

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

/* Features Section */
.features-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(17, 24, 39, 0.5);
    border-radius: 12px;
    border-left: 4px solid var(--accent-purple);
}

.feature-item .icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Page Content */
.page-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
    min-height: 80vh;
}

.page-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--accent-cyan);
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
    padding-bottom: 1rem;
}

.page-content h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-light);
}

.page-content p {
    margin-bottom: 1.25rem;
    color: var(--text-muted);
}

.page-content ul {
    margin: 1rem 0 1.5rem 2rem;
    color: var(--text-muted);
}

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

/* Play Page */
.play-header {
    text-align: center;
    padding: 2rem;
}

.play-header h1 {
    border: none;
    padding: 0;
}

.game-note {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem auto 2rem;
    max-width: 600px;
    text-align: center;
}

.game-note p {
    margin: 0;
    color: var(--text-light);
}

/* Footer */
.site-footer {
    background: var(--secondary-dark);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: 3rem 2rem;
}

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

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
}

.responsible-gambling {
    margin-bottom: 1.5rem;
}

.responsible-gambling p {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.responsible-gambling a {
    margin: 0 1rem;
    font-size: 0.9rem;
}

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

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-modal.hidden {
    display: none;
}

.age-modal-content {
    background: var(--secondary-dark);
    border: 2px solid var(--accent-cyan);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    margin: 1rem;
    box-shadow: var(--glow-cyan);
}

.age-modal-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-cyan);
}

.age-modal-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-btn {
    padding: 1rem 2.5rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-btn.yes {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-teal));
    color: var(--primary-dark);
}

.age-btn.yes:hover {
    box-shadow: var(--glow-cyan);
    transform: scale(1.05);
}

.age-btn.no {
    background: transparent;
    border: 2px solid var(--accent-purple);
    color: var(--text-light);
}

.age-btn.no:hover {
    background: var(--accent-purple);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .header-container {
        padding: 1rem;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .notices-grid {
        padding: 2rem 1rem;
    }
    
    .game-section {
        padding: 2rem 1rem;
    }
    
    .game-container iframe {
        height: 450px;
    }
    
    .features-section {
        padding: 3rem 1rem;
    }
    
    .page-content {
        padding: 5rem 1rem 3rem;
    }
    
    .age-modal-content {
        padding: 2rem;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .responsible-gambling a {
        display: block;
        margin: 0.5rem 0;
    }
}
