        .section-reveal-wrap.winner-reveal-temp-style2{
            padding-right:0;
            text-align: center;
            display: block;
        }
        .section-reveal-wrap.winner-reveal-temp-style2 .wxgiveawayspin-btn{
            cursor: pointer;
        }
        .section-reveal-wrap.winner-reveal-temp-style2 .wxgiveaway_winner_reveal_wrapper{
            max-width: 50%;
            margin: auto;
        }
        .section-reveal-wrap.winner-reveal-temp-style2 .wxgiveaway_winner_reveal_giveaway_details{
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 10px;
        }
        .section-reveal-wrap.winner-reveal-temp-style2 .wxgiveaway_winner_reveal_giveaway_details img{
            max-width: 200px;
            height: auto;
            margin-right: 10px;
        }
        .section-reveal-wrap.winner-reveal-temp-style2 .wxgiveaway_winner_reveal_giveaway_details #wx-giveaway-title{
            font-size: 4rem;
            margin: 0;
            border-bottom: 0;
        }
        .winner-reveal-temp-style2 .wxgiveawaywheel-container {
            position: relative;
            width: 400px;
            height: 400px;
            margin-bottom: 20px;
            filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
            margin-left: auto;
            margin-right: auto;
            margin-top: 70px;
        }
        
        .winner-reveal-temp-style2 .wxgiveawaywheel {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            position: relative;
            overflow: hidden;
            border: 12px solid #2c3e50;
            box-shadow: 
                inset 0 0 30px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(0, 0, 0, 0.5);
            transition: transform 5s cubic-bezier(0.17, 0.67, 0.12, 0.99);
            transform: rotate(0deg);
            background: #2c3e50;
        }
        
        .winner-reveal-temp-style2 .section {
            position: absolute;
            width: 50%;
            height: 50%;
            transform-origin: bottom right;
            display: flex;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;
            padding-left: 60px;
            font-weight: bold;
            font-size: 20px;
            color: white;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
            clip-path: polygon(0 0, 40% 0, 98% 98%);
            transition: all 0.3s ease;
        }
        
        .winner-reveal-temp-style2 .section:hover {
            filter: brightness(1.1);
        }
        
        .winner-reveal-temp-style2 .wxgiveawaypointer {
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 25px solid transparent;
            border-right: 25px solid transparent;
            border-top: 50px solid #e74c3c;
            z-index: 10;
            filter: drop-shadow(0 5px 5px rgba(0,0,0,0.3));
        }
        
        .winner-reveal-temp-style2 .wxgiveawaypointer::after {
            content: '';
            position: absolute;
            top: -60px;
            left: -15px;
            width: 30px;
            height: 30px;
            background: #2c3e50;
            border-radius: 50%;
            border: 4px solid #e74c3c;
            box-sizing: border-box;
        }
        
        .winner-reveal-temp-style2 .wxgiveawayjackpot {
            position: absolute;
            top: 52%;
            left: 52%;
            transform: translate(-50%, -50%);
            background: radial-gradient(circle at center, gold 0%, #e5b625 100%);
            width: 100px;
            height: 100px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 18px;
            color: #2c3e50;
            box-shadow: 
                0 0 15px rgba(0, 0, 0, 0.5),
                inset 0 0 10px rgba(255, 215, 0, 0.8);
            z-index: 5;
            border: 4px solid #daa520;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
        }
        
        .winner-reveal-temp-style2 .wxgiveawaycontrols {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 30px;
        }
        
        .winner-reveal-temp-style2 button:active {
            transform: translateY(1px);
        }
        
        .winner-reveal-temp-style2 button:disabled {
            background: #95a5a6;
            cursor: not-allowed;
            transform: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .winner-reveal-temp-style2 .wxgiveawayresult {
            margin-top: 25px;
            font-size: 28px;
            font-weight: bold;
            text-align: center;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            background: rgba(255,255,255,0.2);
            padding: 10px 30px;
            border-radius: 50px;
            backdrop-filter: blur(5px);
            min-width: 200px;
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.5s ease;
        }
        
        .winner-reveal-temp-style2 .wxgiveawayresult.show {
            opacity: 1;
            transform: scale(1);
        }
        
        .confetti {
            position: fixed;
            top: 0;
            z-index: 9999;
            opacity: 0.9;
            border-radius: 50%;
            pointer-events: none;
            animation-name: fall;
            animation-timing-function: linear;
        }

        @keyframes fall {
            0% {
                transform: translateY(-10vh) rotate(0deg);
                opacity: 1;
            }
            100% {
                transform: translateY(100vh) rotate(720deg);
                opacity: 0;
            }
        }

        

        .sparkle {
            position: absolute;
            width: 5px;
            height: 5px;
            background-color: white;
            border-radius: 50%;
            opacity: 0;
            pointer-events: none;
            animation: sparkle 1s ease-out;
        }
        
        @keyframes sparkle {
            0% {
                transform: scale(0);
                opacity: 0;
            }
            50% {
                opacity: 1;
            }
            100% {
                transform: scale(2);
                opacity: 0;
            }
        }
        
        @keyframes wheel-glow {
            0% { box-shadow: 0 0 20px rgba(255,255,255,0.3); }
            50% { box-shadow: 0 0 40px rgba(255,255,255,0.7); }
            100% { box-shadow: 0 0 20px rgba(255,255,255,0.3); }
        }
        
        .spinning {
            animation: wheel-glow 0.5s infinite alternate;
        }