.card_section {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 200px;
}

.card-stack {
    position: relative;
    width: 300px;
    height: 450px;
}

.card {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 0.5s, opacity 0.5s, color 0.5s, border 0.5s;
    color: rgba(248, 36, 40, 1); /* Text color, initially fully opaque */
    border: 1px solid rgba(248, 36, 40, 1);
    background-color: #28001E;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    --rotation: 0deg;
    --card-index: 0;
    transform: rotate(var(--rotation)) translateZ(var(--card-index));
    z-index: calc(var(--z-index-base, 1000) - var(--card-index));
    padding: 2vw;
}

.like-animate {
    transform: rotate(20deg) translateX(100%) translateY(-25%) !important;
    opacity: 0;
}

.dislike-animate {
    transform: rotate(-20deg) translateX(-100%) translateY(-25%) !important;
    opacity: 0;
}

.rate-button {
    width: 50px;
    height: 50px;
    background-color: #28001E;
    color: #F82428;
    border: 1px solid #F82428;
    border-radius: 100px;
}

.rate-button:hover {
    background-color: #f8242826;
}
