.random-choice-picker .mode-selector {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.random-choice-picker .mode-btn {
    padding: 8px 20px;
    background: #f1f5f9;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Outfit', sans-serif;
    color: #0f172a;
}

.random-choice-picker .mode-btn:hover {
    background: #e2e8f0;
}

.random-choice-picker .mode-btn.active {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

/* ─── Spinner ─── */
.random-choice-picker .spinner-container {
    text-align: center;
}

.random-choice-picker .spinner-display {
    position: relative;
    width: 300px;
    height: 100px;
    margin: 0 auto 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.random-choice-picker .spinner-item {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
}

.random-choice-picker .spinner-pointer {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 16px solid #3b82f6;
}

.random-choice-picker .spinner-controls {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.random-choice-picker .spin-btn {
    background: #3b82f6;
}

.random-choice-picker .spin-btn:hover {
    background: #2563eb;
}

.random-choice-picker .stop-btn {
    background: #ef4444 !important;
}

.random-choice-picker .stop-btn:hover {
    background: #dc2626 !important;
}

.random-choice-picker .reset-btn {
    background: #64748b;
}

.random-choice-picker .reset-btn:hover {
    background: #475569;
}

/* ─── Wheel ─── */
.random-choice-picker .wheel-container {
    text-align: center;
}

.random-choice-picker .wheel-wrapper {
    position: relative;
    display: inline-block;
}

.random-choice-picker .wheel-wrapper canvas {
    max-width: 100%;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.random-choice-picker .wheel-pointer {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 20px solid #ef4444;
    z-index: 10;
}

/* ─── Slots ─── */
.random-choice-picker .slots-container {
    text-align: center;
}

.random-choice-picker .slots-display {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 20px;
}

.random-choice-picker .slot-reel {
    width: 100px;
    height: 80px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
}

.random-choice-picker .slots-controls {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── Result ─── */
.random-choice-picker .result-area {
    margin-top: 24px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #eef2f6;
    text-align: center;
}

.random-choice-picker .result-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    display: block;
}

.random-choice-picker .result-label {
    font-size: 0.9rem;
    color: #64748b;
}