@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.skeleton {
    background: linear-gradient(90deg, #101522 25%, #1e6fff33 50%, #101522 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
    border-radius: 8px;
}

.skeleton-card {
    display: flex;
    justify-content: space-between;
    background: #101522;
    border-radius: 12px;
    border: 1px solid #1e6fff44;
    padding: 18px;
    align-items: center;
    box-shadow: 0 0 14px #1e6fff11;
}

.skeleton-logo {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    margin-right: 20px;
}

.skeleton-info {
    flex: 1;
}

.skeleton-title {
    width: 60%;
    height: 22px;
    margin-bottom: 12px;
}

.skeleton-line {
    width: 80%;
    height: 14px;
    margin-bottom: 8px;
}

.skeleton-btn {
    width: 90px;
    height: 35px;
    margin-top: 10px;
    border-radius: 5px;
}

.skeleton-profile-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.skeleton-profile-logo {
    width: 150px;
    height: 150px;
    border-radius: 15px;
}

.skeleton-profile-desc {
    width: 100%;
    height: 150px;
    margin-bottom: 20px;
    border-radius: 12px;
}