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

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

:root {
    --primary: #8B5CF6;
    --secondary: #D946EF;
    --accent: #F59E0B;
    --dark-bg: #0F0A1F;
    --card-bg: #1A1230;
    --text: #E8E4F0;
    --text-muted: #9D8CB0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--dark-bg);
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh;
}

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

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

a:hover {
    color: var(--secondary);
}

/* Header */
.site-header {
    background: linear-gradient(135deg, rgba(15,10,31,0.98) 0%, rgba(26,18,48,0.98) 100%);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(139,92,246,0.2);
    backdrop-filter: blur(10px);
}

.header-inner {
    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(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-desktop a {
    color: var(--text);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-desktop a:hover {
    background: rgba(139,92,246,0.2);
    color: var(--primary);
}

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

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

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    border-bottom: 1px solid rgba(139,92,246,0.3);
    padding: 1rem;
    flex-direction: column;
    gap: 0.5rem;
}

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

.mobile-nav a {
    color: var(--text);
    padding: 1rem;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    background: rgba(139,92,246,0.2);
}

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

/* Hero Section */
.hero-cosmic {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
    background: radial-gradient(ellipse at center, rgba(139,92,246,0.15) 0%, transparent 70%),
                linear-gradient(180deg, var(--dark-bg) 0%, #150F28 100%);
    position: relative;
    overflow: hidden;
}

.hero-cosmic::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(217,70,239,0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: pulse-glow 8s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.hero-cosmic h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: title-shimmer 3s ease-in-out infinite;
}

@keyframes title-shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139,92,246,0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(139,92,246,0.6);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

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

.notice-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(139,92,246,0.2);
    transition: all 0.4s ease;
}

.notice-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(139,92,246,0.2);
}

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

.notice-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.notice-card p {
    color: var(--text-muted);
}

/* Game Section */
.game-showcase {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #150F28 0%, var(--dark-bg) 100%);
}

.game-showcase h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
    color: var(--accent);
}

.game-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgba(139,92,246,0.3);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

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

/* Info Section */
.info-section {
    padding: 5rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.info-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.info-section p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

/* Footer */
.site-footer {
    background: linear-gradient(180deg, var(--dark-bg), #080510);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(139,92,246,0.2);
}

.footer-inner {
    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(--primary);
    margin-bottom: 2rem;
}

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

.footer-links a {
    color: var(--text-muted);
}

.responsible-gaming {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(139,92,246,0.1);
}

.responsible-gaming h4 {
    font-size: 0.9rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.responsible-gaming-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.copyright {
    margin-top: 2rem;
    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: 9999;
    padding: 2rem;
}

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

.age-modal-content {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    max-width: 500px;
    border: 2px solid var(--primary);
    box-shadow: 0 0 60px rgba(139,92,246,0.3);
}

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

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

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

.age-btn {
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.age-btn.yes {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
}

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

.age-btn:hover {
    transform: scale(1.05);
}

/* Page Styles */
.page-header {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(139,92,246,0.1) 0%, transparent 70%);
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.content-section h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: var(--accent);
}

.content-section h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: var(--primary);
}

.content-section p, .content-section li {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.content-section ul {
    list-style: none;
    padding-left: 1.5rem;
}

.content-section ul li::before {
    content: '✦';
    color: var(--primary);
    margin-right: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-cosmic {
        min-height: 80vh;
        padding: 3rem 1.5rem;
    }
    
    .notices-grid {
        padding: 3rem 1.5rem;
    }
    
    .game-container iframe {
        height: 500px;
    }
    
    .age-modal-content {
        padding: 2rem;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .responsible-gaming-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}
