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

:root {
    --primary-color: #6c5ce7;
    --secondary-color: #00b8d4;
    --dark-bg: #0a0e27;
    --card-bg: #1a1f3a;
    --text-light: #e8eaf6;
    --text-dim: #9fa8da;
    --accent-glow: #a29bfe;
    --success: #00e676;
    --warning: #ffd600;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.age-gate-content {
    background: linear-gradient(135deg, #1a1f3a 0%, #2d3561 100%);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(108, 92, 231, 0.3);
    border: 2px solid var(--primary-color);
}

.age-gate-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.age-gate-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.age-gate-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-dim);
}

.age-gate-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn-yes, .btn-no {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
}

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

.btn-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(108, 92, 231, 0.5);
}

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

.btn-no:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Header */
header {
    background: rgba(26, 31, 58, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-light);
}

.logo-icon {
    font-size: 36px;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover, nav a.active {
    color: var(--secondary-color);
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
    overflow: hidden;
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent);
    background-size: 200% 200%;
    animation: twinkle 8s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

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

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: rgba(108, 92, 231, 0.2);
    border: 2px solid var(--primary-color);
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

/* Intro Section */
.intro {
    padding: 80px 20px;
    background: var(--dark-bg);
}

.intro h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    text-align: center;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.intro p {
    font-size: 18px;
    color: var(--text-dim);
    max-width: 900px;
    margin: 0 auto 20px;
    text-align: center;
}

/* Notices Section */
.notices {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--card-bg) 100%);
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.notice-card {
    background: rgba(26, 31, 58, 0.8);
    padding: 40px 30px;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    text-align: center;
    transition: transform 0.3s ease;
}

.notice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
}

.notice-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.notice-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.notice-card p {
    color: var(--text-dim);
    font-size: 16px;
}

/* Game Showcase */
.game-showcase {
    padding: 80px 20px;
    background: var(--dark-bg);
}

.game-showcase h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.game-description {
    text-align: center;
    font-size: 18px;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto 40px;
}

.game-container {
    max-width: 900px;
    margin: 0 auto 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 184, 212, 0.3);
    border: 3px solid var(--secondary-color);
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin: 0 auto;
    display: table;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(108, 92, 231, 0.5);
}

/* Features Section */
.features {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--card-bg) 100%);
}

.features h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    background: rgba(26, 31, 58, 0.6);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(108, 92, 231, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.feature-item p {
    color: var(--text-dim);
    font-size: 15px;
}

/* Info Panel */
.info-panel {
    padding: 80px 20px;
    background: var(--dark-bg);
}

.info-content {
    max-width: 900px;
    margin: 0 auto;
}

.info-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
    text-align: center;
}

.info-content p {
    font-size: 17px;
    color: var(--text-dim);
    margin-bottom: 20px;
    text-align: center;
}

.info-highlight {
    background: rgba(108, 92, 231, 0.15);
    border-left: 4px solid var(--primary-color);
    padding: 20px 25px;
    margin-top: 30px;
    border-radius: 8px;
    font-size: 16px;
    color: var(--text-light);
}

/* Footer */
footer {
    background: var(--card-bg);
    padding: 50px 20px 20px;
    border-top: 2px solid var(--primary-color);
}

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

.footer-section h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.footer-section p {
    color: var(--text-dim);
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(108, 92, 231, 0.3);
    color: var(--text-dim);
    font-size: 14px;
}

/* Play Page */
.play-page {
    padding: 60px 20px;
    min-height: calc(100vh - 200px);
}

.play-page h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.play-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-dim);
    max-width: 800px;
    margin: 0 auto 40px;
}

.game-info {
    max-width: 800px;
    margin: 0 auto 40px;
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
}

.game-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.game-info ul {
    color: var(--text-dim);
    margin-left: 20px;
    margin-bottom: 20px;
}

.game-info ul li {
    margin-bottom: 8px;
}

.game-container-full {
    max-width: 100%;
    margin: 0 auto 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 184, 212, 0.3);
    border: 3px solid var(--secondary-color);
}

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

.game-reminder {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 214, 0, 0.1);
    border: 2px solid var(--warning);
    border-radius: 10px;
    text-align: center;
    color: var(--text-light);
}

/* Legal Pages */
.legal-page {
    padding: 60px 20px;
    min-height: calc(100vh - 200px);
}

.legal-page h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.last-updated {
    color: var(--text-dim);
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.legal-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    margin-bottom: 12px;
    margin-top: 20px;
    color: var(--text-light);
}

.legal-section p {
    color: var(--text-dim);
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-section ul, .legal-section ol {
    color: var(--text-dim);
    margin-left: 30px;
    margin-bottom: 15px;
}

.legal-section li {
    margin-bottom: 8px;
}

.disclaimer-notice {
    background: rgba(108, 92, 231, 0.2);
    border: 2px solid var(--primary-color);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.disclaimer-notice p {
    color: var(--text-light);
    font-size: 16px;
    margin: 0;
}

.disclaimer-footer-notice {
    background: rgba(0, 184, 212, 0.15);
    border: 2px solid var(--secondary-color);
    padding: 25px;
    border-radius: 10px;
    margin-top: 40px;
}

.disclaimer-footer-notice p {
    color: var(--text-light);
    font-size: 16px;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--card-bg);
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }
    
    nav.active {
        right: 0;
    }
    
    nav a {
        font-size: 18px;
        padding: 15px 0;
        border-bottom: 1px solid rgba(108, 92, 231, 0.3);
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .intro h2, .features h2, .game-showcase h2 {
        font-size: 32px;
    }
    
    .notice-grid, .features-grid {
        grid-template-columns: 1fr;
    }
    
    .game-frame {
        height: 450px;
    }
    
    .game-frame-full {
        height: 500px;
    }
    
    .play-page h1, .legal-page h1 {
        font-size: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 22px;
    }
    
    .logo-icon {
        font-size: 28px;
    }
    
    .hero {
        padding: 60px 20px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .age-gate-content {
        padding: 30px 20px;
    }
    
    .age-gate-icon {
        font-size: 60px;
    }
    
    .age-gate-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-yes, .btn-no {
        width: 100%;
    }
}
