* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
    color: #333;
    background: #f4f6f8;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.wide-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Age Gate */
.age-gate {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.98) 0%, rgba(0, 212, 204, 0.98) 100%);
    align-items: center;
    justify-content: center;
}

.age-gate.show {
    display: flex;
}

.age-gate-content {
    background: #fff;
    padding: 60px 50px;
    border-radius: 25px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.age-gate-logo {
    margin-bottom: 30px;
}

.age-gate-content h1 {
    font-size: 36px;
    color: #ff6b35;
    margin-bottom: 25px;
}

.age-gate-text {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.age-gate-notice {
    font-size: 14px;
    color: #666;
    margin-bottom: 35px;
}

.age-gate-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-confirm,
.btn-deny {
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.btn-confirm {
    background: #00d4cc;
    color: #fff;
}

.btn-confirm:hover {
    background: #00bfb8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 204, 0.3);
}

.btn-deny {
    background: #e0e0e0;
    color: #666;
}

.btn-deny:hover {
    background: #d0d0d0;
}

/* Header */
.site-header {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #ff6b35;
}

.main-nav {
    display: flex;
    gap: 35px;
}

.main-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #ff6b35;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 30px;
    height: 4px;
    background: #ff6b35;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5f 100%);
    padding: 120px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(0, 212, 204, 0.2);
    border-radius: 50%;
}

.hero-text {
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 64px;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.tagline {
    font-size: 26px;
    color: #fff;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.badge {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    padding: 12px 28px;
    border-radius: 25px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero-button {
    display: inline-block;
    background: #00d4cc;
    color: #fff;
    padding: 20px 50px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 212, 204, 0.4);
}

.hero-button:hover {
    background: #00bfb8;
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 212, 204, 0.5);
}

/* Intro Section */
.intro-section {
    padding: 100px 30px;
    background: #fff;
}

.intro-content {
    text-align: center;
    margin-bottom: 70px;
}

.intro-content h2 {
    font-size: 48px;
    color: #ff6b35;
    margin-bottom: 25px;
}

.intro-lead {
    font-size: 20px;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.feature-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
}

.feature-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 60px;
    margin-bottom: 25px;
}

.feature-box h3 {
    font-size: 28px;
    color: #ff6b35;
    margin-bottom: 20px;
}

.feature-box p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

/* Game Showcase */
.game-showcase {
    padding: 100px 30px;
    background: linear-gradient(135deg, #00d4cc 0%, #00bfb8 100%);
}

.showcase-header {
    text-align: center;
    margin-bottom: 60px;
}

.showcase-header h2 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
}

.showcase-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.game-embed {
    max-width: 1200px;
    margin: 0 auto;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.game-iframe {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

/* Important Info */
.important-info {
    padding: 100px 30px;
    background: #fff;
}

.info-panel {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff8e1;
    padding: 60px;
    border-radius: 20px;
    border: 3px solid #ff6b35;
}

.info-panel h2 {
    font-size: 42px;
    color: #ff6b35;
    margin-bottom: 50px;
    text-align: center;
}

.info-items {
    display: grid;
    gap: 40px;
}

.info-item h3 {
    font-size: 26px;
    color: #ff6b35;
    margin-bottom: 15px;
}

.info-item p {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 30px;
    background: #f8f9fa;
}

.benefits-section h2 {
    font-size: 48px;
    color: #ff6b35;
    text-align: center;
    margin-bottom: 70px;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.benefit-emoji {
    font-size: 50px;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 24px;
    color: #ff6b35;
    margin-bottom: 12px;
}

.benefit-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

/* Call to Action */
.call-to-action {
    padding: 100px 30px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5f 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 25px;
}

.cta-content p {
    font-size: 22px;
    color: #fff;
    margin-bottom: 45px;
}

.cta-btn {
    display: inline-block;
    background: #fff;
    color: #ff6b35;
    padding: 22px 55px;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Play Page */
.play-intro {
    padding: 80px 30px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5f 100%);
    text-align: center;
}

.play-intro h1 {
    font-size: 56px;
    color: #fff;
    margin-bottom: 20px;
}

.play-description {
    font-size: 22px;
    color: #fff;
}

.game-instructions {
    padding: 60px 30px;
    background: #fff;
}

.instruction-card {
    max-width: 1000px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 20px;
}

.instruction-card h2 {
    font-size: 36px;
    color: #ff6b35;
    margin-bottom: 35px;
}

.instruction-grid {
    display: grid;
    gap: 25px;
}

.instruction-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.instruction-item strong {
    font-size: 20px;
    color: #ff6b35;
}

.instruction-item span {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.game-area {
    padding: 60px 30px 80px;
    background: #fff;
}

.game-container {
    max-width: 1400px;
    margin: 0 auto 40px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.full-game-frame {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

.game-reminder {
    max-width: 800px;
    margin: 0 auto;
    background: #fff8e1;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #ff6b35;
    text-align: center;
}

.game-reminder p {
    font-size: 18px;
    color: #333;
}

/* Legal Pages */
.legal-header {
    padding: 80px 30px;
    background: linear-gradient(135deg, #00d4cc 0%, #00bfb8 100%);
    text-align: center;
}

.legal-header h1 {
    font-size: 56px;
    color: #fff;
    margin-bottom: 20px;
}

.legal-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
}

.legal-body {
    padding: 80px 30px;
    background: #fff;
}

.legal-container {
    max-width: 950px;
    margin: 0 auto;
}

.legal-article h2 {
    font-size: 32px;
    color: #ff6b35;
    margin-top: 50px;
    margin-bottom: 20px;
}

.legal-article h2:first-child {
    margin-top: 0;
}

.legal-article p {
    font-size: 17px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-article ul {
    margin-bottom: 25px;
    padding-left: 30px;
}

.legal-article li {
    font-size: 17px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.8;
}

.disclaimer-alert {
    background: #fff8e1;
    border: 3px solid #ff6b35;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 50px;
}

.disclaimer-alert h2 {
    color: #ff6b35;
    margin-top: 0;
}

.disclaimer-summary {
    background: #ff6b35;
    color: #fff;
    padding: 40px;
    border-radius: 15px;
    margin-top: 50px;
    text-align: center;
}

.disclaimer-summary h3 {
    color: #fff;
    margin-bottom: 20px;
}

.legal-updated {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 3px solid #e9ecef;
    color: #666;
}

.legal-updated p {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    padding: 60px 30px 30px;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 15px;
}

.footer-tagline {
    color: #aaa;
    font-size: 16px;
}

.footer-col h4 {
    color: #00d4cc;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00d4cc;
}

.footer-notice {
    color: #aaa;
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-warning {
    color: #ff6b35;
    font-weight: 700;
    font-size: 16px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        gap: 25px;
        transition: left 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        left: 0;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-7px, 7px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-7px, -7px);
    }

    .hero-text h1,
    .play-intro h1,
    .legal-header h1 {
        font-size: 40px;
    }

    .intro-content h2,
    .showcase-header h2,
    .benefits-section h2,
    .cta-content h2 {
        font-size: 36px;
    }

    .game-iframe,
    .full-game-frame {
        height: 450px;
    }

    .feature-boxes,
    .benefits-list {
        grid-template-columns: 1fr;
    }

    .info-panel {
        padding: 40px 30px;
    }
}
