/* 
   Daily Standup Wheel — Wheel Styles
   Canvas, Pointer, Spin Button
*/

.wheel-container {
    position: relative;
    width: 600px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#wheel-canvas {
    width: 600px;
    height: 600px;
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.5));
}

.wheel-pointer {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid white;
    z-index: 5;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
}

/* Spin Button (Central Hub) */
.spin-btn {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1b2e, #000);
    border: 4px solid var(--accent-primary);
    color: var(--accent-primary);
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 1.2rem;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
    z-index: 6;
}

.spin-btn:hover {
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.5);
    background: var(--accent-primary);
    color: #000;
}

.spin-btn:active {
    transform: scale(0.95);
}