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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #f7fafc;
}

/* Navbar */
.navbar {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #f56565;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #f56565;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #e2e8f0;
    margin: 3px 0;
}

/* Age Overlay */
.age-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.age-overlay.active {
    display: flex;
}

.age-box {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.age-header {
    text-align: center;
    margin-bottom: 2rem;
}

.age-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.age-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    color: #2d3748;
    font-size: 2rem;
}

.age-body p {
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.age-notice {
    font-size: 0.9rem;
    color: #718096;
}

.age-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-age-yes,
.btn-age-no {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-age-yes {
    background: #f56565;
    color: white;
}

.btn-age-yes:hover {
    background: #e53e3e;
    transform: translateY(-2px);
}

.btn-age-no {
    background: #e2e8f0;
    color: #2d3748;
}

.btn-age-no:hover {
    background: #cbd5e0;
}

/* Split Hero */
.split-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.hero-left {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    color: white;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #f56565;
}

.hero-left h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-left p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #e2e8f0;
}

.btn-primary {
    display: inline-block;
    background: #f56565;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-primary:hover {
    background: #e53e3e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 101, 101, 0.3);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-icon {
    font-size: 1.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #e2e8f0;
}

.hero-right {
    background: #f7fafc;
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.hero-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: #2d3748;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.8rem 0;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
}

.feature-list li:last-child {
    border-bottom: none;
}

.checkmark {
    color: #48bb78;
    margin-right: 0.5rem;
    font-weight: bold;
}

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.page-banner h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #f56565;
}

.page-banner p {
    font-size: 1.2rem;
    color: #e2e8f0;
}

/* Sections */
.section-container,
.content-left,
.content-right,
.info-container,
.resp-container,
.play-container,
.guide-container,
.reminders-wrapper,
.trouble-container,
.legal-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.section-intro h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.section-intro p {
    color: #4a5568;
    font-size: 1.1rem;
}

/* Game Display */
.game-display,
.play-game-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.game-embed,
.play-game-frame {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
}

/* Split Content */
.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: #f7fafc;
}

.content-left h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.content-left p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.info-boxes {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.box-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-box h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: #2d3748;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.info-box p {
    color: #4a5568;
    line-height: 1.7;
}

/* Important Info */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.info-card.warning {
    border-left: 5px solid #f6ad55;
}

.info-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: #2d3748;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.info-card p {
    color: #4a5568;
    line-height: 1.7;
}

/* Responsibility */
.resp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.resp-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.resp-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.resp-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    color: #2d3748;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.resp-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Play Page */
.play-header {
    text-align: center;
    margin-bottom: 3rem;
}

.play-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.play-notes {
    background: #fff5f5;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    border-left: 5px solid #f56565;
}

.play-notes h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: #2d3748;
    margin-bottom: 1rem;
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: #f56565;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: #2d3748;
    margin-bottom: 0.8rem;
}

.reminder-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.reminder-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.reminder-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.reminder-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    color: #2d3748;
    margin-bottom: 0.8rem;
}

.trouble-solutions {
    margin-left: 2rem;
    margin-top: 1rem;
    color: #4a5568;
}

.trouble-solutions li {
    margin-bottom: 0.8rem;
}

/* Legal */
.legal-section {
    background: #f7fafc;
}

.legal-wrapper h2 {
    font-family: 'Space Grotesk', sans-serif;
    color: #2d3748;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
}

.legal-wrapper h2:first-child {
    margin-top: 0;
}

.legal-wrapper p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-wrapper ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.disclaimer-box {
    background: #fff5f5;
    border-left: 5px solid #f56565;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.disclaimer-box h2,
.disclaimer-box h3 {
    margin-top: 0;
}

/* Footer */
.site-footer {
    background: #2d3748;
    color: #e2e8f0;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-block h3 {
    color: #f56565;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f56565;
}

.footer-bar {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    color: #cbd5e0;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: #2d3748;
        flex-direction: column;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-toggle {
        display: flex;
    }

    .split-hero,
    .split-content {
        grid-template-columns: 1fr;
    }

    .info-grid,
    .guide-steps,
    .reminder-cards,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .resp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
