body {
    background-color: #030304;
    -webkit-tap-highlight-color: transparent;
}

.apple-glass {
    background: rgba(10, 10, 12, 0.7);
    backdrop-filter: saturate(180%) blur(24px);
    -webkit-backdrop-filter: saturate(180%) blur(24px);
    border: 1px solid rgba(139, 92, 246, 0.08);
}

.apple-card {
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.04) 0%, rgba(139, 92, 246, 0.01) 100%);
    border: 1px solid rgba(139, 92, 246, 0.05);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.apple-card:hover {
    border-color: rgba(139, 92, 246, 0.15);
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.06) 0%, rgba(139, 92, 246, 0.02) 100%);
}

.text-glow-violet {
    text-shadow: 0 0 35px 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.01) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(139, 92, 246, 0.01) 1px, transparent 1px);
}

.custom-scroll::-webkit-scrollbar {
    width: 5px;
}

.custom-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scroll::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.15);
    border-radius: 9999px;
}

/* Mobile-friendly pointer transitions */
.wheel-container {
    touch-action: none;
    /* Prevents browser pull-to-refresh while flicking wheel */
}
