:root {
    --cl-tab-h: var(--tb-h, 3.25rem);
}

html,
body {
    background: #0F0F0F;
    color: #fff;
}

#app {
    width: 100vw;
    min-height: 100vh;
    background: #0F0F0F;
}

.cl-root {
    min-height: 100vh;
    padding-bottom: calc(var(--cl-tab-h) + 1rem);
    background: #0F0F0F;
}

.cl-head {
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 1.875rem 1rem .875rem;
}

.cl-back {
    width: 1.5rem;
    height: 1.5rem;
}

.cl-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.cl-tab {
    position: relative;
    color: rgba(255, 255, 255, .72);
    font-size: 1rem;
    padding: 0 0 .3125rem;
    cursor: pointer;
    font-family: 'Gilroy 400', sans-serif;
}

.cl-tab-active {
    color: #fff;
    font-weight: 800;
    font-family: 'Gilroy 700', sans-serif;
}

.cl-tab-active::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 1.875rem;
    height: .125rem;
    background: #FA3767;
    transform: translateX(-50%);
}

.cl-content {
    min-height: calc(100vh - 6.2rem);
    padding: 0 1.1rem 1.5rem;
}

.cl-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.625rem 1.0625rem;
}

.cl-card {
    position: relative;
    width: 100%;
    height: 8.875rem;
    border-radius: .3125rem;
    overflow: hidden;
    background: #252525;
    cursor: pointer;
}

.cl-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cl-cover-empty {
    background: linear-gradient(145deg, #2c2c2c, #171717);
}

.cl-card-shade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1.75rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #000000 100%);
    pointer-events: none;
}

.cl-ep {
    position: absolute;
    right: .4375rem;
    bottom: .375rem;
    z-index: 2;
    color: #fff;
    font-size: .625rem;
    white-space: nowrap;
    font-family: 'Gilroy 700', sans-serif;
}

.cl-ep span {
    font-family: 'Gilroy 500', sans-serif;
}

.cl-empty {
    min-height: calc(100vh - 6.2rem - var(--cl-tab-h));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 4rem;
    text-align: center;
}

.cl-empty-img {
    width: 7.3125rem;
    height: 7.125rem;
    object-fit: contain;
    margin-bottom: 1.375rem;
}


.cl-empty-title {
    color: #fff;
    font-size: 1rem;
    font-family: 'Gilroy 700', sans-serif;
}

.cl-empty-text {
    margin-top: .625rem;
    color: #fff;
    font-size: .875rem;
    font-family: 'Gilroy 500', sans-serif;
}

.tb-tabbar {
    background: rgba(15, 15, 15, .88);
    border-top: 1px solid rgba(255, 255, 255, .05);
}

@supports (min-height: 100dvh) {
    .cl-root {
        min-height: 100dvh;
    }

    .cl-content,
    .cl-empty {
        min-height: calc(100dvh - 6.2rem - var(--cl-tab-h));
    }
}