#home-skeleton-overlay {
    background: #ffffff;
    width: 100%;
    overflow: hidden;
}

#home-skeleton-overlay.skeleton-hidden {
    display: none;
}

#home-skeleton-overlay:not(.skeleton-hidden) ~ .home-main-wrapper {
    display: none;
}

#home-skeleton-overlay .hps-wrap {
    max-width: 1388px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

#home-skeleton-overlay .sk {
    display: block;
    background: #e7e8ea;
    border-radius: 8px;
    animation: hpsSkelPulse 1.4s ease-in-out infinite;
}

#home-skeleton-overlay .sk-dark {
    background: rgba(255, 255, 255, 0.14);
}

@keyframes hpsSkelPulse {
    50% {
        opacity: 0.5;
    }
}

#home-skeleton-overlay .hps-hero {
    width: 100%;
    background: #101b30;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 56px 24px 48px;
}

#home-skeleton-overlay .sk-hero-badge {
    width: 300px;
    max-width: 85%;
    height: 38px;
    border-radius: 100px;
}

#home-skeleton-overlay .sk-hero-title {
    width: 480px;
    max-width: 90%;
    height: 54px;
}

#home-skeleton-overlay .sk-hero-subtitle {
    width: 320px;
    max-width: 65%;
    height: 46px;
}

#home-skeleton-overlay .sk-hero-desc {
    width: 560px;
    max-width: 95%;
    height: 18px;
}

#home-skeleton-overlay .hps-hero-search {
    width: 100%;
    max-width: 786px;
    height: 56px;
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 8px;
}

#home-skeleton-overlay .hps-hero-search .sk-search-field {
    flex: 1;
    height: 100%;
    background: #ffffff;
    border-radius: 0;
}

#home-skeleton-overlay .hps-hero-search .sk-search-btn {
    width: 128px;
    height: 100%;
    background: #d42b65;
    border-radius: 0;
    animation: hpsSkelPulse 1.4s ease-in-out infinite;
}

#home-skeleton-overlay .hps-hero-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

#home-skeleton-overlay .sk-hero-pill {
    width: 130px;
    height: 30px;
    border-radius: 16px;
}

#home-skeleton-overlay .hps-section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 56px;
}

#home-skeleton-overlay .sk-sec-title {
    width: 340px;
    max-width: 60%;
    height: 34px;
}

#home-skeleton-overlay .sk-sec-sub {
    width: 420px;
    max-width: 80%;
    height: 14px;
    margin-top: 10px;
}

#home-skeleton-overlay .sk-sec-browse {
    width: 110px;
    height: 20px;
}

#home-skeleton-overlay .sk-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 46vh;
    border-radius: 16px;
    margin-top: 24px;
}

@media (max-width: 768px) {
    #home-skeleton-overlay .hps-hero {
        padding: 40px 16px 32px;
        gap: 18px;
    }

    #home-skeleton-overlay .sk-hero-title {
        height: 38px;
    }

    #home-skeleton-overlay .sk-hero-subtitle {
        height: 32px;
    }

    #home-skeleton-overlay .hps-hero-search .sk-search-btn {
        width: 96px;
    }

    #home-skeleton-overlay .sk-hero-pill {
        width: 100px;
    }

    #home-skeleton-overlay .hps-section-head {
        margin-top: 40px;
    }
}
