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

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

.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 scrollbars matching theme */
.custom-scroll::-webkit-scrollbar {
    width: 6px;
}

.custom-scroll::-webkit-scrollbar-track {
    background: rgba(3, 1, 7, 0.5);
}

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

.custom-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 92, 246, 0.4);
}

/* Score highlight leader decoration */
.leader-crown {
    position: relative;
}

.leader-crown::after {
    content: '👑';
    position: absolute;
    top: -6px;
    right: -6px;
    font-size: 10px;
}

/* Input animations */
input:focus {
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.15);
}

/* Custom transitions */
.choice-card {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
