* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: linear-gradient(to bottom, #064e3b, #065f46, #047857);
    color: #ffffff;
    line-height: 1.6;
}

/* Age Verification Modal */
.age-verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
}

.age-verification-modal.hidden {
    display: none;
}

.verification-panel {
    background: linear-gradient(135deg, #065f46, #047857);
    padding: 50px 40px;
    border-radius: 20px;
    max-width: 550px;
    border: 4px solid #10B981;
    box-shadow: 0 0 50px rgba(16, 185, 129, 0.5);
}

.verification-header {
    text-align: center;
    margin-bottom: 25px;
}

.verify-icon {
    font-size: 60px;
    display: block;
    margin-bottom: 15px;
}

.verification-panel h2 {
    font-size: 36px;
    color: #FFA500;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
}

.verification-panel p {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.8;
}

.verify-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 35px;
}

.verify-btn {
    padding: 16px 40px;
    font-size: 18px;
    font-family: 'Exo 2', sans-serif;
    font-weight: 800;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.verify-btn.primary {
    background: #10B981;
    color: #064e3b;
}

.verify-btn.primary:hover {
    background: #059669;
    transform: scale(1.05);
    box-shadow: 0 5px 25px rgba(16, 185, 129, 0.4);
}

.verify-btn.secondary {
    background: #555;
    color: #fff;
}

.verify-btn.secondary:hover {
    background: #444;
}

/* Header */
.site-header {
    background: rgba(6, 78, 59, 0.95);
    padding: 20px 0;
    border-bottom: 3px solid #10B981;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-name {
    font-size: 32px;
    font-weight: 800;
    color: #FFA500;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(16, 185, 129, 0.2);
    color: #10B981;
}

.nav-link.active {
    background: rgba(16, 185, 129, 0.3);
    color: #10B981;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle .bar {
    width: 30px;
    height: 4px;
    background: #10B981;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

.mobile-menu {
    display: none;
    background: rgba(6, 78, 59, 0.98);
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 9998;
    border-bottom: 3px solid #10B981;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    padding: 15px 20px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-link:hover {
    background: rgba(16, 185, 129, 0.3);
    color: #10B981;
}

/* Splash Section */
.splash-section {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(255, 165, 0, 0.2));
    padding: 100px 30px;
    text-align: center;
    margin-bottom: 50px;
}

.splash-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #FFA500;
    text-shadow: 0 0 20px rgba(255, 165, 0, 0.5);
}

.splash-subtitle {
    font-size: 26px;
    margin-bottom: 40px;
    color: #ffffff;
}

.action-btn {
    display: inline-block;
    padding: 20px 50px;
    background: #10B981;
    color: #064e3b;
    text-decoration: none;
    font-size: 22px;
    font-weight: 800;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: #059669;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

/* Content Wrapper */
.content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px 60px;
}

/* Mission Statement */
.mission-statement {
    margin-bottom: 60px;
}

.statement-card {
    background: rgba(6, 95, 70, 0.6);
    padding: 50px;
    border-radius: 20px;
    border: 3px solid rgba(16, 185, 129, 0.5);
}

.statement-card h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #FFA500;
    font-weight: 800;
}

.statement-card p {
    font-size: 19px;
    margin-bottom: 20px;
    line-height: 1.9;
}

/* Section Title */
.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 40px;
    color: #FFA500;
    font-weight: 800;
}

.section-description {
    text-align: center;
    font-size: 19px;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

/* Critical Info Section */
.critical-info-section {
    margin-bottom: 60px;
}

.info-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.info-tile {
    padding: 40px;
    border-radius: 15px;
    border: 4px solid;
    transition: all 0.3s ease;
}

.info-tile.tile-red {
    background: rgba(239, 68, 68, 0.15);
    border-color: #EF4444;
}

.info-tile.tile-green {
    background: rgba(16, 185, 129, 0.15);
    border-color: #10B981;
}

.info-tile.tile-purple {
    background: rgba(139, 92, 246, 0.15);
    border-color: #8B5CF6;
}

.info-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.3);
}

.tile-emoji {
    font-size: 56px;
    display: block;
    margin-bottom: 20px;
}

.info-tile h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #FFA500;
    font-weight: 800;
}

.info-tile p {
    font-size: 17px;
    line-height: 1.8;
}

/* Featured Game Section */
.featured-game-section {
    margin-bottom: 60px;
}

.game-embed-container {
    margin-bottom: 30px;
}

.game-embed {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    border: 4px solid #10B981;
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.4);
}

.game-embed iframe {
    width: 100%;
    height: 700px;
    display: block;
}

.game-reminders {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.reminder-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 19px;
    font-weight: 600;
    color: #FFA500;
}

.reminder-icon {
    font-size: 32px;
}

/* Platform Benefits */
.platform-benefits {
    margin-bottom: 60px;
}

.benefits-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.benefit-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-card {
    background: rgba(6, 95, 70, 0.6);
    padding: 35px;
    border-radius: 15px;
    border: 3px solid rgba(16, 185, 129, 0.5);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #FFA500;
    font-weight: 800;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.8;
}

.stats-display {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-box {
    background: rgba(16, 185, 129, 0.2);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 3px solid #10B981;
}

.stat-value {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: #FFA500;
    margin-bottom: 10px;
}

.stat-desc {
    display: block;
    font-size: 16px;
    color: #ffffff;
}

/* Transparency Section */
.transparency-section {
    margin-bottom: 60px;
}

.transparency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.transparency-item {
    background: rgba(6, 95, 70, 0.6);
    padding: 40px;
    border-radius: 15px;
    border: 3px solid rgba(16, 185, 129, 0.5);
}

.transparency-item h4 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #FFA500;
    font-weight: 800;
}

.transparency-item ul {
    list-style: none;
    padding: 0;
}

.transparency-item li {
    font-size: 17px;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.7;
}

.transparency-item li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: 800;
}

/* Wellness Practices */
.wellness-practices {
    margin-bottom: 60px;
}

.practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.practice-box {
    background: rgba(6, 95, 70, 0.6);
    padding: 30px;
    border-radius: 15px;
    border: 3px solid rgba(16, 185, 129, 0.5);
}

.practice-num {
    font-size: 56px;
    font-weight: 800;
    color: #FFA500;
    display: block;
    margin-bottom: 15px;
}

.practice-box h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #10B981;
    font-weight: 800;
}

.practice-box p {
    font-size: 16px;
    line-height: 1.8;
}

/* Play Page */
.play-intro {
    text-align: center;
    margin-bottom: 50px;
}

.play-intro h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #FFA500;
    font-weight: 800;
}

.play-description {
    font-size: 20px;
    color: #e0e0e0;
    max-width: 900px;
    margin: 0 auto;
}

.how-to-play {
    margin-bottom: 50px;
}

.guide-panel {
    background: rgba(6, 95, 70, 0.6);
    padding: 45px;
    border-radius: 20px;
    border: 3px solid #10B981;
}

.guide-panel h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #FFA500;
    font-weight: 800;
}

.instruction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.instruction-step {
    background: rgba(16, 185, 129, 0.1);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.step-icon {
    font-size: 42px;
    display: block;
    margin-bottom: 15px;
}

.instruction-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #FFA500;
    font-weight: 800;
}

.instruction-step p {
    font-size: 15px;
    line-height: 1.7;
}

.tech-info {
    background: rgba(255, 165, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #FFA500;
}

.main-game-section {
    margin-bottom: 50px;
}

.game-display-full {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    border: 4px solid #10B981;
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.4);
}

.game-display-full iframe {
    width: 100%;
    height: 800px;
    display: block;
}

.play-warning {
    margin-bottom: 50px;
}

.warning-panel {
    background: rgba(239, 68, 68, 0.15);
    padding: 35px;
    border-radius: 15px;
    border: 4px solid #EF4444;
    text-align: center;
}

.warning-panel h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #FFA500;
    font-weight: 800;
}

.warning-panel p {
    font-size: 18px;
    line-height: 1.9;
}

/* Legal Content */
.legal-wrapper {
    max-width: 1000px;
}

.legal-wrapper h1 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 15px;
    color: #FFA500;
    font-weight: 800;
}

.effective-date {
    text-align: center;
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 50px;
}

.legal-article {
    background: rgba(6, 95, 70, 0.5);
    padding: 35px;
    border-radius: 15px;
    margin-bottom: 35px;
    border: 3px solid rgba(16, 185, 129, 0.4);
}

.legal-article h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #FFA500;
    font-weight: 800;
}

.legal-article h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #10B981;
    font-weight: 800;
}

.legal-article p {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.9;
}

.legal-article ul {
    margin: 20px 0;
    padding-left: 35px;
}

.legal-article li {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.8;
}

.critical-notice {
    background: rgba(239, 68, 68, 0.2);
    padding: 40px;
    border-radius: 15px;
    border: 4px solid #EF4444;
    margin-bottom: 50px;
    text-align: center;
}

.critical-notice h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #FFA500;
    font-weight: 800;
}

.critical-notice p {
    font-size: 18px;
    line-height: 1.9;
}

/* Footer */
.main-footer {
    background: rgba(6, 78, 59, 0.9);
    padding: 50px 0 25px;
    margin-top: 80px;
    border-top: 4px solid #10B981;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-block h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #FFA500;
    font-weight: 800;
}

.footer-block p {
    font-size: 15px;
    line-height: 1.8;
    color: #e0e0e0;
}

.footer-block a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-block a:hover {
    color: #10B981;
}

.footer-legal {
    text-align: center;
    padding-top: 25px;
    border-top: 2px solid rgba(16, 185, 129, 0.4);
    max-width: 1300px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

.footer-legal p {
    font-size: 15px;
    color: #cccccc;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .benefits-layout {
        grid-template-columns: 1fr;
    }
    
    .transparency-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .splash-content h1 {
        font-size: 38px;
    }
    
    .splash-subtitle {
        font-size: 20px;
    }
    
    .game-embed iframe,
    .game-display-full iframe {
        height: 500px;
    }
    
    .stats-display {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .verification-panel {
        padding: 30px 20px;
    }
    
    .verify-actions {
        flex-direction: column;
    }
    
    .splash-content h1 {
        font-size: 30px;
    }
    
    .game-embed iframe,
    .game-display-full iframe {
        height: 400px;
    }
    
    .info-tiles {
        grid-template-columns: 1fr;
    }
    
    .game-reminders {
        flex-direction: column;
        gap: 20px;
    }
}
