
.reel-cell.active {
    border: 3px solid #ffeb3b;
    box-shadow: 0 0 15px rgba(255, 235, 59, 0.8);
    transform: scale(1.05);
    z-index: 10;
    transition: all 0.1s ease;
}


.indicator {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    border: 3px solid #ffeb3b;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(255, 235, 59, 0.8);
    z-index: 5;
    pointer-events: none;
}


@keyframes win-animation {
    0% { transform: scale(1); box-shadow: 0 0 5px rgba(255, 235, 59, 0.5); }
    50% { transform: scale(1.1); box-shadow: 0 0 20px rgba(255, 235, 59, 0.9); }
    100% { transform: scale(1); box-shadow: 0 0 5px rgba(255, 235, 59, 0.5); }
}

.win-effect {
    animation: win-animation 0.5s ease infinite;
    border: 3px solid #ff9800;
    z-index: 10;
}


@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.control-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}


@keyframes blink {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

.light {
    animation: blink 1s infinite;
}


.light:nth-child(odd) {
    animation-delay: 0.5s;
}


@keyframes pop-up {
    0% { transform: scale(0); opacity: 0; }
    70% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

.win-amount {
    position: absolute;
    color: #ffeb3b;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
    animation: pop-up 0.5s forwards;
    z-index: 100;
} 