#reviewsContainer{ 
    .cards-container {
        position: relative;
        width: 350px;
        height: 467px;
        margin: 0 auto;
    }
    .card {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 15px;
        background: white;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: transform 0.5s ease, opacity 0.5s ease;
        display: flex;
        flex-direction: column;
        cursor: grab;
        user-select: none;
        
        .card-image {
            height: 70%;
            background-size: cover;
            background-position: center;
        }
        .card-info {
            padding: 15px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .card-bio {
            font-size: 16px;
            color: #666;
            margin: 5px 0;
        }
        .card-age {
            color: #666;
        }
        .card-name {
            font-size: 24px;
            font-weight: bold;
            margin: 0;
        }
    }
    .like, .nope {
        position: absolute;
        top: 20px;
        font-size: 32px;
        font-weight: bold;
        padding: 5px 15px;
        border-radius: 5px;
        opacity: 0;
        transform: scale(0.8);
        transition: opacity 0.3s, transform 0.3s;
    }
    .like {
        left: 20px;
        color: #4CAF50;
        border: 3px solid #4CAF50;
        background-color: rgba(76, 175, 80, 0.1);
    }
    .nope {
        right: 20px;
        color: #F44336;
        border: 3px solid #F44336;
        background-color: rgba(244, 67, 54, 0.1);
    }
    .visible {
        opacity: 1;
        transform: scale(1);
    }
    .buttons {
        display: flex;
        justify-content: center;
        margin-top: 50px;
        gap: 15px;
    }
    button {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: none;
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        font-size: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s;

        &:active {
            transform: scale(0.95);
        }
    }
    .dislike {
        color: #F44336;
    }
    .like-btn {
        color: #4CAF50;
    }
}

