/* Roulette Game Specific Styles | 룰렛 게임 전용 스타일 */

.roulette-main-area {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.roulette-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.wheel-box {
    position: relative;
    width: 450px;
    height: 450px;
    padding: 10px;
    background: var(--bg-panel);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.pointer {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: var(--neon-lime);
    z-index: 10;
    text-shadow: 0 0 15px var(--neon-lime-glow);
}

#roulette-canvas {
    width: 100%;
    height: 100%;
}

.spin-btn {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(204, 255, 0, 0.2);
}

.roulette-result {
    width: 350px;
    background: var(--bg-panel);
    border: 2px solid var(--neon-lime);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    animation: resultPopIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes resultPopIn {
    from { transform: translateX(30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.result-content h3 {
    font-family: var(--font-heading);
    color: var(--neon-lime);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

#roulette-result-text {
    font-size: 2.2rem;
    font-weight: 900;
    word-break: break-all;
}

@media (max-width: 992px) {
    .roulette-main-area {
        flex-direction: column;
        gap: 3rem;
    }
    .roulette-result {
        width: 100%;
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .wheel-box { width: 320px; height: 320px; }
}
