* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Age Gate */
.age-gate {
    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: 10000;
}

.age-gate.hidden {
    display: none;
}

.age-gate-content {
    background: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.age-gate-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #6c5ce7;
}

.age-gate-content p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #555;
}

.age-gate-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.btn-yes, .btn-no {
    padding: 15px 40px;
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-yes {
    background: #6c5ce7;
    color: white;
}

.btn-yes:hover {
    background: #5f4dd4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
}

.btn-no {
    background: #e74c3c;
    color: white;
}

.btn-no:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* Header */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h1 {
    font-size: 1.8em;
    color: #6c5ce7;
    font-weight: 900;
    letter-spacing: 2px;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

nav a:hover, nav a.active {
    color: #6c5ce7;
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: #6c5ce7;
    border-radius: 2px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8em;
    cursor: pointer;
    color: #6c5ce7;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.hero h2 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 900;
}

.hero p {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 15px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.btn-primary {
    background: white;
    color: #667eea;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about h2 {
    font-size: 2.5em;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about p {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #555;
}

.about ul {
    list-style: none;
    margin-top: 30px;
}

.about ul li {
    margin-bottom: 20px;
    padding-left: 10px;
    font-size: 1.05em;
    line-height: 1.7;
}

.game-embed {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.game-embed iframe {
    display: block;
    width: 100%;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

.features h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #6c5ce7;
}

.feature-card p {
    color: #555;
    line-height: 1.6;
}

/* Info Boxes */
.info-boxes {
    padding: 80px 0;
    background: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-box {
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid;
}

.info-box.warning {
    background: #fff3cd;
    border-color: #ffc107;
}

.info-box.age {
    background: #f8d7da;
    border-color: #dc3545;
}

.info-box h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #2c3e50;
}

.info-box p {
    color: #555;
    line-height: 1.7;
}

/* Community Section */
.community {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.community h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3em;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1em;
    opacity: 0.9;
}

/* Play Page */
.play-section {
    padding: 60px 0;
    background: white;
    min-height: 100vh;
}

.play-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.play-intro {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.game-container {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.game-container iframe {
    display: block;
    width: 100%;
}

.game-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin-top: 30px;
}

.game-info h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #6c5ce7;
}

.game-info ul {
    list-style: none;
    margin-bottom: 30px;
}

.game-info ul li {
    padding: 10px 0;
    font-size: 1.05em;
    color: #555;
}

.reminder-box {
    background: #fff3cd;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #ffc107;
}

.reminder-box h4 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #2c3e50;
}

.reminder-box p {
    margin-bottom: 10px;
    color: #555;
}

/* Legal Content */
.legal-content {
    padding: 60px 0;
    background: white;
    min-height: 100vh;
}

.legal-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-intro {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 5px solid #6c5ce7;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #6c5ce7;
}

.legal-section p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.legal-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-section ul li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.7;
}

.legal-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
    text-align: center;
    font-style: italic;
    color: #888;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #6c5ce7;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #6c5ce7;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 999;
        gap: 0;
    }
    
    nav.active {
        left: 0;
    }
    
    nav a {
        padding: 15px 0;
        border-bottom: 1px solid #ecf0f1;
        display: block;
    }
    
    .hero h2 {
        font-size: 2em;
    }
    
    .hero p {
        font-size: 1.1em;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.5em;
    }
    
    .age-gate-content {
        padding: 30px;
        margin: 20px;
    }
    
    .age-gate-content h2 {
        font-size: 2em;
    }
    
    .age-gate-buttons {
        flex-direction: column;
    }
    
    .btn-yes, .btn-no {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.6em;
    }
    
    .features h2, .about h2, .community h2 {
        font-size: 2em;
    }
    
    .logo h1 {
        font-size: 1.4em;
    }
}
