* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
}

/* Age Gate */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 12, 41, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.age-gate.hidden {
    display: none;
}

.age-gate-content {
    background: linear-gradient(135deg, #1a1447 0%, #2d2463 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 2px solid #5B21B6;
    box-shadow: 0 0 50px rgba(91, 33, 182, 0.5);
}

.age-gate-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.age-gate-content h2 {
    font-family: 'Orbitron', sans-serif;
    color: #FCD34D;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.age-gate-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.age-gate-disclaimer {
    font-size: 0.9rem;
    color: #9ca3af;
    font-style: italic;
}

.age-gate-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.age-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Orbitron', sans-serif;
}

.age-yes {
    background: linear-gradient(135deg, #5B21B6 0%, #7C3AED 100%);
    color: white;
}

.age-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(91, 33, 182, 0.6);
}

.age-no {
    background: #374151;
    color: #e0e0e0;
}

.age-no:hover {
    background: #4B5563;
}

/* Header */
.site-header {
    background: rgba(15, 12, 41, 0.95);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #5B21B6;
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #FCD34D;
    text-decoration: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background: #FCD34D;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    font-family: 'Orbitron', sans-serif;
}

.main-nav a:hover {
    color: #FCD34D;
}

/* Hero Section */
.hero-section {
    padding: 6rem 2rem;
    text-align: center;
    background: radial-gradient(circle at center, rgba(91, 33, 182, 0.3) 0%, transparent 70%);
}

.hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    color: #FCD34D;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(252, 211, 77, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #c4b5fd;
    margin-bottom: 2rem;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: rgba(91, 33, 182, 0.5);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    border: 1px solid #7C3AED;
}

/* Content Wrapper */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Intro Section */
.intro-section {
    padding: 4rem 2rem;
}

.intro-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #FCD34D;
    margin-bottom: 2rem;
    text-align: center;
}

.intro-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Important Notices */
.important-notices {
    padding: 4rem 2rem;
    background: rgba(91, 33, 182, 0.1);
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.notice-card {
    background: linear-gradient(135deg, rgba(26, 20, 71, 0.8) 0%, rgba(45, 36, 99, 0.8) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #5B21B6;
    text-align: center;
}

.notice-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.notice-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: #FCD34D;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Game Section */
.game-section {
    padding: 4rem 2rem;
}

.game-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #FCD34D;
    margin-bottom: 1rem;
    text-align: center;
}

.game-section > .content-wrapper > p {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.game-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #5B21B6;
    box-shadow: 0 10px 50px rgba(91, 33, 182, 0.5);
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

/* Features Section */
.features-section {
    padding: 4rem 2rem;
    background: rgba(91, 33, 182, 0.1);
}

.features-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #FCD34D;
    margin-bottom: 3rem;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-family: 'Orbitron', sans-serif;
    color: #FCD34D;
    margin-bottom: 1rem;
}

/* Community Section */
.community-section {
    padding: 4rem 2rem;
}

.community-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #FCD34D;
    margin-bottom: 2rem;
    text-align: center;
}

.community-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.stats-display {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: #FCD34D;
    font-weight: 900;
}

.stat-label {
    font-size: 1.1rem;
    color: #c4b5fd;
}

/* Play Page */
.play-hero {
    padding: 4rem 2rem;
    text-align: center;
    background: radial-gradient(circle at center, rgba(91, 33, 182, 0.3) 0%, transparent 70%);
}

.play-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: #FCD34D;
    margin-bottom: 1rem;
}

.game-play-section {
    padding: 2rem;
}

.game-info {
    margin-bottom: 2rem;
}

.game-info h2 {
    font-family: 'Orbitron', sans-serif;
    color: #FCD34D;
    margin-bottom: 1rem;
}

.game-tips {
    list-style: none;
    margin: 1.5rem 0;
}

.game-tips li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

.game-reminder {
    background: rgba(91, 33, 182, 0.3);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #FCD34D;
    margin-top: 1.5rem;
}

.game-container-play {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #5B21B6;
    box-shadow: 0 10px 50px rgba(91, 33, 182, 0.5);
}

.game-frame-full {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

/* Legal Pages */
.legal-hero {
    padding: 4rem 2rem;
    text-align: center;
    background: radial-gradient(circle at center, rgba(91, 33, 182, 0.3) 0%, transparent 70%);
}

.legal-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: #FCD34D;
    margin-bottom: 1rem;
}

.legal-update {
    font-size: 1.1rem;
    color: #9ca3af;
}

.legal-content {
    padding: 4rem 2rem;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-family: 'Orbitron', sans-serif;
    color: #FCD34D;
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Footer */
.site-footer {
    background: rgba(15, 12, 41, 0.95);
    padding: 3rem 2rem;
    margin-top: 4rem;
    border-top: 2px solid #5B21B6;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    font-family: 'Orbitron', sans-serif;
    color: #FCD34D;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #FCD34D;
}

.copyright {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #9ca3af;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background: rgba(15, 12, 41, 0.98);
        flex-direction: column;
        padding: 2rem;
        transition: right 0.3s;
        border-left: 2px solid #5B21B6;
    }

    .main-nav.active {
        right: 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .game-frame {
        height: 400px;
    }

    .game-frame-full {
        height: 500px;
    }

    .stats-display {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .notice-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .age-gate-content {
        padding: 2rem;
    }

    .age-gate-content h2 {
        font-size: 1.5rem;
    }

    .logo span {
        font-size: 1.2rem;
    }

    .game-frame {
        height: 300px;
    }

    .game-frame-full {
        height: 400px;
    }
}
