.wcs_featured {
    flex: 2;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 20px;
    transition: all 0.3s ease;

    &:hover {
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    }

    .wcs_top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;

        .wcs_title {
            font-size: 18px;
            font-weight: 600;
            color: #2d3748;
        }
    }

    .good-health {
        color: #10b981;
    }

    .warning-health {
        color: #f59e0b;
    }

    .critical-health {
        color: #ef4444;
    }

    .wcs_bottom {
        background: linear-gradient(145deg, #ffffff, #f8faff);
        border-radius: 12px;
        padding: 1.5rem;
        position: relative;
        overflow: hidden;

        &::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(76, 175, 80, 0.05) 0%, transparent 70%);
            animation: pulse 2s infinite;
        }

        .wcs_featuredChart {
            width: 140px;
            height: 140px;
            margin: 0 auto 1.5rem;
            position: relative;

            &::after {
                content: '';
                position: absolute;
                top: -10px;
                left: -10px;
                right: -10px;
                bottom: -10px;
                border-radius: 50%;
                background: radial-gradient(circle at center, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
                animation: glowPulse 2s infinite;
            }

            .CircularProgressbar {
                filter: drop-shadow(0 0 6px rgba(76, 175, 80, 0.3));

                .CircularProgressbar-path {
                    stroke: #4CAF50;
                    stroke-linecap: round;
                    transition: stroke-dashoffset 0.5s ease;
                    animation: progressGlow 2s infinite;
                }

                .CircularProgressbar-trail {
                    stroke: #e6e9f2;
                    opacity: 0.4;
                }

                .CircularProgressbar-text {
                    fill: #2c3e50;
                    font-size: 1.2rem;
                    font-weight: 600;
                    animation: textPulse 2s infinite;
                }
            }
        }

        .wcs_title {
            text-align: center;
            font-size: 1.1rem;
            font-weight: 500;
            color: #64748b;
            text-transform: capitalize;
            margin-bottom: 1.5rem;
        }

        .wcs_summary {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;

            .wcs_item {
                background: rgba(255, 255, 255, 0.9);
                padding: 1rem;
                border-radius: 10px;
                transition: all 0.3s ease;
                border: 1px solid rgba(226, 232, 240, 0.7);

                &:hover {
                    transform: translateY(-2px);
                    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
                }

                .itemTitle {
                    font-size: 0.85rem;
                    color: #64748b;
                    margin-bottom: 0.5rem;
                }

                .itemResult {
                    display: flex;
                    align-items: center;
                    gap: 0.4rem;

                    &.positive {
                        color: #10b981;

                        svg {
                            background: rgba(16, 185, 129, 0.1);
                            border-radius: 50%;
                            padding: 2px;
                        }
                    }

                    &.negative {
                        color: #ef4444;

                        svg {
                            background: rgba(239, 68, 68, 0.1);
                            border-radius: 50%;
                            padding: 2px;
                        }
                    }

                    .resultAmount {
                        font-weight: 600;
                        font-size: 1rem;
                    }
                }
            }
        }
    }
}

// Animations
@keyframes pulse {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        opacity: 0.5;
    }
}

@keyframes glowPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

@keyframes progressGlow {
    0% {
        filter: drop-shadow(0 0 2px rgba(76, 175, 80, 0.3));
    }

    50% {
        filter: drop-shadow(0 0 6px rgba(76, 175, 80, 0.5));
    }

    100% {
        filter: drop-shadow(0 0 2px rgba(76, 175, 80, 0.3));
    }
}

@keyframes textPulse {
    0% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.8;
    }
}

// Pro badge enhancement
.wcs_featured_free {
    position: relative;

    h4.pro_badge {
        position: absolute;
        right: 0;
        top: 20px;
        background: linear-gradient(135deg, #8504a7, #614ad3);
        color: white;
        padding: 5px 12px;
        border-top-left-radius: 8px;
        border-bottom-left-radius: 8px;
        font-size: 12px;
        font-weight: 500;
        box-shadow: 0 2px 10px rgba(133, 4, 167, 0.3);
        animation: glowText 1.5s infinite;
    }

    .wec_left_featured {
        opacity: 0.4;
        background-color: rgba(250, 250, 250, 0.2);
    }
}

@keyframes glowText {
    0% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.8), 0 0 10px rgba(97, 74, 211, 0.5);
    }

    50% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(97, 74, 211, 0.8);
    }

    100% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.8), 0 0 10px rgba(97, 74, 211, 0.5);
    }
}

// Responsive styles
@media screen and (max-width: 768px) {
    .wcs_featured {
        .wcs_bottom {
            padding: 1rem;

            .wcs_featuredChart {
                width: 120px;
                height: 120px;
            }

            .wcs_summary {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.8rem;
            }
        }
    }
}

@media screen and (max-width: 480px) {
    .wcs_featured {
        .wcs_bottom {
            .wcs_summary {
                grid-template-columns: 1fr;
            }
        }
    }
}