
        .roulette-wrapper-main {
           /* background: #f5f5f5; */
           padding: 70px 0 50px 0;
           background: url(../images/bg.png) center bottom no-repeat;
        }
.roulette-wrapper-main h3{color:#fff}
.roulette-wrapper-main .h2-description{color:#fff}
        .roulette-container {
            background: #fff;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            max-width: 900px;
            width: 100%;
            margin: 0 auto;
        }

        .roulette-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .roulette-header h1 {
            color: #333;
            font-size: 28px;
            margin-bottom: 10px;
        }

        .roulette-header p {
          
        }

        .roulette-game-wrapper {
            position: relative;
            overflow: hidden;
            height: 230px;
            background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 15px;
            margin-bottom: 30px;
            box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .roulette-track {
            display: flex;
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            will-change: transform;
        }

        .roulette-item {
            min-width: 150px;
            width: 200px;
            height: 230px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border-right: 1px solid #181818fa;
            padding: 0px 10px 15px 10px;
            background: #000000;
            flex-shrink: 0;
        }

        .roulette-item.rare {
            background: linear-gradient(135deg, #121f28 0%, #010508 100%);
            color: #fff;
        }

        .roulette-item.epic {
              background: linear-gradient(135deg, #031506 0%, #010702 100%);
            color: #fff;
        }

        .roulette-item.legendary {
             background: linear-gradient(135deg, #121f28 0%, #010508 100%);
            color: #fff;
        }
  .roulette-item.common {
             background: linear-gradient(135deg, #1a1403 0%, #000000 100%);
            color: #fff;
        }
        .roulette-prize-icon {
        width: 120px;
        }

        .roulette-prize-name {
            font-size: 16px;
            text-align: center;
            margin-bottom: 5px;
            font-weight: 700;
            color: #f3f3f3;
        }

        .roulette-prize-description {
            font-size: 14px;
            text-align: center;
            opacity: 0.8;
            display: none;
        }

        .roulette-pointer {
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 20px solid transparent;
            border-right: 20px solid transparent;
            border-top: 30px solid #ff4757;
            z-index: 10;
            filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
        }

        .roulette-pointer::after {
            content: '';
            position: absolute;
            top: -35px;
            left: -15px;
            width: 30px;
            height: 10px;
            background: #ff4757;
            border-radius: 5px;
        }

        .roulette-game-wrapper::before,
        .roulette-game-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            width: 100px;
            height: 100%;
            z-index: 5;
            pointer-events: none;
        }

        .roulette-game-wrapper::before {
            left: 0;
            background: linear-gradient(to right, rgb(14 14 14 / 90%), transparent);
        }

        .roulette-game-wrapper::after {
            right: 0;
            background: linear-gradient(to left, rgb(18 18 18 / 90%), #00000000);
        }

        .roulette-controls {
            display: flex;
            gap: 15px;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .roulette-spin-button {
           
        }

        .roulette-spin-button:hover:not(:disabled) {
            transform: translateY(-3px);
           
        }

        .roulette-spin-button:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .roulette-rules-button {
          
            background: #efefef!important;
        }

        .roulette-rules-button:hover {
            background: #667eea;
            color: #fff;
        }

        .roulette-rules-icon {
            width: 20px;
            height: 20px;
        }

        .roulette-timer-container {
            padding: 5px 20px;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            border-radius: 10px 10px 0px 0px;
            color: #939393;
            -webkit-box-shadow: 0 14px 50px 0 rgba(133, 143, 160, .2);
            box-shadow: 0 14px 50px 0 rgba(133, 143, 160, .2);
        }

        .roulette-timer-container.no-attempts {
        }

        .roulette-timer-label {
            font-size: 14px;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .roulette-timer-display {
            font-size: 23px;
            font-weight: 700;
            letter-spacing: 2px;
            font-family: 'Bebas Neue', sans-serif;
            font-weight: 700;
        }

        .roulette-timer-hint {
            font-size: 12px;
            opacity: 0.8;
            margin-top: 8px;
        }

        .roulette-attempts-info {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgb(169 169 169 / 20%);
            padding: 5px 15px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
        }

        .roulette-modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 99999;
            align-items: center;
            justify-content: center;
            padding: 10px;
            animation: rouletteModalFadeIn 0.3s;
        }

        .roulette-modal-overlay.active {
            display: flex;
        }

        @keyframes rouletteModalFadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .roulette-modal-content {
            background: #fff;
            border-radius: 20px;
            padding: 40px;
            max-width: 500px;
            width: 100%;
            position: relative;
            animation: rouletteModalSlideUp 0.4s;
            max-height: 90vh;
            overflow-y: auto;
        }

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

        .roulette-modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 30px;
            cursor: pointer;
            color: #999;
            transition: color 0.3s;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        .roulette-modal-close:hover {
            color: #333;
        }

        .roulette-modal-header {
            text-align: center;
            margin-bottom: 25px;
        }

        .roulette-modal-prize-icon {
            font-size: 80px;
            margin-bottom: 15px;
            margin: 0 auto 15px;
        }

        .roulette-modal-title {
            font-size: 24px;
            color: #333;
            margin-bottom: 10px;
        }

        .roulette-modal-subtitle {
            font-size: 18px;
            color: #667eea;
            font-weight: 600;
        }

        .roulette-modal-text {
            text-align: center;
            color: #666;
            line-height: 1.6;
            font-size: 16px;
        }

        .roulette-modal-timer {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 15px;
            padding: 20px;
            margin: 20px 0;
            text-align: center;
        }

        .roulette-modal-timer-label {
            font-size: 14px;
            color: #666;
            margin-bottom: 10px;
        }

        .roulette-modal-timer-value {
            font-size: 32px;
            font-weight: 700;
            color: #667eea;
        }

        .roulette-modal-form {
            margin-top: 25px;
        }

        .roulette-form-group {
            margin-bottom: 20px;
        }

        .roulette-form-label {
            display: block;
            margin-bottom: 8px;
            color: #333;
            font-weight: 600;
            font-size: 14px;
        }

        .roulette-form-input {
            width: 100%;
            padding: 15px;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            font-size: 16px;
            transition: border-color 0.3s;
        }

        .roulette-form-input:focus {
            outline: none;
            border-color: #667eea;
        }

        .roulette-submit-button {
            width: 100%;
          
            padding: 16px;
            font-size: 16px;
            font-weight: 700;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .roulette-submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
        }

        .roulette-promo-code-container {
            display: none;
            margin-top: 20px;
            padding: 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 10px;
            text-align: center;
        }

        .roulette-promo-code-container.active {
            display: block;
        }

        .roulette-promo-label {
            font-size: 14px;
            color: #666;
            margin-bottom: 10px;
        }

        .roulette-promo-code {
            font-size: 28px;
            font-weight: 700;
            color: #667eea;
            letter-spacing: 3px;
            margin-bottom: 15px;
        }

        .roulette-copy-button {
            background: #667eea;
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s;
        }

        .roulette-copy-button:hover {
            background: #764ba2;
        }

        .roulette-rules-content h3 {
            color: #333;
            margin-bottom: 15px;
        }

        .roulette-rules-content ul {
            list-style-position: inside;
            color: #666;
            line-height: 1.8;
        }

        .roulette-rules-content li {
            margin-bottom: 10px;
        }

        /* ÃÅ¸ÃÂ¾Ã‘ÂÃÂ»ÃÂµÃÂ´ÃÂ½ÃÂ¸ÃÂµ ÃÂ²Ã‘â€¹ÃÂ¸ÃÂ³Ã‘â‚¬Ã‘â€¹Ã‘Ë†ÃÂ¸ - Ãâ€˜Ãâ€¢Ãâ€œÃÂ£ÃÂ©ÃÂÃÂ¯ ÃÂ¡ÃÂ¢ÃÂ ÃÅ¾ÃÅ¡ÃÂ */
.roulette-recent-wins {
    padding: 20px;
    margin-top: 30px;
    overflow: hidden;
}

.roulette-recent-wins-title {
    font-size: 16px;
    color: #333;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.roulette-wins-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.roulette-wins-wrapper::before,
.roulette-wins-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 50px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.roulette-wins-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa, transparent);
}

.roulette-wins-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fa, transparent);
}

.roulette-wins-list {
    display: flex;
    gap: 15px;
    animation: rouletteMarquee 30s linear infinite;
    width: max-content;
}

.roulette-wins-list:hover {
    animation-play-state: paused;
}

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

.roulette-win-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #00000038;
    border-radius: 10px;
    font-size: 13px;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.roulette-win-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.roulette-win-phone {
    color: #ffffff;
    font-weight: 600;
}

.roulette-win-prize {
    color: #ababab;
}

.roulette-win-time {
}

@media (max-width: 768px) {
    .roulette-wins-list {
        animation-duration: 40s;
    }
    .roulette-wrapper-main {
     padding: 30px 0;
}
}

@media (max-width: 480px) {
    .roulette-win-item {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .roulette-wins-list {
        animation-duration: 50s;
    }
}


      
        .roulette-win-prize {
        }

        .roulette-win-time {
            margin-left: auto;
            color: #ababab;
            font-size: 11px;
        }

        .roulette-no-wins {
            text-align: center;
            color: #999;
            padding: 20px;
            font-size: 15px;
        }

        @media (max-width: 768px) {
            .roulette-container {
                padding: 25px 20px;
            }
.roulette-timer-display{display:none}
            .roulette-header h1 {
                font-size: 22px;
            }

            .roulette-game-wrapper {
            }

            .roulette-item {
                min-width: 120px;
            }

            .roulette-prize-icon {
                font-size: 40px;
            }

            .roulette-prize-name {
                font-size: 17px;
            }

            .roulette-prize-description {
                font-size: 10px;
            }

            .roulette-spin-button {
                padding: 15px 35px;
                font-size: 16px;
            }

            .roulette-rules-button {
                padding: 10px 20px;
                font-size: 14px;
            }

            .roulette-modal-content {
                padding: 30px 20px;
            }

            .roulette-controls {
                flex-direction: column;
            }

            .roulette-timer-display {
                font-size: 28px;
            }
        }

        @media (max-width: 480px) {
            .roulette-header h1 {
                font-size: 20px;
            }

        
            .roulette-prize-icon {
                font-size: 35px;
            }

            .roulette-modal-content {
                padding: 25px 25px;
            }

            .roulette-timer-display {
                font-size: 14px;
            }
        }

        @keyframes roulettePulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        .roulette-spin-button.pulse {
            animation: roulettePulse 1.5s infinite;
        }
  .roulette-confetti {
            position: fixed;
            width: 10px;
            height: 10px;
            background: #667eea;
            position: absolute;
            animation: rouletteConfettiFall 3s linear forwards;
            z-index: 99998;
        }

        @keyframes rouletteConfettiFall {
            to {
                transform: translateY(100vh) rotate(360deg);
                opacity: 0;
            }
        }
		
		
	
.roulette-winner-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;  /* âœ… Ð¡Ð¾Ð²Ð¿Ð°Ð´Ð°ÐµÑ‚ Ñ .roulette-item */
    height: 230px; /* âœ… Ð¡Ð¾Ð²Ð¿Ð°Ð´Ð°ÐµÑ‚ Ñ .roulette-item */
    pointer-events: none;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.roulette-winner-indicator.active {
    opacity: 1;
}

/* Ð¡Ð²ÐµÑ‚ÑÑ‰Ð°ÑÑÑ Ñ€Ð°Ð¼ÐºÐ° */
.winner-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid #FFD700;
    border-radius: 0px; /* âœ… Ð£Ð±Ñ€Ð°Ð»Ð¸ ÑÐºÑ€ÑƒÐ³Ð»ÐµÐ½Ð¸Ðµ Ñ‡Ñ‚Ð¾Ð±Ñ‹ ÑÐ¾Ð²Ð¿Ð°Ð´Ð°Ð»Ð¾ */
    box-shadow:
        0 0 20px rgba(255, 215, 0, 0.8),
        0 0 40px rgba(255, 215, 0, 0.6),
        0 0 60px rgba(255, 215, 0, 0.4),
        inset 0 0 20px rgba(255, 215, 0, 0.3);
    animation: glowPulse 1s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow:
            0 0 20px rgba(255, 215, 0, 0.8),
            0 0 40px rgba(255, 215, 0, 0.6),
            0 0 60px rgba(255, 215, 0, 0.4),
            inset 0 0 20px rgba(255, 215, 0, 0.3);
        border-color: #FFD700;
    }
    50% {
        box-shadow:
            0 0 30px rgba(255, 215, 0, 1),
            0 0 60px rgba(255, 215, 0, 0.8),
            0 0 90px rgba(255, 215, 0, 0.6),
            inset 0 0 30px rgba(255, 215, 0, 0.5);
        border-color: #FFF700;
    }
}


.winner-glow::before,
.winner-glow::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #FFD700;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 215, 0, 1);
}

.winner-glow::before {
    top: -6px;
    left: -6px;
    animation: cornerSpark 1.5s ease-in-out infinite;
}

.winner-glow::after {
    bottom: -6px;
    right: -6px;
    animation: cornerSpark 1.5s ease-in-out infinite 0.75s;
}

@keyframes cornerSpark {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}
