        .winners-section {
            padding: 1.1rem 0.5rem;
            overflow: hidden;
            margin-top: 1rem;
        }

        .winners-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .winners-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .winners-title {
            font-size: 1.8rem;
            font-weight: 600;
            color: #ffffff;
            margin: 0;
        }

        .total-distributed {
            text-align: right;
        }

        .distributed-label {
            display: block;
            font-size: 0.85rem;
            color: #9ca3af;
            margin-bottom: 0.25rem;
        }

        .distributed-value {
            font-size: 1.1rem;
            font-weight: 700;
            color: #22c55e;
            display: block;
        }

        .winners-carousel {
            position: relative;
            overflow: hidden;
            mask: linear-gradient(90deg, transparent 0%, black 2%, black 98%, transparent 100%);
            -webkit-mask: linear-gradient(90deg, transparent 0%, black 2%, black 98%, transparent 100%);
        }

        .winners-track {
            display: flex;
            gap: 1rem;
            animation: scrollWinners 45s linear infinite;
            width: fit-content;
        }

        @keyframes scrollWinners {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .winner-item {
            flex-shrink: 0;
            width: 280px;
            background: rgba(255, 255, 255, 0.05) !important;
            border: 1px solid rgba(255, 255, 255, 0.08) !important;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2) !important;
            padding: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .winner-item:hover {
            border-color: rgba(34, 197, 94, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .winner-avatar {
            width: 45px;
            height: 45px;
            flex-shrink: 0;
        }

        .avatar-circle {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 1.1rem;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .avatar-text {
            text-transform: uppercase;
        }

        .winner-info {
            flex: 1;
            min-width: 0;
        }

        .winner-name {
            font-size: 0.9rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 0.15rem;
            text-overflow: ellipsis;
            overflow: hidden;
            white-space: nowrap;
        }

        .winner-time {
            font-size: 0.75rem;
            color: #9ca3af;
        }

        .winner-prize {
            text-align: right;
            flex-shrink: 0;
        }

        .prize-value {
            font-size: 0.9rem;
            font-weight: 700;
            color: #22c55e;
            margin-bottom: 0.15rem;
            line-height: 1.2;
        }

        .prize-type {
            font-size: 0.65rem;
            font-weight: 600;
            color: #9ca3af;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Pause no hover */
        .winners-carousel:hover .winners-track {
            animation-play-state: paused;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .winners-section {
                padding: 1.5rem 0.75rem;
            }

            .winners-header {
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
                gap: 0.75rem;
            }

            .winners-title {
                font-size: 1.5rem;
            }

            .total-distributed {
                text-align: left;
            }

            .distributed-value {
                font-size: 1.2rem;
            }

            .winner-item {
                width: 200px;
                padding: 0.875rem;
                gap: 0.625rem;
            }

            .winner-avatar {
                width: 38px;
                height: 38px;
            }

            .avatar-circle {
                font-size: 0.95rem;
            }

            .winner-name {
                font-size: 0.85rem;
            }

            .winner-time {
                font-size: 0.7rem;
            }

            .prize-value {
                font-size: 0.85rem;
            }

            .prize-type {
                font-size: 0.6rem;
            }

            .winners-track {
                animation-duration: 35s;
            }
        }

        @media (max-width: 480px) {
            .winner-item {
                width: 180px;
                padding: 0.75rem;
                gap: 0.5rem;
            }

            .winner-avatar {
                width: 32px;
                height: 32px;
            }

            .avatar-circle {
                font-size: 0.8rem;
            }

            .winner-name {
                font-size: 0.8rem;
            }

            .prize-value {
                font-size: 0.8rem;
            }
        }

        /* Efeito de entrada suave */
        .winners-section {
            animation: fadeInUp 0.6s ease-out;
        }

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

        /* Efeitos de borda animada */
        .winner-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 12px;
            padding: 1px;
            background: linear-gradient(45deg, transparent, rgba(34, 197, 94, 0.3), transparent);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: subtract;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .winner-item:hover::before {
            opacity: 1;
        }