* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --aurora-purple: #9d4edd;
    --aurora-pink: #ff006e;
    --aurora-blue: #3a86ff;
    --aurora-cyan: #06ffa5;
    --aurora-yellow: #ffbe0b;
    --light-bg: #ffffff;
    --soft-bg: #f8f9fa;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 50%, #f8e8ff 100%);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    max-width: 100%;
    padding: 0 30px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Age Gate */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.95), rgba(58, 134, 255, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-gate.hidden {
    display: none;
}

.age-gate-card {
    background: var(--light-bg);
    max-width: 500px;
    padding: 50px 40px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.age-gate-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, var(--aurora-purple), var(--aurora-pink), var(--aurora-blue), var(--aurora-cyan));
    border-radius: 35px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(20px);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.age-gate-title {
    font-family: 'Raleway', sans-serif;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--aurora-purple), var(--aurora-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.age-gate-text {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.age-emphasis {
    font-weight: 700;
    font-size: 18px;
    color: var(--aurora-purple);
    margin-bottom: 20px;
}

.age-gate-info {
    background: var(--soft-bg);
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
}

.age-gate-info p {
    margin: 5px 0;
    font-size: 14px;
}

.age-gate-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.age-btn-yes,
.age-btn-no {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.age-btn-yes {
    background: linear-gradient(135deg, var(--aurora-purple), var(--aurora-blue));
    color: white;
}

.age-btn-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(157, 78, 221, 0.4);
}

.age-btn-no {
    background: #e0e0e0;
    color: var(--text-dark);
}

.age-btn-no:hover {
    background: #d0d0d0;
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-aurora {
    font-size: 36px;
}

.brand-name {
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--aurora-purple), var(--aurora-blue), var(--aurora-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: linear-gradient(135deg, var(--aurora-purple), var(--aurora-blue));
    border-radius: 3px;
    transition: all 0.3s ease;
}

.main-navigation {
    display: flex;
    gap: 35px;
}

.nav-item {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: var(--aurora-purple);
}

.nav-item.active {
    color: var(--aurora-blue);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--aurora-purple), var(--aurora-blue));
    transition: width 0.3s ease;
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

/* Hero Intro */
.hero-intro {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.aurora-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(157, 78, 221, 0.1) 0%,
        rgba(255, 0, 110, 0.1) 25%,
        rgba(58, 134, 255, 0.1) 50%,
        rgba(6, 255, 165, 0.1) 75%,
        rgba(255, 190, 11, 0.1) 100%);
    opacity: 0.6;
    animation: auroraFlow 15s ease-in-out infinite;
}

@keyframes auroraFlow {
    0%, 100% { opacity: 0.4; transform: translateX(0); }
    50% { opacity: 0.7; transform: translateX(20px); }
}

.display-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--aurora-purple), var(--aurora-pink), var(--aurora-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.lead-text {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 35px;
    position: relative;
    z-index: 1;
}

.cta-primary {
    display: inline-block;
    padding: 15px 45px;
    background: linear-gradient(135deg, var(--aurora-purple), var(--aurora-blue));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.5);
}

/* Section Styles */
.section-welcome,
.section-principles,
.section-game,
.section-features,
.section-responsibility {
    padding: 70px 0;
}

.aurora-card {
    background: var(--light-bg);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 10px 40px var(--shadow);
}

.section-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.section-heading.centered {
    text-align: center;
}

.content-box p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Principles Grid */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.principle-card {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px var(--shadow);
    border-top: 4px solid var(--aurora-purple);
    transition: all 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow);
}

.purple-glow {
    border-top-color: var(--aurora-purple);
}

.blue-glow {
    border-top-color: var(--aurora-blue);
}

.pink-glow {
    border-top-color: var(--aurora-pink);
}

.principle-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.principle-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.principle-card p {
    line-height: 1.7;
    color: var(--text-muted);
}

/* Game Section */
.section-subheading {
    text-align: center;
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.game-embed-box {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1), rgba(58, 134, 255, 0.1));
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 10px 40px var(--shadow);
}

.game-embed {
    width: 100%;
    height: 650px;
    border-radius: 15px;
    border: none;
    background: #000;
}

.game-caption {
    text-align: center;
    margin-top: 25px;
    font-size: 16px;
    color: var(--text-muted);
}

/* Features Layout */
.features-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-block {
    background: var(--light-bg);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.feature-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px var(--shadow);
}

.feature-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--aurora-purple), var(--aurora-blue));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.feature-block h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-block p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Responsibility Panel */
.responsibility-panel {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.15), rgba(58, 134, 255, 0.15));
    padding: 50px;
    border-radius: 25px;
    border-left: 6px solid var(--aurora-purple);
}

.responsibility-panel h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.responsibility-panel p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* Play Page */
.play-header-section {
    padding: 60px 0 30px;
    text-align: center;
    background: linear-gradient(180deg, rgba(157, 78, 221, 0.1), transparent);
}

.page-title-main {
    font-family: 'Raleway', sans-serif;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--aurora-purple), var(--aurora-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.page-intro-text {
    font-size: 19px;
    color: var(--text-muted);
}

.play-game-area {
    padding: 50px 0;
}

.play-game-box {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1), rgba(58, 134, 255, 0.1));
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 10px 40px var(--shadow);
    margin-bottom: 40px;
}

.play-game-iframe {
    width: 100%;
    height: 750px;
    border-radius: 15px;
    border: none;
    background: #000;
}

.play-guide-section {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px var(--shadow);
    margin-bottom: 30px;
}

.guide-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}

.play-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.play-step {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--soft-bg);
    border-radius: 15px;
}

.step-badge {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--aurora-purple), var(--aurora-blue));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-details h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.step-details p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.compatibility-box {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 25px var(--shadow);
    margin-bottom: 30px;
}

.compatibility-box h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.compatibility-box p {
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.mobile-note {
    color: var(--aurora-purple) !important;
    font-weight: 600;
}

.reminder-panel {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.15), rgba(58, 134, 255, 0.15));
    padding: 30px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.reminder-light {
    font-size: 40px;
    flex-shrink: 0;
}

.reminder-text h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.reminder-text p {
    line-height: 1.7;
    color: var(--text-dark);
}

/* Legal Pages */
.legal-page-section {
    padding: 60px 0;
}

.legal-document-box {
    background: var(--light-bg);
    padding: 60px;
    border-radius: 25px;
    box-shadow: 0 10px 40px var(--shadow);
}

.legal-document-box h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--aurora-purple), var(--aurora-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.document-date {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-document-box h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--aurora-purple);
    margin-top: 35px;
    margin-bottom: 15px;
}

.legal-document-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--aurora-blue);
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-document-box h4 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-document-box p {
    line-height: 1.8;
    margin-bottom: 18px;
}

.legal-document-box ul {
    margin-left: 30px;
    margin-bottom: 18px;
}

.legal-document-box li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.important-alert {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.15), rgba(58, 134, 255, 0.15));
    padding: 30px;
    border-radius: 20px;
    border-left: 6px solid var(--aurora-pink);
    margin-bottom: 35px;
}

.important-alert h2 {
    margin-top: 0;
}

.summary-highlight {
    background: var(--soft-bg);
    padding: 30px;
    border-radius: 20px;
    margin-top: 35px;
    border: 3px solid var(--aurora-purple);
}

.summary-highlight h3 {
    margin-top: 0;
}

.summary-highlight p {
    margin-bottom: 8px;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, var(--aurora-purple), var(--aurora-blue));
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-tagline {
    opacity: 0.9;
    font-size: 15px;
}

.footer-column h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-notice {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    opacity: 0.85;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .main-navigation {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 30px;
        box-shadow: -5px 0 15px var(--shadow);
        transition: right 0.3s ease;
        gap: 20px;
    }

    .main-navigation.active {
        right: 0;
    }

    .display-heading {
        font-size: 36px;
    }

    .lead-text {
        font-size: 16px;
    }

    .aurora-card {
        padding: 30px 25px;
    }

    .section-heading {
        font-size: 30px;
    }

    .principles-grid {
        grid-template-columns: 1fr;
    }

    .game-embed {
        height: 450px;
    }

    .play-game-iframe {
        height: 500px;
    }

    .features-layout {
        grid-template-columns: 1fr;
    }

    .play-steps {
        grid-template-columns: 1fr;
    }

    .legal-document-box {
        padding: 35px 25px;
    }

    .legal-document-box h1 {
        font-size: 32px;
    }

    .age-gate-card {
        margin: 20px;
        padding: 35px 25px;
    }

    .age-gate-buttons {
        flex-direction: column;
    }

    .footer-columns {
        grid-template-columns: 1fr;
    }
}
