* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 100%);
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-nav {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #7C3AED;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #7C3AED;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #7C3AED;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #7C3AED;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #7C3AED;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.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);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        gap: 1.5rem;
        border-bottom: 2px solid #7C3AED;
    }

    .nav-menu.active {
        left: 0;
    }
}

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #16213e 0%, #0f3460 50%, #533483 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(124, 58, 237, 0.3), transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    max-width: 900px;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 0 30px rgba(124, 58, 237, 0.8);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #d0d0d0;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #7C3AED 0%, #a855f7 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.5);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.7);
}

.intro-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #0a0a0a, #1a0a2e);
}

.intro-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #7C3AED;
    text-align: center;
}

.intro-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.notice-section {
    padding: 4rem 0;
    background: rgba(124, 58, 237, 0.05);
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.notice-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(124, 58, 237, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.notice-card:hover {
    border-color: #7C3AED;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.notice-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.notice-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #7C3AED;
}

.notice-card p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.game-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #1a0a2e, #0a0a0a);
}

.game-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #7C3AED;
    text-align: center;
}

.game-intro {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.game-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.4);
}

.game-container iframe {
    width: 100%;
    height: 700px;
    border: none;
}

.features-section {
    padding: 5rem 0;
    background: rgba(124, 58, 237, 0.03);
}

.features-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #7C3AED;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 4px solid #7C3AED;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #a855f7;
}

.feature-item p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.responsibility-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 100%);
}

.responsibility-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #7C3AED;
    text-align: center;
}

.responsibility-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.main-footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 3rem 0 2rem;
    border-top: 3px solid #7C3AED;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    font-family: 'Orbitron', sans-serif;
    color: #7C3AED;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #7C3AED;
}

.footer-section p {
    color: #b0b0b0;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.age-gate.hidden {
    display: none;
}

.age-gate-content {
    background: linear-gradient(135deg, #16213e 0%, #533483 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 3px solid #7C3AED;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.6);
}

.age-gate-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.age-gate-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #d0d0d0;
}

.age-gate-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-yes, .btn-no {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-yes {
    background: linear-gradient(135deg, #7C3AED 0%, #a855f7 100%);
    color: white;
}

.btn-yes:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.7);
}

.btn-no {
    background: #333;
    color: white;
}

.btn-no:hover {
    background: #555;
}

.play-page {
    min-height: 80vh;
    padding: 4rem 0;
}

.play-page h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #7C3AED;
    text-align: center;
}

.play-intro {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.game-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 3rem;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.4);
}

.game-wrapper iframe {
    width: 100%;
    height: 700px;
    border: none;
}

.play-notes {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(124, 58, 237, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #7C3AED;
}

.play-notes h3 {
    font-family: 'Orbitron', sans-serif;
    color: #7C3AED;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.play-notes ul {
    list-style-position: inside;
}

.play-notes li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.legal-page {
    min-height: 80vh;
    padding: 4rem 0;
}

.legal-page h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #7C3AED;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #b0b0b0;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section {
    max-width: 900px;
    margin: 0 auto 3rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #7C3AED;
}

.legal-section h2 {
    font-family: 'Orbitron', sans-serif;
    color: #a855f7;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.legal-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .intro-section h2,
    .game-section h2,
    .features-section h2,
    .responsibility-section h2 {
        font-size: 2rem;
    }

    .game-container iframe,
    .game-wrapper iframe {
        height: 500px;
    }

    .age-gate-content {
        padding: 2rem;
        margin: 1rem;
    }

    .play-page h1,
    .legal-page h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .notice-grid {
        grid-template-columns: 1fr;
    }

    .game-container iframe,
    .game-wrapper iframe {
        height: 400px;
    }
}
