body {
    background-color: #030304;
}
.apple-glass {
    background: rgba(18, 18, 20, 0.6);
    backdrop-filter: saturate(180%) blur(24px);
    -webkit-backdrop-filter: saturate(180%) blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.apple-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.apple-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
}
.text-glow-violet {
    text-shadow: 0 0 40px rgba(139, 92, 246, 0.4);
}
.bg-subtle-grid-violet {
    background-size: 60px 60px;
    background-image:
        linear-gradient(to right, rgba(139, 92, 246, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(139, 92, 246, 0.02) 1px, transparent 1px);
}
#wheelCanvas {
    cursor: grab;
}
#wheelCanvas:active {
    cursor: grabbing;
}
.wheel-container::after {
    content: '';
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
