.cta-buttons-container-test {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.25rem;
        margin-bottom: 2rem;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 1rem;
}

.flag-example-fallback {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 24px;
    border-radius: 3px;
    background: #e2e8f0;
    color: #64748b;
    font-size: .5rem;
    letter-spacing: .04em;
}
    .exit-btn:hover { background-color: #e2e8f0 !important; color: #1e293b !important; }
    
    .option-btn {
        background: white;
        border: 2px solid #e2e8f0;
        padding: 1.5rem 1rem;
        border-radius: 20px;
        font-size: 1.15rem;
        font-weight: 700;
        color: #1e293b;
        cursor: pointer;
        transition: all 0.25s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        box-shadow: 0 4px 6px rgba(0,0,0,0.01);
    }
    
    .option-btn:hover:not(:disabled) {
        transform: translateY(-3px);
        border-color: #6366f1;
        box-shadow: 0 10px 20px rgba(99, 102, 241, 0.08);
        background: #faf5ff;
    }
    
    .option-btn.correct {
        background-color: #10b981 !important;
        border-color: #059669 !important;
        color: white !important;
        box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2) !important;
    }
    
    .option-btn.incorrect {
        background-color: #ef4444 !important;
        border-color: #dc2626 !important;
        color: white !important;
        box-shadow: 0 10px 20px rgba(239, 68, 68, 0.2) !important;
    }
    
    .option-btn:disabled:not(.correct):not(.incorrect) {
        opacity: 0.6;
        cursor: default;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(99, 102, 241, 0.45);
    }

    @media (max-width: 600px) {
        .game-layout { padding: 1rem 0.5rem !important; }
        .game-card { border-radius: 24px !important; padding: 1.8rem 1.2rem !important; }
        .options-grid { grid-template-columns: 1fr !important; gap: 0.8rem !important; }
        .option-btn { padding: 1.2rem 1rem !important; font-size: 1.05rem !important; border-radius: 16px !important; }
        .flag-container { max-width: 280px !important; }
    }

    .funquizo-cta-test {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        width: 345px;
        max-width: 100%;
        min-height: 84px;
        height: 84px;
        padding: 0.5rem 1.5rem;
        border-radius: 24px;
        font-family: 'Outfit', sans-serif;
        text-decoration: none;
        text-align: center;
        transition: all 0.2s ease-in-out;
        border: none;
        cursor: pointer;
    }

    .funquizo-cta-test .cta-title {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        font-size: 1.35rem;
        font-weight: 950;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        line-height: 1.2;
    }

    .funquizo-cta-test .cta-subtitle {
        font-size: 0.82rem;
        font-weight: 500;
        opacity: 0.85;
        text-transform: none;
        letter-spacing: 0.02em;
        line-height: 1.1;
        margin-top: 0.15rem;
    }

    .funquizo-cta-test.solo {
        background: #ec4899;
        color: white;
        box-shadow: 0 10px 20px rgba(236, 72, 153, 0.3);
    }

    .funquizo-cta-test.solo:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 28px rgba(236, 72, 153, 0.4);
    }

    .funquizo-cta-test.solo:active {
        transform: translateY(0);
    }

    .funquizo-cta-test.multi {
        background: #7c3aed;
        color: white;
        box-shadow: 0 10px 20px rgba(124, 58, 237, 0.25);
    }

    .funquizo-cta-test.multi:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 28px rgba(124, 58, 237, 0.35);
    }

    .funquizo-cta-test.multi:active {
        transform: translateY(0);
    }

    @media (max-width: 768px) {
        .cta-buttons-container-test {
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }
        .funquizo-cta-test {
            width: 100%;
            max-width: 345px;
        }
    }
    
