* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(to bottom, #022c22, #064e3b, #022c22);
    color: #f0fdf4;
    line-height: 1.65;
    min-height: 100vh;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 44, 34, 0.97);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(8px);
}

.modal-overlay.visible {
    display: flex;
}

.modal-content {
    background: linear-gradient(140deg, #064e3b, #065f46);
    padding: 2.8rem 2.2rem;
    border-radius: 16px;
    max-width: 470px;
    width: 90%;
    text-align: center;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.7);
    border: 2px solid #10b981;
}

.modal-logo svg {
    width: 92px;
    height: 92px;
    margin: 0 auto 1.4rem;
    filter: drop-shadow(0 4px 14px rgba(16, 185, 129, 0.5));
}

.modal-content h2 {
    color: #10b981;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.modal-content p {
    font-size: 1.02rem;
    margin-bottom: 0.9rem;
    color: #d1fae5;
}

.modal-disclaimer {
    font-size: 0.9rem;
    color: #a7f3d0;
    font-style: italic;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2.1rem;
    justify-content: center;
}

.modal-actions button {
    padding: 1rem 2.3rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-yes {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.btn-yes:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 22px rgba(16, 185, 129, 0.4);
}

.btn-no {
    background: #dc2626;
    color: white;
}

.btn-no:hover {
    background: #b91c1c;
}

.top-bar {
    background: rgba(6, 78, 59, 0.93);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #10b981;
}

.bar-content {
    max-width: 1360px;
    margin: 0 auto;
    padding: 1.15rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    text-decoration: none;
}

.brand-svg {
    width: 46px;
    height: 46px;
}

.brand-name {
    font-size: 1.7rem;
    font-weight: 700;
    color: #10b981;
    letter-spacing: 0.8px;
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-btn .line {
    width: 27px;
    height: 3px;
    background: #10b981;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-btn.active .line:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.menu-btn.active .line:nth-child(2) {
    opacity: 0;
}

.menu-btn.active .line:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

.top-nav {
    display: flex;
    gap: 2.4rem;
}

.top-nav a {
    color: #d1fae5;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
}

.top-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #dc2626;
    transition: width 0.3s ease;
}

.top-nav a:hover::after,
.top-nav a.active::after {
    width: 100%;
}

.top-nav a:hover,
.top-nav a.active {
    color: #10b981;
}

.splash {
    background: linear-gradient(125deg, rgba(16, 185, 129, 0.13), rgba(6, 78, 59, 0.4)),
                radial-gradient(circle at top right, rgba(220, 38, 38, 0.1), transparent);
    padding: 6.8rem 2rem;
    text-align: center;
}

.splash-inner h1 {
    font-size: 3.4rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 15px rgba(16, 185, 129, 0.4);
}

.splash-text {
    font-size: 1.5rem;
    color: #d1fae5;
    margin-bottom: 2.4rem;
    font-weight: 500;
}

.splash-cta {
    display: inline-block;
    padding: 1.3rem 3.4rem;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.18rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 7px 22px rgba(220, 38, 38, 0.35);
}

.splash-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(220, 38, 38, 0.5);
}

section {
    padding: 4.3rem 2rem;
}

.max-width {
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-size: 2.5rem;
    color: #10b981;
    margin-bottom: 1.9rem;
    font-weight: 700;
    text-align: center;
}

.about {
    background: rgba(6, 78, 59, 0.35);
}

.about-content p {
    font-size: 1.08rem;
    margin-bottom: 1.5rem;
    color: #d1fae5;
}

.core-messages {
    background: linear-gradient(to bottom, rgba(2, 44, 34, 0.6), rgba(6, 78, 59, 0.4));
}

.message-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.3rem;
    margin-top: 2.4rem;
}

.message-card {
    padding: 2.4rem;
    border-radius: 14px;
    text-align: center;
    border: 3px solid;
    transition: transform 0.3s ease;
}

.message-card.emerald {
    background: rgba(16, 185, 129, 0.13);
    border-color: #10b981;
}

.message-card.red {
    background: rgba(220, 38, 38, 0.13);
    border-color: #dc2626;
}

.message-card.teal {
    background: rgba(20, 184, 166, 0.13);
    border-color: #14b8a6;
}

.message-card:hover {
    transform: translateY(-6px);
}

.card-icon {
    font-size: 3.4rem;
    margin-bottom: 1.1rem;
}

.message-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #10b981;
    font-weight: 700;
}

.message-card p {
    font-size: 0.98rem;
    color: #d1fae5;
}

.featured-game {
    background: rgba(6, 78, 59, 0.35);
}

.featured-desc {
    text-align: center;
    font-size: 1.08rem;
    color: #d1fae5;
    margin-bottom: 2.4rem;
}

.game-frame {
    background: #000;
    border-radius: 14px;
    overflow: hidden;
    margin: 2.4rem auto;
    box-shadow: 0 14px 48px rgba(0, 0, 0, 0.65);
    border: 3px solid #dc2626;
}

.game-embed {
    width: 100%;
    height: 640px;
    border: none;
    display: block;
}

.game-button {
    display: block;
    margin: 2rem auto 0;
    padding: 1.1rem 2.6rem;
    background: transparent;
    color: #10b981;
    text-decoration: none;
    font-weight: 700;
    border: 3px solid #10b981;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
    width: fit-content;
}

.game-button:hover {
    background: #10b981;
    color: #022c22;
}

.strengths {
    background: linear-gradient(130deg, rgba(2, 44, 34, 0.65), rgba(6, 78, 59, 0.45));
}

.strengths-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.1rem;
    margin-top: 2.4rem;
}

.strength-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(6, 78, 59, 0.4);
    border-radius: 12px;
    border-left: 5px solid #dc2626;
    transition: all 0.3s ease;
}

.strength-card:hover {
    background: rgba(6, 78, 59, 0.6);
    transform: translateX(7px);
}

.strength-emoji {
    font-size: 2.6rem;
    flex-shrink: 0;
}

.strength-info h3 {
    font-size: 1.28rem;
    color: #10b981;
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.strength-info p {
    font-size: 0.98rem;
    color: #d1fae5;
}

.responsible-play {
    background: rgba(6, 78, 59, 0.35);
}

.responsible-card {
    max-width: 940px;
    margin: 0 auto;
    text-align: center;
    padding: 2.9rem;
    background: rgba(2, 44, 34, 0.7);
    border-radius: 14px;
    border: 2px solid #dc2626;
}

.responsible-card p {
    font-size: 1.08rem;
    color: #d1fae5;
    margin-bottom: 1.5rem;
}

.play-title {
    background: linear-gradient(125deg, rgba(16, 185, 129, 0.16), rgba(6, 78, 59, 0.4));
    padding: 3.9rem 2rem;
    text-align: center;
    border-bottom: 3px solid #10b981;
}

.play-title h1 {
    font-size: 2.95rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.title-desc {
    font-size: 1.18rem;
    color: #d1fae5;
}

.play-section {
    padding: 2rem 0;
    background: rgba(2, 44, 34, 0.7);
}

.game-viewport {
    background: #000;
    border-top: 4px solid #10b981;
    border-bottom: 4px solid #dc2626;
}

.fullscreen-game {
    width: 100%;
    height: 770px;
    border: none;
    display: block;
}

.play-instructions {
    background: rgba(6, 78, 59, 0.35);
}

.instructions-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2.1rem;
    margin-top: 2.4rem;
}

.instruction-box {
    background: rgba(6, 78, 59, 0.5);
    padding: 2rem;
    border-radius: 11px;
    border-top: 4px solid #10b981;
}

.instruction-box h3 {
    font-size: 1.22rem;
    color: #dc2626;
    margin-bottom: 1rem;
    font-weight: 700;
}

.instruction-box p {
    font-size: 0.96rem;
    color: #d1fae5;
}

.play-reminder {
    background: linear-gradient(125deg, rgba(220, 38, 38, 0.12), rgba(6, 78, 59, 0.4));
}

.reminder-panel {
    max-width: 940px;
    margin: 0 auto;
    text-align: center;
    padding: 2.9rem;
    background: rgba(2, 44, 34, 0.75);
    border-radius: 14px;
    border: 3px solid #10b981;
}

.reminder-panel h2 {
    font-size: 2.15rem;
    margin-bottom: 1.6rem;
}

.reminder-panel p {
    font-size: 1.06rem;
    color: #d1fae5;
    margin-bottom: 1.1rem;
}

.legal-top {
    background: linear-gradient(125deg, rgba(16, 185, 129, 0.14), rgba(6, 78, 59, 0.4));
    padding: 3.9rem 2rem;
    text-align: center;
    border-bottom: 3px solid #dc2626;
}

.legal-top h1 {
    font-size: 2.95rem;
    color: #10b981;
    margin-bottom: 0.7rem;
}

.legal-date {
    font-size: 0.98rem;
    color: #a7f3d0;
}

.legal-body {
    background: rgba(6, 78, 59, 0.35);
}

.legal-text h2 {
    text-align: left;
    font-size: 1.75rem;
    margin-top: 2.4rem;
    margin-bottom: 1.1rem;
    color: #dc2626;
}

.legal-text p {
    margin-bottom: 1.2rem;
    font-size: 0.98rem;
    color: #d1fae5;
}

.bottom-footer {
    background: rgba(2, 44, 34, 0.95);
    border-top: 3px solid #10b981;
    padding: 3.4rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
    gap: 2.9rem;
    margin-bottom: 2.4rem;
}

.footer-section h4 {
    color: #10b981;
    font-size: 1.28rem;
    margin-bottom: 1.1rem;
    font-weight: 700;
}

.footer-section p {
    color: #a7f3d0;
    font-size: 0.96rem;
    line-height: 1.65;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #d1fae5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #dc2626;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.1rem;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.footer-bottom p {
    color: #a7f3d0;
    font-size: 0.91rem;
    margin-bottom: 0.6rem;
}

.footer-fine {
    color: #6ee7b7;
    font-size: 0.86rem;
}

@media (max-width: 768px) {
    .menu-btn {
        display: flex;
        z-index: 1001;
    }

    .top-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 73%;
        height: 100vh;
        background: rgba(2, 44, 34, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.6rem;
        transition: right 0.4s ease;
        border-left: 3px solid #10b981;
    }

    .top-nav.open {
        right: 0;
    }

    .top-nav a {
        font-size: 1.45rem;
    }

    .splash-inner h1,
    .play-title h1,
    .legal-top h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 2.05rem;
    }

    .game-embed,
    .fullscreen-game {
        height: 490px;
    }

    .message-grid,
    .instructions-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .splash {
        padding: 5.2rem 1rem;
    }

    .splash-inner h1 {
        font-size: 1.95rem;
    }

    .splash-text {
        font-size: 1.22rem;
    }

    section {
        padding: 3.3rem 1rem;
    }
}