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

body {
    font-family: 'Quicksand', sans-serif;
    background: #f7f9f9;
    color: #2c3e50;
    line-height: 1.7;
}

/* Navigation */
.navbar {
    background: #fff;
    border-bottom: 2px solid #34d399;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.75rem;
    font-weight: 700;
    color: #34d399;
    letter-spacing: 0.05em;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.burger span {
    width: 25px;
    height: 2px;
    background: #34d399;
    display: block;
    border-radius: 2px;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    gap: 0.5rem;
}

.nav-item {
    padding: 0.75rem 1.5rem;
    color: #5a6c7d;
    text-decoration: none;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-item:hover {
    background: rgba(52, 211, 153, 0.1);
    color: #34d399;
}

.nav-item.active {
    background: #34d399;
    color: white;
}

/* Hero Minimal */
.hero-minimal {
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
}

.hero-minimal h1 {
    font-size: 4rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.hero-sub {
    font-size: 1.25rem;
    color: #7f8c8d;
    font-weight: 400;
    margin-bottom: 2rem;
}

.zen-circle {
    width: 60px;
    height: 60px;
    border: 2px solid #34d399;
    border-radius: 50%;
    margin: 2rem auto 0;
    opacity: 0.5;
}

/* Page Header Minimal */
.page-header-minimal {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, #fff 0%, #f7f9f9 100%);
}

.page-header-minimal h1 {
    font-size: 3rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    letter-spacing: 0.08em;
}

.page-header-minimal p {
    font-size: 1.15rem;
    color: #7f8c8d;
    font-weight: 400;
}

/* Content Section */
.content-section {
    padding: 4rem 2rem;
}

.content-section.alt-bg {
    background: #fff;
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.text-block {
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.text-block h2 {
    color: #34d399;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.text-block h3 {
    color: #2c3e50;
    font-size: 1.35rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.text-block p {
    color: #5a6c7d;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.text-block ul {
    margin: 1rem 0 1.5rem 2rem;
    color: #5a6c7d;
}

.text-block li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.centered-title {
    text-align: center;
    color: #34d399;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.value-box {
    background: #f7f9f9;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.value-box:hover {
    border-color: #34d399;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(52, 211, 153, 0.15);
}

.value-emoji {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.value-box h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-box p {
    color: #5a6c7d;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Game Display */
.game-display {
    margin-top: 2rem;
}

.game-container {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.game-container.game-large {
    padding: 1.5rem;
}

.game-embed {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 4px;
    background: #000;
}

.game-embed-large {
    height: 700px;
}

.game-text {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.game-text p {
    color: #5a6c7d;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit {
    text-align: center;
    padding: 2rem;
    background: #f7f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit:hover {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.benefit h4 {
    color: #2c3e50;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.benefit p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Legal Text */
.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-item {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.legal-item:last-child {
    margin-bottom: 0;
}

.legal-item h2 {
    color: #34d399;
    font-size: 1.65rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.legal-item h3 {
    color: #2c3e50;
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.legal-item p {
    color: #5a6c7d;
    line-height: 1.9;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.legal-item ul {
    margin: 1rem 0 1.5rem 2rem;
    color: #5a6c7d;
}

.legal-item li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.legal-item.important {
    border-left: 4px solid #f59e0b;
    background: #fffbeb;
}

.legal-item.important h2 {
    color: #b45309;
}

/* Footer */
.zen-footer {
    background: linear-gradient(to bottom, #2c3e50 0%, #1a252f 100%);
    color: #ecf0f1;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.footer-col h3 {
    color: #34d399;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.75rem;
}

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

.footer-list a:hover {
    color: #34d399;
}

.footer-col p {
    color: #bdc3c7;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-copyright {
    color: #95a5a6;
    font-size: 0.95rem;
}

/* Age Check */
.age-check {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-check-box {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid #34d399;
}

.age-check-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.age-check-box h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.age-check-box p {
    color: #5a6c7d;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.age-check-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.age-check-btns button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif;
}

.btn-yes {
    background: #34d399;
    color: white;
    border-color: #34d399;
}

.btn-yes:hover {
    background: #10b981;
    border-color: #10b981;
    transform: scale(1.05);
}

.btn-no {
    background: transparent;
    color: #95a5a6;
    border-color: #95a5a6;
}

.btn-no:hover {
    background: #ecf0f1;
    border-color: #7f8c8d;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-item {
        border-radius: 0;
        padding: 1.25rem 2rem;
        border-bottom: 1px solid #ecf0f1;
    }

    .hero-minimal h1 {
        font-size: 2.5rem;
    }

    .hero-sub {
        font-size: 1.1rem;
    }

    .page-header-minimal h1 {
        font-size: 2rem;
    }

    .content-section {
        padding: 3rem 1.5rem;
    }

    .text-block {
        padding: 2rem;
    }

    .centered-title {
        font-size: 1.85rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .game-embed {
        height: 450px;
    }

    .game-embed-large {
        height: 550px;
    }

    .age-check-box {
        margin: 1rem;
        padding: 2rem;
    }

    .age-check-btns {
        flex-direction: column;
    }

    .legal-item {
        padding: 2rem;
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
    }
}
