body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, #ff9a9e, #fad0c4);
    overflow: hidden;
}

.container {
    position: relative;
    width: 300px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.card {
    position: absolute;
    width: 100%;
    height: 80%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    gap: 10px;
    transition: transform 0.5s, opacity 0.5s;
}

.card.hidden {
    opacity: 0;
    pointer-events: none;
}

.card.visible {
    transform: translateY(0) scale(1);
    z-index: 2;
    opacity: 1;
}

.card.above {
    transform: translateY(-100px) scale(0.9);
    z-index: 1;
    opacity: 0.5;
}

.card.below {
    transform: translateY(100px) scale(0.9);
    z-index: 1;
    opacity: 0.5;
}

.skeleton {
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 5px;
}

.skeleton.image {
    width: 100%;
    height: 60%;
    border-radius: 10px;
}

.skeleton-row {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.skeleton.profile {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.skeleton.text {
    flex: 1;
    height: 20px;
    border-radius: 5px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}