body {
    font-family: 'Inter', sans-serif;
}

.roulette-container {
    position: relative;
    width: 400px;
    height: 400px;
}

#rouletteCanvas {
    transition: transform 5s cubic-bezier(0.15, 0, 0.15, 1);
}

.pointer {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 25px solid #ef4444;
    z-index: 10;
}
