/* Modal Windows */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: url('../open_back.png') no-repeat center center fixed; */
    background-size: cover;
    z-index: 1000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    backdrop-filter: blur(10px);
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal.show {
    opacity: 1;
}

.modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    transition: all 0.4s ease;
}

/* Roulette */
.roulette-container {
    width: 90%;
    max-width: 1200px;
    height: 200px;
    background: linear-gradient(135deg, 
        rgba(20, 20, 40, 0.95), 
        rgba(35, 35, 65, 0.95),
        rgba(20, 20, 40, 0.95));
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 
        0 0 60px rgba(0, 255, 136, 0.4),
        0 10px 40px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 255, 136, 0.6);
    z-index: 2;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal.show .roulette-container {
    transform: translateY(0);
    opacity: 1;
}

.roulette-items {
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    transition: transform 12s cubic-bezier(0.21, 0.01, 0.01, 0.99);
    will-change: transform;
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.3));
}

.roulette-item {
    min-width: 160px;
    width: 160px;
    height: 200px;
    margin: 0 10px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1), 
        rgba(255, 255, 255, 0.05)) !important;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 2px solid rgba(0, 255, 136, 0.3) !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    backdrop-filter: blur(5px);
}

.roulette-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(0, 255, 136, 0.1) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.roulette-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.roulette-item.loading img {
    opacity: 0;
}

.roulette-item.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* .roulette-item.prize {
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.6), 
        rgba(0, 184, 255, 0.6), 
        rgba(255, 215, 0, 0.4)) !important;
    transform: scale(1.08);
    border: 3px solid rgba(255, 215, 0, 0.9) !important;
    box-shadow: 
        0 0 40px rgba(255, 215, 0, 0.8),
        0 0 80px rgba(0, 255, 136, 0.6),
        inset 0 0 30px rgba(255, 255, 255, 0.2) !important;
    z-index: 10;
    animation: prize-glow 2s ease-in-out infinite alternate;
} */

/* .roulette-item.prize::after {
    content: '🏆';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    animation: prize-icon-bounce 1s ease-in-out infinite alternate;
} */

/* .roulette-item.prize .icon {
    animation: pulse 1.5s infinite alternate;
} */

.pointer {
    position: absolute;
    left: 50%;
    top: 0;
    width: 8px;
    height: 200px;
    background: linear-gradient(to bottom, 
        #ff3366, 
        rgba(255, 51, 102, 0.8),
        #ff3366);
    transform: translateX(-50%);
    z-index: 15 !important;
    box-shadow: 
        0 0 30px rgba(255, 51, 102, 0.9),
        0 0 60px rgba(255, 51, 102, 0.6);
    border-radius: 4px;
}

.pointer::before, .pointer::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #ff3366, #ff6699);
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 15px rgba(255, 51, 102, 0.8);
}

.pointer::before {
    top: -12px;
}

.pointer::after {
    bottom: -12px;
}

.close-modal {
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, #00ff88, #00b8ff);
    border: none;
    padding: 15px 50px;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translateY(30px);
    opacity: 0;
    min-height: 50px;
    pointer-events: none;
}

.modal.show .close-modal {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.3s;
    pointer-events: auto;
}

.close-modal:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.5);
}

.close-modal:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 255, 136, 0.4);
}

/* Debug: Make close button more visible */
.modal.show .close-modal {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.3s;
    pointer-events: auto;
    z-index: 10;
}

/* Win Popup - Fullscreen Modern Design */
.win-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(15px);
    opacity: 0;
    transition: opacity 0.4s ease;
    flex-direction: column;
}

.win-popup.active {
    opacity: 1;
}

.win-popup-content {
    background: linear-gradient(135deg, rgba(20, 20, 40, 0.95), rgba(35, 35, 65, 0.95));
    border-radius: 25px;
    padding: 40px 30px 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    max-height: 95vh;
    min-height: 90vh;
    position: relative;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.7),
        0 0 80px rgba(0, 255, 136, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 255, 136, 0.4);
    transform: scale(0.8) translateY(50px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.175);
    overflow: hidden;
    margin-bottom: 10px;
    will-change: transform, opacity;
    contain: layout style paint;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.win-popup-content::-webkit-scrollbar {
    display: none;
}

.win-popup.active .win-popup-content {
    transform: scale(1) translateY(0);
}

/* Enhanced animated background glow
.win-popup-content::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(0, 255, 136, 0.08) 90deg,
        transparent 180deg,
        rgba(0, 184, 255, 0.08) 270deg,
        transparent 360deg
    );
    animation: rotate-glow 8s linear infinite;
    z-index: -1;
} */

@keyframes rotate-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.win-header {
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.win-header h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    background: linear-gradient(45deg, #00ff88, #00b8ff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-text 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
}

@keyframes gradient-text {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.win-prize-container {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    padding: 50px 35px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 136, 0.3);
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.win-prize-icon {
    font-size: 200px;
    margin-bottom: 35px;
    animation: prize-float 2s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.6));
    will-change: transform;
    contain: layout style paint;
}

.win-prize-icon img {
    max-width: 300px;
    max-height: 300px;
    object-fit: contain;
    border-radius: 15px;
}

@keyframes prize-float {
    0%, 100% { 
        transform: translateY(0px) scale(1);
    }
    50% { 
        transform: translateY(-12px) scale(1.05);
    }
}

.win-prize-name {
    font-size: 32px;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 25px rgba(0, 255, 136, 0.5);
    /* margin-bottom: 25px; */
    line-height: 1.3;
}

@keyframes prize-glow {
    0% { 
        box-shadow: 
            0 0 40px rgba(255, 215, 0, 0.8),
            0 0 80px rgba(0, 255, 136, 0.6),
            inset 0 0 30px rgba(255, 255, 255, 0.2);
    }
    100% { 
        box-shadow: 
            0 0 60px rgba(255, 215, 0, 1),
            0 0 120px rgba(0, 255, 136, 0.8),
            inset 0 0 40px rgba(255, 255, 255, 0.3);
    }
}

.win-message {
    color: rgba(255, 255, 255, 0.9);
    margin: 20px 0 25px;
    font-size: 16px;
    font-weight: 500;
    z-index: 2;
    position: relative;
    line-height: 1.5;
}

/* Content wrapper for flex layout */
.win-content-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Close button container at bottom of modal */
.win-close-container {
    margin-top: auto;
    padding-top: 20px;
    width: 100%;
}

.win-close-button {
    width: 100%;
    height: 50px;
    background: linear-gradient(45deg, #00ff88, #00b8ff);
    border: none;
    border-radius: 25px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 
        0 8px 25px rgba(0, 255, 136, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.win-close-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.win-close-button:hover::before {
    left: 100%;
}

.win-close-button:hover {
    transform: translateY(-2px);
    /* box-shadow: 
        0 12px 35px rgba(0, 255, 136, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3); */
}

.win-close-button:active {
    transform: translateY(0px);
}

/* Action buttons for rare prizes */
.win-action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
    width: 100%;
}

.win-action-button {
    background: linear-gradient(45deg, #00ff88, #00b8ff);
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 150px;
}

.win-action-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.5);
}

.win-action-button:active {
    transform: translateY(-1px);
}

.win-action-button.write-button {
    background: linear-gradient(45deg, #ff3366, #ff6633);
    box-shadow: 0 6px 20px rgba(255, 51, 102, 0.4);
}

.win-action-button.write-button:hover {
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.5);
}

/* Preview Modal */
.preview-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.preview-modal.show {
    opacity: 1;
}

.preview-content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* padding: 20px; */
    box-sizing: border-box;
}

.preview-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    z-index: 1;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.preview-modal.show .preview-image {
    transform: scale(1);
    opacity: 1;
    transition-delay: 0.2s;
}

.preview-image.loading {
    opacity: 0;
}

.preview-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 2;
}

.preview-close {
    width: 60%;
    max-width: 250px;
    height: 60px;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(50px);
    z-index: 2;
    padding: 0;
    border: none;
    background: url('../images/close.webp') no-repeat center center;
    background-size: contain;
    cursor: pointer;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 10px;
    pointer-events: none;
}

.preview-modal.show .preview-close {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    transition-delay: 0.4s;
    pointer-events: auto;
}

.preview-close:hover {
    transform: translateX(-50%) translateY(-5px);
    filter: brightness(1.1);
}

.preview-close:active {
    transform: translateX(-50%) translateY(-2px);
    filter: brightness(0.9);
}

/* Particles Effect */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #00ff88;
    border-radius: 50%;
    opacity: 0.8;
    animation: particle-float 10s ease-in-out infinite;
}

.particle:nth-child(2n) {
    background: #00b8ff;
    width: 8px;
    height: 8px;
}

.particle:nth-child(3n) {
    background: #ff3366;
    width: 4px;
    height: 4px;
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced win popup effects */
.win-popup.show {
    animation: win-popup-entrance 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes win-popup-entrance {
    0% {
        opacity: 0;
        transform: scale(0.7) translateY(30px);
    }
    60% {
        opacity: 1;
        transform: scale(1.05) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Ensure roulette is always visible when modal is shown */
.modal.show .roulette-container,
.modal.show .roulette-items,
.modal.show .roulette-item {
    visibility: visible !important;
    opacity: 1 !important;
}

/* Rare prize effects */
.rare-prize-glow {
    animation: rare-prize-golden-glow 2s ease-in-out infinite alternate;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    border: 3px solid rgba(255, 215, 0, 0.9);
    border-radius: 15px;
}

.win-popup.rare-prize {
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, rgba(0, 0, 0, 0.9) 70%);
}

.win-popup.rare-prize::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="gold" opacity="0.6"><animate attributeName="opacity" values="0.6;1;0.6" dur="2s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="1.5" fill="gold" opacity="0.4"><animate attributeName="opacity" values="0.4;0.9;0.4" dur="3s" repeatCount="indefinite"/></circle><circle cx="60" cy="70" r="2.5" fill="gold" opacity="0.5"><animate attributeName="opacity" values="0.5;1;0.5" dur="2.5s" repeatCount="indefinite"/></circle></svg>');
    pointer-events: none;
    z-index: 1;
}

@keyframes rare-prize-golden-glow {
    0% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.4);
        border-color: rgba(255, 215, 0, 0.7);
    }
    100% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 1), 0 0 80px rgba(255, 215, 0, 0.6);
        border-color: rgba(255, 215, 0, 1);
    }
}

/* Fireworks Animations */
@keyframes firework-particle {
    0% {
        transform: translate(0, 0) scale(var(--initial-scale, 1));
        opacity: 1;
    }
    15% {
        transform: translate(
            calc(cos(var(--angle)) * var(--distance) * 0.3),
            calc(sin(var(--angle)) * var(--distance) * 0.3)
        ) scale(var(--initial-scale, 1));
        opacity: 1;
    }
    100% {
        transform: translate(
            calc(cos(var(--angle)) * var(--distance)),
            calc(sin(var(--angle)) * var(--distance))
        ) scale(0);
        opacity: 0;
    }
}

@keyframes sparkle-burst {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translate(
            calc(cos(var(--sparkle-angle)) * var(--sparkle-distance)),
            calc(sin(var(--sparkle-angle)) * var(--sparkle-distance))
        ) scale(0.3) rotate(360deg);
        opacity: 0;
    }
}

/* Additional fireworks effects */
.firework-star {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 6px solid;
    transform: rotate(35deg);
}

.firework-star:before {
    content: '';
    position: absolute;
    left: -4px;
    top: -2px;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 6px solid;
    transform: rotate(-70deg);
}

.firework-star:after {
    content: '';
    position: absolute;
    left: -4px;
    top: 1px;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 6px solid;
    transform: rotate(70deg);
}

/* Sparkling trail effect */
@keyframes sparkling-trail {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
        box-shadow: 0 0 10px currentColor;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
        box-shadow: 0 0 20px currentColor, 0 0 30px currentColor;
    }
    100% {
        transform: translate(
            calc(cos(var(--angle)) * var(--distance)),
            calc(sin(var(--angle)) * var(--distance))
        ) scale(0);
        opacity: 0;
        box-shadow: 0 0 5px currentColor;
    }
}

/* Hearts for rare prizes */
.firework-heart {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ff1744;
    transform: rotate(45deg);
    animation: firework-particle 2.5s ease-out forwards;
}

.firework-heart::before,
.firework-heart::after {
    content: '';
    width: 8px;
    height: 8px;
    position: absolute;
    background: #ff1744;
    border-radius: 4px 4px 0 0;
    transform: rotate(-45deg);
    transform-origin: 0 100%;
}

.firework-heart::after {
    left: 0;
    top: -4px;
    transform: rotate(45deg);
    transform-origin: 100% 100%;
}

/* Enhanced Roulette Animations */
@keyframes prize-glow {
    0% { 
        box-shadow: 
            0 0 40px rgba(255, 215, 0, 0.8),
            0 0 80px rgba(0, 255, 136, 0.6),
            inset 0 0 30px rgba(255, 255, 255, 0.2);
    }
    100% { 
        box-shadow: 
            0 0 60px rgba(255, 215, 0, 1),
            0 0 120px rgba(0, 255, 136, 0.8),
            inset 0 0 40px rgba(255, 255, 255, 0.3);
    }
}

@keyframes prize-icon-bounce {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.2) rotate(5deg); }
}

@keyframes roulette-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Shimmer effect for roulette container */
.roulette-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 255, 136, 0.1) 25%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(0, 255, 136, 0.1) 75%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: roulette-shimmer 3s ease-in-out infinite;
    pointer-events: none;
}
