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

:root {
    --primary-neon: #00f5ff;
    --secondary-neon: #ff00ea;
    --accent-gold: #ffd700;
    --dark-bg: #0a0a0f;
    --card-bg: #12121a;
    --text-light: #e8e8f0;
    --text-muted: #8888aa;
}

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

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

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

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

a:hover {
    color: var(--secondary-neon);
    text-shadow: 0 0 10px var(--secondary-neon);
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background: linear-gradient(180deg, rgba(10,10,15,0.98) 0%, rgba(18,18,26,0.95) 100%);
    border-bottom: 2px solid var(--primary-neon);
    box-shadow: 0 0 30px rgba(0,245,255,0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-neon) 0%, var(--secondary-neon) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    letter-spacing: 2px;
}

.logo-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-neon) 0%, var(--secondary-neon) 100%);
    border-radius: 8px;
    margin-right: 10px;
    vertical-align: middle;
    position: relative;
}

.logo-icon::after {
    content: 'G';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--dark-bg);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

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

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-neon);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 150px 20px 80px;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(0,245,255,0.1) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%2300f5ff" opacity="0.3"/></svg>') repeat;
    background-size: 50px 50px;
    animation: starfield 60s linear infinite;
    opacity: 0.5;
}

@keyframes starfield {
    from { transform: translateY(0); }
    to { transform: translateY(-50px); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 0 40px var(--primary-neon);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px var(--primary-neon); }
    to { text-shadow: 0 0 40px var(--primary-neon), 0 0 60px var(--secondary-neon); }
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Notice Cards */
.notices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.notice-card {
    background: var(--card-bg);
    border: 1px solid rgba(0,245,255,0.3);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.notice-card:hover {
    border-color: var(--primary-neon);
    box-shadow: 0 0 30px rgba(0,245,255,0.2);
    transform: translateY(-5px);
}

.notice-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.notice-card h3 {
    color: var(--primary-neon);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

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

/* Game Section */
.game-section {
    padding: 60px 20px;
    text-align: center;
}

.game-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--accent-gold);
}

.game-wrapper {
    background: var(--card-bg);
    border: 2px solid var(--primary-neon);
    border-radius: 16px;
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 0 50px rgba(0,245,255,0.2);
}

.game-wrapper iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 8px;
}

/* Features Section */
.features {
    padding: 80px 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(0,245,255,0.05) 50%, transparent 100%);
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-box {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255,0,234,0.2);
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: var(--secondary-neon);
    box-shadow: 0 0 30px rgba(255,0,234,0.15);
}

.feature-box h3 {
    font-size: 1.4rem;
    color: var(--secondary-neon);
    margin-bottom: 15px;
}

.feature-box p {
    color: var(--text-muted);
}

/* Content Section */
.content-section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-neon);
}

.content-section p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.content-section ul {
    list-style: none;
    margin: 20px 0;
}

.content-section li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: var(--text-muted);
}

.content-section li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-neon);
}

/* Footer */
.site-footer {
    background: var(--card-bg);
    border-top: 2px solid var(--primary-neon);
    padding: 50px 20px 30px;
    margin-top: 60px;
}

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

.footer-links {
    margin-bottom: 30px;
}

.footer-links h4 {
    color: var(--primary-neon);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-links a {
    display: inline-block;
    margin: 0 15px;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--secondary-neon);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(0,245,255,0.2);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10,10,15,0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

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

.age-modal-content {
    background: var(--card-bg);
    border: 2px solid var(--primary-neon);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    max-width: 500px;
    margin: 20px;
    box-shadow: 0 0 80px rgba(0,245,255,0.3);
}

.age-modal h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.age-modal p {
    margin-bottom: 30px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

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

.age-btn.yes {
    background: linear-gradient(135deg, var(--primary-neon) 0%, #00a8b0 100%);
    color: var(--dark-bg);
}

.age-btn.yes:hover {
    box-shadow: 0 0 30px rgba(0,245,255,0.5);
    transform: scale(1.05);
}

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

.age-btn.no:hover {
    background: var(--secondary-neon);
    color: var(--dark-bg);
}

/* Page Specific */
.page-header {
    padding: 140px 20px 60px;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(255,0,234,0.1) 0%, transparent 70%);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--card-bg);
        border-bottom: 2px solid var(--primary-neon);
        padding: 20px;
        display: none;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-nav a {
        display: block;
        padding: 12px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .notices {
        grid-template-columns: 1fr;
    }
    
    .game-wrapper iframe {
        height: 450px;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .age-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.4rem;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .game-wrapper iframe {
        height: 350px;
    }
}
