* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #9c27b0;
    --secondary-color: #673ab7;
    --dark-bg: #0a0014;
    --card-bg: #1a0b2e;
    --accent: #e91e63;
    --text-light: #ffffff;
    --text-muted: #b39ddb;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #0a0014 0%, #1a0b2e 50%, #16213e 100%);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
}

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 0, 20, 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, var(--card-bg) 0%, #2d1b4e 100%);
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    text-align: center;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 50px rgba(156, 39, 176, 0.5);
}

.age-gate-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.age-gate-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.age-gate-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.age-gate-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.btn-confirm,
.btn-decline {
    padding: 1rem 2rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirm {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(156, 39, 176, 0.6);
}

.btn-decline {
    background: #333;
    color: white;
}

.btn-decline:hover {
    background: #555;
}

.main-header {
    background: rgba(26, 11, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo svg {
    height: 50px;
    width: auto;
}

.main-nav {
    position: relative;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hero {
    padding: 5rem 2rem;
    text-align: center;
    background: radial-gradient(circle at center, rgba(156, 39, 176, 0.2) 0%, transparent 70%);
}

.hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #9c27b0 0%, #e91e63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.feature-badge {
    background: rgba(26, 11, 46, 0.8);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
}

.badge-icon {
    font-size: 1.5rem;
}

.intro-section,
.notice-section,
.community-section {
    padding: 4rem 2rem;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary-color);
}

.content-wrapper p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.game-showcase {
    padding: 4rem 2rem;
    background: rgba(26, 11, 46, 0.5);
}

.section-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.game-container {
    margin: 2rem auto;
    max-width: 100%;
    border: 3px solid var(--primary-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(156, 39, 176, 0.3);
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.game-info {
    text-align: center;
    margin-top: 2rem;
}

.game-info p {
    display: inline-block;
    margin: 0.5rem 1rem;
    padding: 0.5rem 1rem;
    background: rgba(26, 11, 46, 0.8);
    border-radius: 20px;
    font-size: 1rem;
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.notice-card {
    background: rgba(26, 11, 46, 0.8);
    padding: 2rem;
    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(156, 39, 176, 0.4);
}

.notice-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.notice-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.notice-card p {
    font-size: 1rem;
    color: var(--text-muted);
}

.community-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
}

.stat-label {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.community-text {
    text-align: center;
    max-width: 800px;
    margin: 2rem auto;
    font-size: 1.2rem;
}

.main-footer {
    background: rgba(10, 0, 20, 0.95);
    padding: 3rem 2rem 1rem;
    border-top: 2px solid var(--primary-color);
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(156, 39, 176, 0.3);
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        background: rgba(26, 11, 46, 0.98);
        flex-direction: column;
        width: 250px;
        padding: 2rem;
        border-radius: 0 0 0 15px;
        border: 2px solid var(--primary-color);
        border-top: none;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        gap: 1rem;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .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(8px, -8px);
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .content-wrapper h2 {
        font-size: 2rem;
    }

    .game-frame {
        height: 400px;
    }

    .community-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .age-gate-content {
        margin: 1rem;
        padding: 2rem;
    }

    .age-gate-buttons {
        flex-direction: column;
    }
}
