* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #faf5ff;
    color: #2d1b4e;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Quicksand', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navigation-bar {
    background: linear-gradient(135deg, #9333ea 0%, #7e22ce 100%);
    box-shadow: 0 4px 15px rgba(147,51,234,0.2);
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    font-family: 'Quicksand', sans-serif;
}

.nav-burger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-burger span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s;
}

.nav-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-burger.active span:nth-child(2) {
    opacity: 0;
}

.nav-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-links {
    position: fixed;
    top: 81px;
    right: -100%;
    width: 260px;
    background: linear-gradient(180deg, #9333ea 0%, #7e22ce 100%);
    list-style: none;
    transition: right 0.3s;
    box-shadow: -3px 0 15px rgba(0,0,0,0.2);
    max-height: calc(100vh - 81px);
    overflow-y: auto;
}

.nav-links.active {
    right: 0;
}

.nav-links li {
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.nav-links a {
    display: block;
    padding: 16px 25px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.nav-links a:hover {
    background: rgba(255,255,255,0.15);
    padding-left: 35px;
}

/* Hero Area */
.hero-area {
    background: linear-gradient(135deg, #c084fc 0%, #a855f7 100%);
    color: white;
    padding: 90px 20px;
    text-align: center;
}

.hero-inner h1 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-desc {
    font-size: 1.25rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.hero-button {
    display: inline-block;
    background: white;
    color: #9333ea;
    padding: 16px 45px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.25);
}

.hero-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
}

/* Welcome Block */
.welcome-block {
    padding: 70px 20px;
    background: white;
}

.welcome-block h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 25px;
    color: #9333ea;
}

.welcome-text {
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.9;
    color: #4c1d95;
    max-width: 900px;
    margin: 0 auto;
}

/* Key Messages */
.key-messages {
    padding: 70px 20px;
    background: #faf5ff;
}

.section-header {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 45px;
    color: #9333ea;
}

.messages-row {
    display: grid;
    gap: 35px;
}

.message-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(147,51,234,0.15);
    text-align: center;
    transition: transform 0.3s;
}

.message-box:hover {
    transform: translateY(-8px);
}

.message-emoji {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.message-box h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #7e22ce;
}

.message-box p {
    color: #6b21a8;
    line-height: 1.8;
}

/* Featured Play */
.featured-play {
    padding: 70px 20px;
    background: white;
}

.featured-text {
    text-align: center;
    font-size: 1.1rem;
    color: #6b21a8;
    margin-bottom: 35px;
}

.play-frame {
    background: #f3e8ff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(147,51,234,0.15);
}

.game-player {
    width: 100%;
    height: 550px;
    border: none;
    border-radius: 15px;
    background: #000;
}

/* Highlights */
.highlights {
    padding: 70px 20px;
    background: #faf5ff;
}

.highlights-grid {
    display: grid;
    gap: 30px;
}

.highlight-box {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(147,51,234,0.12);
}

.highlight-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #7e22ce;
}

.highlight-box p {
    color: #6b21a8;
    line-height: 1.8;
}

/* Extra Content */
.extra-content {
    padding: 70px 20px;
    background: white;
}

.content-card {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    padding: 45px;
    border-radius: 20px;
    margin-bottom: 45px;
}

.content-card h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #7e22ce;
    text-align: center;
}

.content-card p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #4c1d95;
    text-align: center;
}

.fun-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stat-card {
    text-align: center;
}

.stat-num {
    font-size: 3rem;
    font-weight: 800;
    color: #9333ea;
    font-family: 'Quicksand', sans-serif;
}

.stat-label {
    font-size: 1rem;
    color: #6b21a8;
    margin-top: 8px;
}

/* Footer */
.page-footer {
    background: linear-gradient(135deg, #2d1b4e 0%, #1e1030 100%);
    color: white;
    padding: 55px 20px 25px;
}

.footer-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 35px;
}

.footer-block h4 {
    font-size: 1.4rem;
    margin-bottom: 18px;
    color: #c084fc;
}

.footer-block p {
    line-height: 1.8;
    color: #d8b4fe;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: #d8b4fe;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-list a:hover {
    color: #f3e8ff;
}

.footer-note {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.15);
    color: #c084fc;
}

/* Age Gate */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45,27,78,0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-gate.hidden {
    display: none;
}

.gate-box {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    max-width: 520px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
}

.gate-box h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: #9333ea;
}

.gate-box p {
    font-size: 1.1rem;
    color: #4c1d95;
    margin-bottom: 20px;
    line-height: 1.7;
}

.gate-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 35px;
}

.gate-btn {
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Quicksand', sans-serif;
}

.accept-btn {
    background: #9333ea;
    color: white;
}

.accept-btn:hover {
    background: #7e22ce;
    transform: translateY(-2px);
}

.reject-btn {
    background: #64748b;
    color: white;
}

.reject-btn:hover {
    background: #475569;
    transform: translateY(-2px);
}

/* Play Page */
.play-page {
    padding: 70px 20px;
    background: #faf5ff;
}

.page-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 35px;
    color: #9333ea;
}

.play-intro {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 35px;
    box-shadow: 0 5px 20px rgba(147,51,234,0.12);
}

.play-intro p {
    color: #6b21a8;
    line-height: 1.8;
    margin-bottom: 20px;
}

.tech-tip {
    background: #f3e8ff;
    padding: 18px;
    border-radius: 12px;
    color: #4c1d95;
    border-left: 4px solid #9333ea;
}

.helpful-tips {
    background: white;
    padding: 35px;
    border-radius: 15px;
    margin-top: 35px;
    box-shadow: 0 5px 20px rgba(147,51,234,0.12);
}

.helpful-tips h2 {
    font-size: 1.9rem;
    margin-bottom: 20px;
    color: #9333ea;
}

.helpful-tips ul {
    list-style-position: inside;
    color: #6b21a8;
    line-height: 2.2;
}

/* Legal Page */
.legal-page {
    padding: 70px 20px;
    background: #faf5ff;
}

.legal-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 15px;
    color: #9333ea;
}

.update-date {
    text-align: center;
    color: #9ca3af;
    font-style: italic;
    margin-bottom: 45px;
}

.legal-section {
    background: white;
    padding: 35px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(147,51,234,0.12);
    border-left: 5px solid #9333ea;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 18px;
    color: #7e22ce;
}

.legal-section p {
    color: #6b21a8;
    line-height: 1.9;
    margin-bottom: 18px;
}

.legal-section ul {
    margin-left: 25px;
    color: #6b21a8;
    line-height: 2.2;
}

.important-notice {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left-color: #f59e0b;
}

.important-notice h2 {
    color: #92400e;
}

/* Tablet */
@media (min-width: 768px) {
    .messages-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .game-player {
        height: 650px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .nav-burger {
        display: none;
    }
    
    .nav-links {
        position: static;
        display: flex;
        width: auto;
        background: none;
        box-shadow: none;
        gap: 8px;
    }
    
    .nav-links li {
        border-bottom: none;
    }
    
    .nav-links a {
        padding: 10px 20px;
        border-radius: 8px;
    }
    
    .nav-links a:hover {
        padding-left: 20px;
    }
    
    .hero-inner h1 {
        font-size: 3.5rem;
    }
    
    .messages-row {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .game-player {
        height: 750px;
    }
}
