body {
    background: #1a1a1a;
    color: #fff;
    font-family: 'Cinzel', serif;
}
.tarot-spread {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}
.card {
    width: 100px;
    height: 150px;
    perspective: 1000px;
    cursor: pointer;
}
.card-inner {
    transition: transform 0.6s;
    transform-style: preserve-3d;
    position: relative;
}
.card.flipped .card-inner {
    transform: rotateY(180deg);
}
.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}
.card-back {
    background: url('../images/back.jpg') no-repeat center center;
    background-size: cover;
}
.card-front {
    transform: rotateY(180deg);
}
