* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: radial-gradient(ellipse at center, #1e1b4b 0%, #0f172a 100%);
    color: #e2e8f0;
    line-height: 1.7;
    position: relative;
}

.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, #1e1b4b 0%, #0f172a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-gate-overlay.hidden {
    display: none;
}

.age-gate-content {
    background: linear-gradient(135deg, #5b21b6 0%, #1e40af 100%);
    padding: 3.5rem;
    border-radius: 20px;
    max-width: 600px;
    text-align: center;
    border: 3px solid #60a5fa;
    box-shadow: 0 0 60px rgba(96, 165, 250, 0.5);
}

.age-gate-graphic {
    margin-bottom: 2rem;
}

.age-gate-content h1 {
    font-size: 2.5rem;
    color: #60a5fa;
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.age-gate-tagline {
    font-size: 1.1rem;
    color: #93c5fd;
    margin-bottom: 2rem;
    font-style: italic;
}

.age-gate-message p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.age-gate-highlights {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.highlight-badge {
    background: rgba(15, 23, 42, 0.5);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: 1px solid #60a5fa;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.highlight-icon {
    font-size: 1.3rem;
}

.age-gate-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-enter,
.btn-exit {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    border: 2px solid;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-enter {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    border-color: #60a5fa;
    color: #0f172a;
}

.btn-enter:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.5);
}

.btn-exit {
    background: transparent;
    border-color: #64748b;
    color: #e2e8f0;
}

.btn-exit:hover {
    background: rgba(100, 116, 139, 0.2);
}

.top-header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #60a5fa;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.brand-text {
    font-size: 1.7rem;
    font-weight: 900;
    color: #60a5fa;
    letter-spacing: 2px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.toggle-bar {
    width: 28px;
    height: 3px;
    background: #60a5fa;
    border-radius: 3px;
    transition: all 0.3s;
}

.main-navigation {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
    transition: width 0.3s;
}

.nav-link:hover {
    color: #60a5fa;
}

.nav-link:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .mobile-toggle.active .toggle-bar:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .mobile-toggle.active .toggle-bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active .toggle-bar:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        flex-direction: column;
        padding: 6rem 2rem;
        transition: right 0.3s;
        border-left: 2px solid #60a5fa;
    }
    
    .main-navigation.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.3rem;
        padding: 1rem 0;
    }
}

.zone-wrapper {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-zone {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-wrapper {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-para {
    font-size: 1.3rem;
    line-height: 1.9;
    margin-bottom: 3rem;
    color: #cbd5e1;
}

.hero-cta {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: linear-gradient(135deg, #5b21b6 0%, #1e40af 100%);
    color: #60a5fa;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50px;
    transition: all 0.3s;
    border: 2px solid #60a5fa;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(96, 165, 250, 0.5);
}

.cosmic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #60a5fa;
    border-radius: 50%;
    box-shadow: 0 0 10px #60a5fa;
    animation: twinkle 3s infinite alternate;
}

.star-1 { top: 20%; left: 10%; animation-delay: 0s; }
.star-2 { top: 40%; right: 15%; animation-delay: 0.5s; }
.star-3 { bottom: 30%; left: 20%; animation-delay: 1s; }
.star-4 { top: 60%; right: 25%; animation-delay: 1.5s; }
.star-5 { bottom: 20%; right: 10%; animation-delay: 2s; }

@keyframes twinkle {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

.benefits-zone {
    padding: 5rem 0;
    background: rgba(15, 23, 42, 0.5);
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.benefit-box {
    background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid #475569;
    text-align: center;
    transition: all 0.3s;
}

.benefit-box:hover {
    transform: translateY(-5px);
    border-color: #60a5fa;
    box-shadow: 0 10px 40px rgba(96, 165, 250, 0.3);
}

.benefit-symbol {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.benefit-box h3 {
    font-size: 1.6rem;
    color: #60a5fa;
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
}

.game-zone {
    padding: 6rem 0;
}

.game-header {
    text-align: center;
    margin-bottom: 4rem;
}

.game-header h2 {
    font-size: 3rem;
    color: #60a5fa;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.game-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #cbd5e1;
    line-height: 1.8;
}

.game-showcase {
    max-width: 1150px;
    margin: 0 auto;
}

.game-border {
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #60a5fa;
    box-shadow: 0 0 60px rgba(96, 165, 250, 0.4), 0 0 30px rgba(167, 139, 250, 0.3);
}

.game-embed {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

.story-zone {
    padding: 6rem 0;
    background: rgba(15, 23, 42, 0.5);
}

.story-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-text h2 {
    font-size: 2.8rem;
    color: #60a5fa;
    margin-bottom: 2rem;
    font-weight: 900;
}

.story-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #cbd5e1;
}

.story-pillars {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pillar-card {
    background: linear-gradient(135deg, #5b21b6 0%, #1e40af 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #a78bfa;
}

.pillar-card h4 {
    font-size: 1.5rem;
    color: #a78bfa;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.pillar-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #cbd5e1;
}

.essential-zone {
    padding: 6rem 0;
}

.essential-panel {
    background: linear-gradient(135deg, #5b21b6 0%, #1e40af 100%);
    padding: 4rem;
    border-radius: 20px;
    border: 3px solid #a78bfa;
    box-shadow: 0 0 50px rgba(167, 139, 250, 0.4);
}

.essential-panel h2 {
    font-size: 3rem;
    color: #a78bfa;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 900;
}

.essential-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.essential-item h3 {
    font-size: 1.5rem;
    color: #60a5fa;
    margin-bottom: 1rem;
    font-weight: 700;
}

.essential-item p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #cbd5e1;
}

.more-zone {
    padding: 6rem 0;
    background: rgba(15, 23, 42, 0.5);
}

.more-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 4rem;
}

.more-item h3 {
    font-size: 1.8rem;
    color: #60a5fa;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.more-item p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #cbd5e1;
}

.play-intro-zone {
    padding: 4rem 0;
    text-align: center;
}

.play-intro-zone h1 {
    font-size: 3.5rem;
    color: #60a5fa;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.play-intro-text {
    font-size: 1.25rem;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.8;
    color: #cbd5e1;
}

.player-zone {
    padding: 3rem 0;
    background: rgba(15, 23, 42, 0.5);
}

.player-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.player-box {
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #60a5fa;
    box-shadow: 0 0 60px rgba(96, 165, 250, 0.4), 0 0 30px rgba(167, 139, 250, 0.3);
}

.player-embed {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

.info-zone {
    padding: 5rem 0;
}

.info-zone h2 {
    font-size: 2.8rem;
    color: #60a5fa;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 900;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.info-card {
    background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid #475569;
    transition: all 0.3s;
}

.info-card:hover {
    border-color: #a78bfa;
    transform: translateY(-3px);
}

.info-card h3 {
    font-size: 1.4rem;
    color: #a78bfa;
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #cbd5e1;
}

.reminder-zone {
    padding: 4rem 0;
    background: rgba(15, 23, 42, 0.5);
}

.reminder-panel {
    background: linear-gradient(135deg, #5b21b6 0%, #1e40af 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 3px solid #a78bfa;
    text-align: center;
}

.reminder-panel h3 {
    font-size: 2rem;
    color: #a78bfa;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.reminder-panel p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #cbd5e1;
}

.legal-wrapper {
    max-width: 950px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-wrapper h1 {
    font-size: 3.5rem;
    color: #60a5fa;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 900;
}

.legal-timestamp {
    text-align: center;
    font-size: 1.05rem;
    color: #94a3b8;
    margin-bottom: 4rem;
}

.legal-segment {
    margin-bottom: 3.5rem;
}

.legal-segment h2 {
    font-size: 1.9rem;
    color: #60a5fa;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.legal-segment p {
    font-size: 1.08rem;
    line-height: 1.9;
    margin-bottom: 1.2rem;
    color: #cbd5e1;
}

.alert-segment {
    background: linear-gradient(135deg, #5b21b6 0%, #1e40af 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 3px solid #a78bfa;
}

.alert-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #a78bfa;
}

.final-segment {
    background: rgba(30, 27, 75, 0.5);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid #60a5fa;
}

.bottom-footer {
    background: rgba(15, 23, 42, 0.95);
    border-top: 2px solid #60a5fa;
    padding: 4rem 0 1.5rem;
    margin-top: 5rem;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-block h4 {
    font-size: 1.4rem;
    color: #60a5fa;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.footer-block p {
    line-height: 1.8;
    color: #cbd5e1;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-menu a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #60a5fa;
}

.footer-base {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #475569;
    color: #94a3b8;
}

@media (max-width: 968px) {
    .story-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .more-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-para {
        font-size: 1.1rem;
    }
    
    .game-embed {
        height: 450px;
    }
    
    .player-embed {
        height: 500px;
    }
    
    .play-intro-zone h1 {
        font-size: 2.3rem;
    }
    
    .legal-wrapper h1 {
        font-size: 2.5rem;
    }
    
    .essential-panel {
        padding: 2.5rem 1.5rem;
    }
}
