body {
    margin: 0;
    padding: 0;
    background: #1a1a1a;
    overflow-x: hidden;
}

/* Skeleton Loading Container */
#skeleton-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #1a1a1a;
    transition: opacity 0.3s ease-out;
}

#skeleton-loader.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* Skeleton Header */
.skeleton-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background: #2a2a2a;
}

.skeleton-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #3a3a3a;
    animation: shimmer 1.5s infinite;
}

.skeleton-nav {
    display: flex;
    gap: 24px;
}

.skeleton-nav-item {
    width: 100px;
    height: 20px;
    border-radius: 4px;
    background: #3a3a3a;
    animation: shimmer 1.5s infinite;
}

.skeleton-nav-item:nth-child(2) {
    animation-delay: 0.2s;
}

.skeleton-nav-item:nth-child(3) {
    animation-delay: 0.4s;
}

.skeleton-nav-item:nth-child(4) {
    animation-delay: 0.6s;
}

/* Skeleton Content */
.skeleton-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 40px;
}

.skeleton-hero {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    background: #2a2a2a;
    margin-bottom: 40px;
    animation: shimmer 1.5s infinite;
}

.skeleton-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.skeleton-card {
    height: 250px;
    border-radius: 8px;
    background: #2a2a2a;
    animation: shimmer 1.5s infinite;
}

.skeleton-card:nth-child(2) {
    animation-delay: 0.2s;
}

.skeleton-card:nth-child(3) {
    animation-delay: 0.4s;
}

.skeleton-text-block {
    margin-bottom: 24px;
}

.skeleton-text {
    height: 16px;
    border-radius: 4px;
    background: #2a2a2a;
    margin-bottom: 12px;
    animation: shimmer 1.5s infinite;
}

.skeleton-text:nth-child(1) {
    width: 80%;
}

.skeleton-text:nth-child(2) {
    width: 90%;
    animation-delay: 0.1s;
}

.skeleton-text:nth-child(3) {
    width: 70%;
    animation-delay: 0.2s;
}

/* Shimmer Animation */
@keyframes shimmer {
    0% {
        background-color: #2a2a2a;
    }

    50% {
        background-color: #3a3a3a;
    }

    100% {
        background-color: #2a2a2a;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .skeleton-header {
        padding: 16px 20px;
    }

    .skeleton-nav {
        display: none;
    }

    .skeleton-cards {
        grid-template-columns: 1fr;
    }

    .skeleton-content {
        padding: 0 20px;
    }
}