    :root {
        --primary-gradient: linear-gradient(135deg, #f472b6 0%, #ec4899 100%);
        --secondary-gradient: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
        --card-shadow: 0 20px 40px rgba(0,0,0,0.05);
        --hover-shadow: 0 30px 60px rgba(0,0,0,0.1);
    }

    .hero-section {
        padding: 1rem 0 0.5rem;
        background: none;
        text-align: center;
        margin-bottom: 1rem;
    }

    .hero-h1 {
        font-size: 3rem;
        font-weight: 900;
        letter-spacing: -0.03em;
        line-height: 1.1;
        color: #1e293b;
        margin-bottom: 0.8rem;
    }

    @media (max-width: 768px) {
        .hero-h1 { font-size: 2.5rem; }
    }

    .intro-p {
        font-size: 1.15rem;
        color: #64748b;
        max-width: 800px;
        margin: 0 auto 1.5rem;
        line-height: 1.6;
        font-weight: 500;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

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

    .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;
        border-radius: 24px;
        padding: 0.5rem 1.5rem;
        font-family: 'Outfit', sans-serif;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .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 .cta-title {
        font-size: 1.35rem;
        font-weight: 950;
        text-transform: uppercase;
        line-height: 1.2;
    }

    .funquizo-cta-test .cta-subtitle {
        font-size: 0.82rem;
        font-weight: 500;
        line-height: 1.1;
        margin-top: 0.15rem;
    }

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

    .back-to-main {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: #6366f1;
        text-decoration: none;
        font-weight: 800;
        font-size: 1.1rem;
        transition: all 0.2s;
    }

    .back-to-main:hover {
        transform: translateX(-5px);
    }

    .benefits-grid {
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
        margin-top: 2rem;
    }

    .benefit-item {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-weight: 700;
        color: #475569;
        font-size: 1.05rem;
    }

    .benefit-icon {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2.2rem;
        font-weight: 950;
        color: #1e293b;
        margin-bottom: 2.5rem;
        text-align: center;
        letter-spacing: -0.03em;
    }

    .interactive-card {
        background: #FFFFFF;
        border-radius: 35px;
        padding: 48px;
        margin-bottom: 48px;
        box-shadow: var(--card-shadow);
        border: 1px solid #f1f5f9;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .interactive-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--hover-shadow);
    }

    .card-tag {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        background: #ECFDF5;
        color: #10B981;
        padding: 0.6rem 2rem;
        font-size: 0.8rem;
        font-weight: 950;
        border-radius: 0 0 20px 20px;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        border: 1px solid #D1FAE5;
        border-top: none;
    }

    .riddle-text {
        font-size: 1.8rem;
        font-weight: 900;
        color: #1e293b;
        margin-top: 2rem;
        margin-bottom: 4rem;
        line-height: 1.3;
        letter-spacing: -0.02em;
        text-align: center;
    }

    @media (max-width: 640px) {
        .riddle-text { font-size: 1.5rem; margin-top: 1.5rem; margin-bottom: 2.5rem; }
        .interactive-card { padding: 3rem 1.5rem; }
    }

    .riddle-actions {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        margin-top: 2rem;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 1rem;
    }

    .btn-reveal {
        width: 240px;
        height: 60px;
        border-radius: 99px;
        cursor: pointer;
        transition: all 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        padding: 0;
        border: none;
    }

    .hint-btn {
        background: transparent;
        color: #64748b;
        border: 2px solid #e2e8f0;
        font-weight: 700;
        font-size: 1.1rem;
    }

    .answer-btn {
        background: var(--secondary);
        color: white;
        font-weight: 900;
        font-size: 1.1rem;
        box-shadow: 0 10px 20px rgba(236, 72, 153, 0.2);
        border: 2px solid var(--secondary);
    }

    .hint-btn:hover {
        background: #f8fafc;
        border-color: #cbd5e1;
    }

    .answer-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 30px rgba(236, 72, 153, 0.3);
    }

    .answer-container {
        background: #ecfdf5;
        padding: 1.5rem;
        border-radius: 20px;
        text-align: center;
        border: 2px solid #10b981;
        width: auto;
        min-width: 250px;
        max-width: 350px;
        box-shadow: 0 10px 20px rgba(16, 185, 129, 0.1);
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .pagination {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 5rem;
    }

    .page-link {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        background: white;
        border: 1px solid #e2e8f0;
        color: #64748b;
        text-decoration: none;
        font-weight: 800;
        transition: all 0.2s;
    }

    .page-link.active {
        background: #1e293b;
        color: white;
        border-color: #1e293b;
    }

    .faq-wrapper {
        max-width: 800px;
        margin: 8rem auto 4rem;
    }

    .faq-card {
        background: white;
        border: 1px solid #f1f5f9;
        border-radius: 24px;
        margin-bottom: 1rem;
        overflow: hidden;
        transition: all 0.3s;
    }

    .faq-trigger {
        width: 100%;
        padding: 1.8rem 2.2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: none;
        border: none;
        cursor: pointer;
        text-align: left;
        font-size: 1.1rem;
        font-weight: 850;
        color: #1e293b;
    }

    .faq-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        padding: 0 2.2rem;
        color: #64748b;
        line-height: 1.7;
        font-size: 1rem;
    }

    .faq-card.open {
        border-color: #a855f7;
        box-shadow: 0 10px 30px rgba(168, 85, 247, 0.08);
    }

    .faq-card.open .faq-content {
        max-height: 500px;
        padding-bottom: 2.2rem;
    }

    .seo-article {
        max-width: 850px;
        margin: 6rem auto;
        padding: 5rem;
        background: #f8fafc;
        border-radius: 40px;
        line-height: 1.8;
        font-size: 1.1rem;
        color: #475569;
    }

    .seo-article h2 {
        font-size: 2.2rem;
        font-weight: 950;
        color: #1e293b;
        margin-bottom: 1.5rem;
        letter-spacing: -0.04em;
    }

    .related-section {
        margin-top: 8rem;
        padding-bottom: 8rem;
        text-align: center;
    }

    .related-grid {
        display: flex;
        gap: 1.2rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .related-btn {
        padding: 1.2rem 2.5rem;
        background: white;
        border: 2px solid #e2e8f0;
        border-radius: 99px;
        color: #475569;
        font-weight: 800;
        text-decoration: none;
        transition: all 0.3s;
    }

    .related-btn:hover {
        border-color: #6366f1;
        color: #6366f1;
        transform: translateY(-3px);
    }

    .like-btn {
        background: white;
        border: 1px solid #e2e8f0;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s;
        box-shadow: 0 4px 6px rgba(0,0,0,0.02);
        color: #94a3b8;
        padding: 0;
    }

    .like-btn:hover { 
        border-color: #6366f1 !important; 
        color: #6366f1 !important; 
        transform: scale(1.1); 
        box-shadow: 0 10px 15px rgba(99, 102, 241, 0.1) !important; 
    }

    .like-btn.liked { 
        pointer-events: none;
        color: #6366f1;
        background: #f5f3ff;
        border-color: #c7d2fe;
    }
    .filter-pills {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
        margin-bottom: 3rem;
    }

    .filter-pill {
        padding: 0.8rem 1.8rem;
        background: #f1f5f9;
        color: #64748b;
        border-radius: 50px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        border: 2px solid transparent;
        font-size: 0.95rem;
    }

    .filter-pill:hover {
        background: #e2e8f0;
        color: #1e293b;
        transform: translateY(-2px);
    }

    .filter-pill.active {
        background: var(--secondary-gradient);
        color: white;
        box-shadow: 0 10px 20px rgba(236, 72, 153, 0.2);
    }

    @media (max-width: 480px) {
        .filter-pill {
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
        }
    }
</style>
