body {
    background: transparent;
    font-family: "Anonymous Pro", monospace;
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.tarot-widget {
    text-align: center;
    padding: 8px 15px 20px 15px;
    background: #191919;
    border-radius: 20px;
    width: 250px;
    max-height: 100%;
    overflow: hidden;
}

.tarot-card {
    width: 150px;
    height: 250px;
    margin: 10px auto;
    border-radius: 12px;
    overflow: hidden;
    perspective: 1000px;
}

.tarot-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    backface-visibility: hidden;
    transition: transform 0.6s;
}

.tarot-card.flip {
    transform: rotateY(180deg);
}

button {
    padding: 8px 14px;
    border: none;
    border-radius: 8px;
    background: #ffffff;
    color: #191919;
    font-family: "Anonymous Pro", monospace;
    font-weight: 700;
    font-style: normal;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #969696;
}
