html {
    scroll-behavior: smooth;
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #050508;
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}

.text-glow-light {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9), 0 0 30px rgba(56, 189, 248, 0.8);
}
.card-perspective {
    perspective: 1000px;
}
.tarot-inner {
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}
.tarot-inner.flipped {
    transform: rotateY(180deg);
}
.tarot-front, .tarot-back {
    backface-visibility: hidden;
}
.tarot-back {
    transform: rotateY(180deg);
}