        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
            margin: 0;
            padding: 0;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background: linear-gradient(135deg, #1a0033 0%, #2d0052 50%, #1a0033 100%);
        }

        .video-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }

        .container {
            width: 100%;
            max-width: 500px;
            height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: transparent;
        }

        .background-glow {
            position: fixed;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(138, 43, 226, 0.2) 0%, transparent 70%);
            filter: blur(40px);
            animation: glow-pulse 4s ease-in-out infinite;
            pointer-events: none;
            z-index: 0;
        }

        .background-glow-2 {
            position: fixed;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
            filter: blur(40px);
            animation: glow-pulse 6s ease-in-out infinite 1s;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes glow-pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1a0033 0%, #2d0052 50%, #1a0033 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            animation: preloader-fadeout 3s ease-in-out forwards;
            animation-delay: 1.5s;
        }

        @keyframes preloader-fadeout {
            0% { opacity: 1; visibility: visible; }
            100% { opacity: 0; visibility: hidden; }
        }

        .preloader-logo {
            width: 250px;
            height: 170px;
            background-image: url('GEXyZ8_P1-w3Ok4G_I9ID.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            animation: logo-pulse 1.5s ease-in-out infinite;
            filter: drop-shadow(0 10px 40px rgba(255, 215, 0, 0.5));
        }

        @keyframes logo-pulse {
            0%, 100% { transform: scale(1); opacity: 0.8; }
            50% { transform: scale(1.08); opacity: 1; }
        }

        /* Main logo centered */
        .main-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            animation: logo-bounce 2s ease-in-out infinite;
            width: 100%;
        }

        .main-logo img {
            height: 100px;
            width: auto;
            max-width: 90%;
            object-fit: contain;
            filter: drop-shadow(0 8px 25px rgba(255, 215, 0, 0.4));
        }

        @keyframes logo-bounce {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        /* Icon replacements */
        .icon {
            display: inline-block;
            font-size: 1.2em;
            margin: 0 4px;
        }

        .icon-gift::before { content: "🎁"; }
        .icon-celebrate::before { content: "🎉"; }
        .icon-check::before { content: "✓"; font-weight: bold; color: #00ff00; }

        .content {
            position: relative;
            z-index: 10;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px 30px;
            text-align: center;
        }

        .screen {
            width: 100%;
            height: 100%;
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.6s ease-in;
        }

        .screen.active {
            display: flex;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: scale(0.98); }
            to { opacity: 1; transform: scale(1); }
        }

        /* Screen 1 */
        .screen-1 {
            justify-content: flex-start;
            gap: 0;
        }

        .title {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 4px;
            text-shadow: 0 2px 10px rgba(138, 43, 226, 0.5);
            line-height: 1.2;
        }

        .subtitle {
            font-size: 12px;
            color: #ffd700;
            margin-bottom: 15px;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        .wheel-container {
            position: relative;
            width: 500px;
            height: 500px;
            margin: 20px 0 60px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            filter: drop-shadow(0 0 50px rgba(255, 215, 0, 0.7)) 
                    drop-shadow(0 0 30px rgba(138, 43, 226, 0.5));
        }

        .wheel {
            width: 100%;
            height: 100%;
            position: relative;
            animation: wheel-slow-spin 20s linear infinite;
        }

        .wheel.spinning {
            animation: wheel-fast-spin 3.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards !important;
        }

        @keyframes wheel-slow-spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes wheel-fast-spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(1800deg); }
        }

        .pointer {
            position: absolute;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #ffed4e 0%, #ffd700 50%, #ffaa00 100%);
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 20;
            filter: drop-shadow(0 4px 10px rgba(255, 215, 0, 0.8))
                    drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
            animation: pointer-pulse 1s ease-in-out infinite;
        }

        @keyframes pointer-pulse {
            0%, 100% { filter: drop-shadow(0 4px 10px rgba(255, 215, 0, 0.8)) drop-shadow(0 0 15px rgba(255, 215, 0, 0.6)); }
            50% { filter: drop-shadow(0 4px 10px rgba(255, 215, 0, 1)) drop-shadow(0 0 25px rgba(255, 215, 0, 0.9)); }
        }

        .btn {
            padding: 16px 50px;
            font-size: 18px;
            font-weight: 700;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 2px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
            position: relative;
            z-index: 15;
        }

        .btn-primary {
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
            color: #1a0033;
            padding: 18px 60px;
            font-size: 20px;
            animation: btn-pulse 2s ease-in-out infinite;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.5),
                        0 8px 20px rgba(0, 0, 0, 0.4);
        }

        @keyframes btn-pulse {
            0%, 100% {
                box-shadow: 0 0 20px rgba(255, 215, 0, 0.5),
                            0 8px 20px rgba(0, 0, 0, 0.4);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 0 40px rgba(255, 215, 0, 0.8),
                            0 10px 30px rgba(255, 215, 0, 0.6),
                            0 8px 20px rgba(0, 0, 0, 0.4);
                transform: scale(1.05);
            }
        }

        .btn-primary:hover {
            transform: scale(1.08);
            box-shadow: 0 0 50px rgba(255, 215, 0, 1),
                        0 0 30px rgba(255, 215, 0, 0.7),
                        0 12px 25px rgba(0, 0, 0, 0.5);
        }

        .btn-primary:active {
            transform: scale(0.98);
        }

        .btn-secondary {
            background: linear-gradient(135deg, #8a2be2 0%, #9933ff 100%);
            color: #fff;
            animation: btn-secondary-pulse 2s ease-in-out infinite;
        }

        @keyframes btn-secondary-pulse {
            0%, 100% {
                box-shadow: 0 0 15px rgba(138, 43, 226, 0.5),
                            0 8px 20px rgba(0, 0, 0, 0.4);
            }
            50% {
                box-shadow: 0 0 30px rgba(138, 43, 226, 0.8),
                            0 0 20px rgba(138, 43, 226, 0.6),
                            0 8px 20px rgba(0, 0, 0, 0.4);
            }
        }

        .btn-secondary:hover {
            transform: scale(1.08);
            box-shadow: 0 0 40px rgba(138, 43, 226, 1),
                        0 0 25px rgba(138, 43, 226, 0.7),
                        0 12px 25px rgba(0, 0, 0, 0.5);
        }

        .btn-secondary:active {
            transform: scale(0.98);
        }

        .btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        /* Screen 2 */
        .screen-2 {
            padding: 40px;
        }

        .result-icon {
            font-size: 80px;
            margin-bottom: 20px;
            animation: bounce 0.6s ease-out;
        }

        @keyframes bounce {
            0% { transform: scale(0); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

        .result-text {
            font-size: 32px;
            font-weight: 700;
            color: #ffd700;
            text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
            line-height: 1.4;
            margin-bottom: 40px;
        }

        .result-subtext {
            font-size: 14px;
            color: #ddd;
            margin-bottom: 30px;
        }

        /* Screen 3 */
        .screen-3 {
            padding: 40px;
            justify-content: space-between;
        }

        .bonus-info {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 30px;
        }

        .bonus-item {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0;
            font-size: 22px;
            color: #fff;
            font-weight: 600;
            flex-direction: column;
            gap: 12px;
        }

        .bonus-check {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #8a2be2 0%, #9933ff 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 0;
            color: #ffd700;
            font-size: 28px;
            font-weight: 700;
            flex-shrink: 0;
            box-shadow: 0 0 20px rgba(138, 43, 226, 0.6),
                        0 0 10px rgba(255, 215, 0, 0.4);
            animation: check-pulse 2s ease-in-out infinite;
        }

        @keyframes check-pulse {
            0%, 100% {
                box-shadow: 0 0 20px rgba(138, 43, 226, 0.6),
                            0 0 10px rgba(255, 215, 0, 0.4);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 0 35px rgba(138, 43, 226, 0.9),
                            0 0 20px rgba(255, 215, 0, 0.6);
                transform: scale(1.1);
            }
        }

        .bonus-item-text {
            line-height: 1.5;
            color: #fff;
        }

        .bonus-amount {
            color: #ffed4e;
            font-weight: 700;
            font-size: 24px;
        }

        .screen-3 .btn {
            margin-top: auto;
            width: 100%;
        }

        /* Wheel SVG */
        svg {
            width: 100%;
            height: 100%;
        }

        .wheel-segment {
            transition: opacity 0.2s ease;
        }

        .wheel-segment:hover {
            opacity: 0.9;
        }

        .segment-text {
            font-size: 14px;
            font-weight: bold;
            fill: #fff;
            text-anchor: middle;
            pointer-events: none;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8),
                         0 0 6px rgba(138, 43, 226, 0.6);
            filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.8));
        }

        .segment-value {
            font-size: 14px;
            font-weight: 700;
        }

        .loader {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 215, 0, 0.3);
            border-top-color: #ffd700;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Floating chips */
        .floating-chips {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: visible;
        }

        .floating-chip {
            position: absolute;
            width: 80px;
            height: 80px;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
        }

        .chip-1 {
            width: 90px;
            height: 90px;
            top: 8%;
            left: 5%;
            animation: float-chip-1 4s ease-in-out infinite;
        }

        .chip-2 {
            width: 75px;
            height: 75px;
            top: 15%;
            right: 8%;
            animation: float-chip-2 4.5s ease-in-out infinite 0.3s;
        }

        .chip-3 {
            width: 70px;
            height: 70px;
            top: 45%;
            left: 2%;
            animation: float-chip-3 3.8s ease-in-out infinite 0.6s;
        }

        .chip-4 {
            width: 85px;
            height: 85px;
            top: 50%;
            right: 3%;
            animation: float-chip-4 4.2s ease-in-out infinite 0.9s;
        }

        .chip-5 {
            width: 80px;
            height: 80px;
            bottom: 15%;
            left: 8%;
            animation: float-chip-5 3.9s ease-in-out infinite 1.2s;
        }

        .chip-6 {
            width: 75px;
            height: 75px;
            bottom: 10%;
            right: 6%;
            animation: float-chip-6 4.3s ease-in-out infinite 1.5s;
        }

        @keyframes float-chip-1 {
            0%, 100% { transform: translateY(0px) rotateZ(0deg); }
            50% { transform: translateY(-30px) rotateZ(15deg); }
        }

        @keyframes float-chip-2 {
            0%, 100% { transform: translateY(0px) rotateZ(0deg); }
            50% { transform: translateY(-25px) rotateZ(-20deg); }
        }

        @keyframes float-chip-3 {
            0%, 100% { transform: translateY(0px) rotateZ(0deg); }
            50% { transform: translateY(-28px) rotateZ(18deg); }
        }

        @keyframes float-chip-4 {
            0%, 100% { transform: translateY(0px) rotateZ(0deg); }
            50% { transform: translateY(-32px) rotateZ(-12deg); }
        }

        @keyframes float-chip-5 {
            0%, 100% { transform: translateY(0px) rotateZ(0deg); }
            50% { transform: translateY(-26px) rotateZ(22deg); }
        }

        @keyframes float-chip-6 {
            0%, 100% { transform: translateY(0px) rotateZ(0deg); }
            50% { transform: translateY(-29px) rotateZ(-16deg); }
        }

        @media (max-width: 600px) {
            .title {
                font-size: 24px;
            }

            .wheel-container {
                width: 240px;
                height: 240px;
            }

            .result-text {
                font-size: 28px;
            }

            .floating-chip {
                width: 60px !important;
                height: 60px !important;
            }

            .chip-1 { width: 60px; height: 60px; }
            .chip-2 { width: 55px; height: 55px; }
            .chip-3 { width: 50px; height: 50px; }
            .chip-4 { width: 60px; height: 60px; }
            .chip-5 { width: 55px; height: 55px; }
            .chip-6 { width: 50px; height: 50px; }
        }