.page-container {
    margin-bottom: 40px;
}

.main-con {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin: 0 auto;
    font-size: 17px;
}

.total-creators {
    font-weight: 500;
    font-size: 18px;
}

.crs-nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    overflow: auto;
    padding-bottom: 6px;
    line-height: 1.4;
}

.crs-nav-item {
    display: flex;
    width: fit-content;
    height: 34px;
    gap: 6px;
    align-items: center;
    color: #ffffffc9 !important;
    background: #272d3e;
    padding: 0 8px;
    border-radius: 8px;
    white-space: nowrap;
    transition: all .15s ease-out;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    transform: translate(0, 0);
}

.crs-nav-item:hover,
.crs-nav-item:focus {
    transform: translate(2px, 2px);
    filter: invert(100%) grayscale(100%) brightness(1.2);
    box-shadow: none;
}

.crs-nav-item.active {
    transform: translate(0, 0);
    filter: invert(100%) grayscale(100%) brightness(1.2);
    box-shadow: none;
}

.crs-nav-item img {
    height: 18px;
    width: 18px;
    max-width: 10000px;
    object-fit: contain;
}

.creator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 12px;
    width: 100%;
}

.creator-item {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    background: #242833;
    box-shadow: 0px 2px 4px #00000069;
    text-decoration: none;
    color: inherit;
    padding: 6px;
}

.c-img-wrap {
    display: flex;
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.4);
}

.c-img-f {
    position: relative;
    z-index: 2;
    width: 100%;
    object-fit: contain;
}

.c-img-b {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(8px);
}

.creator-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
    padding: 4px;
}

.creator-name {
    font-weight: bold;
    font-size: 16px;
    color: #fff;
}

.creator-bio {
    color: #ffffffad;
    font-size: 13px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.creator-views {
    margin-top: auto;
    font-size: 12px;
    font-weight: 500;
    color: #ffffffa8;
    width: fit-content;
    background: #181b23;
    padding: 2px 6px;
    border-radius: 8px;
}