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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 100%);
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Header */
.header {
    background: rgba(10, 10, 26, 0.95);
    border-bottom: 2px solid #00d4ff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: #00d4ff;
    text-decoration: none;
}

.nav-desktop {
    display: flex;
    gap: 30px;
}

.nav-desktop a {
    color: #b0b0b0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: #00d4ff;
}

.nav-desktop a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00d4ff;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #00d4ff;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    background: rgba(10, 10, 26, 0.98);
    border-bottom: 2px solid #00d4ff;
    padding: 20px;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu a {
    color: #b0b0b0;
    text-decoration: none;
    font-weight: 500;
    padding: 10px;
    border-left: 3px solid transparent;
    transition: all 0.3s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: #00d4ff;
    border-left-color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
}

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

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

.age-popup-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    border: 2px solid #00d4ff;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.age-popup-logo {
    font-size: 60px;
    margin-bottom: 20px;
}

.age-popup-content h2 {
    color: #00d4ff;
    margin-bottom: 15px;
    font-size: 28px;
}

.age-popup-content p {
    margin-bottom: 10px;
    color: #e0e0e0;
}

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

.btn-confirm,
.btn-decline {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
}

.btn-confirm {
    background: #00d4ff;
    color: #0a0a1a;
}

.btn-confirm:hover {
    background: #00a8cc;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.btn-decline {
    background: #ff4444;
    color: white;
}

.btn-decline:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 68, 68, 0.4);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, transparent 100%);
}

.hero h1 {
    font-size: 48px;
    color: #00d4ff;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    color: #b0b0b0;
    margin-bottom: 30px;
}

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

.badge {
    background: rgba(0, 212, 255, 0.15);
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid #00d4ff;
    color: #00d4ff;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 60px 0;
}

.about h2 {
    text-align: center;
    font-size: 36px;
    color: #00d4ff;
    margin-bottom: 20px;
}

.about > .container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #b0b0b0;
    font-size: 18px;
}

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

.feature-card {
    background: rgba(26, 26, 46, 0.5);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #00d4ff;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

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

.feature-card h3 {
    color: #00d4ff;
    margin-bottom: 15px;
    font-size: 22px;
}

.feature-card p {
    color: #b0b0b0;
    line-height: 1.7;
}

/* Game Section */
.game-section {
    padding: 60px 0;
    background: rgba(0, 212, 255, 0.05);
}

.game-section h2 {
    text-align: center;
    font-size: 36px;
    color: #00d4ff;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #b0b0b0;
    margin-bottom: 40px;
    font-size: 18px;
}

.game-container {
    max-width: 900px;
    margin: 0 auto;
    background: #0a0a1a;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #00d4ff;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

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

.game-info {
    max-width: 900px;
    margin: 20px auto 0;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.game-info p {
    color: #b0b0b0;
    background: rgba(26, 26, 46, 0.5);
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

/* Stats Section */
.stats {
    padding: 60px 0;
}

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

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(26, 26, 46, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.stat-number {
    font-size: 48px;
    color: #00d4ff;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    color: #b0b0b0;
    font-size: 16px;
}

/* Info Widget */
.info-widget {
    padding: 60px 0;
}

.widget-content {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(26, 26, 46, 0.5) 100%);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.widget-content h3 {
    color: #00d4ff;
    margin-bottom: 20px;
    font-size: 28px;
}

.widget-content p {
    color: #b0b0b0;
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Play Page */
.play-section {
    padding: 60px 0;
    min-height: calc(100vh - 300px);
}

.play-section h1 {
    text-align: center;
    font-size: 42px;
    color: #00d4ff;
    margin-bottom: 10px;
}

.play-subtitle {
    text-align: center;
    color: #b0b0b0;
    margin-bottom: 40px;
    font-size: 18px;
}

.play-notice {
    max-width: 800px;
    margin: 0 auto 40px;
    background: rgba(0, 212, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #00d4ff;
}

.play-notice h3 {
    color: #00d4ff;
    margin-bottom: 15px;
}

.play-notice ul {
    list-style: none;
    color: #b0b0b0;
}

.play-notice li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.play-notice li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #00d4ff;
}

.play-reminder {
    max-width: 800px;
    margin: 20px auto 0;
    text-align: center;
    padding: 20px;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
    border-radius: 8px;
    color: #ffaaaa;
}

/* Legal Pages */
.legal-content {
    padding: 60px 0;
    min-height: calc(100vh - 300px);
}

.legal-content h1 {
    font-size: 42px;
    color: #00d4ff;
    margin-bottom: 10px;
}

.legal-updated {
    color: #888;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-section {
    margin-bottom: 40px;
    background: rgba(26, 26, 46, 0.3);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #00d4ff;
}

.legal-section h2 {
    color: #00d4ff;
    margin-bottom: 15px;
    font-size: 28px;
}

.legal-section h3 {
    color: #00a8cc;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 20px;
}

.legal-section p {
    color: #b0b0b0;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 25px;
    color: #b0b0b0;
}

.legal-section li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-section a {
    color: #00d4ff;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.disclaimer-warning {
    background: rgba(255, 68, 68, 0.1);
    border-left-color: #ff4444;
}

.disclaimer-warning h2 {
    color: #ff6666;
}

/* Footer */
.footer {
    background: #0a0a1a;
    border-top: 2px solid #00d4ff;
    padding: 40px 0 20px;
    margin-top: 60px;
}

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

.footer-section h4 {
    color: #00d4ff;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section p {
    color: #888;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #00d4ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 212, 255, 0.3);
    color: #888;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .about h2,
    .game-section h2 {
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .game-frame {
        height: 400px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .age-popup-content {
        margin: 20px;
        padding: 30px 20px;
    }

    .age-popup-content h2 {
        font-size: 24px;
    }

    .age-buttons {
        flex-direction: column;
    }

    .btn-confirm,
    .btn-decline {
        width: 100%;
    }

    .legal-content h1 {
        font-size: 32px;
    }

    .legal-section h2 {
        font-size: 24px;
    }
}
