.girls-sidebar-item ul li a.related-actor-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    min-width: 0;
    padding: 6px 4px;
}

.girls-sidebar-item ul li .related-actor-image {
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
    margin-right: 0;
    object-fit: cover;
    object-position: center;
}

.girls-sidebar-item .related-actor-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 1 auto;
    min-width: 0;
    gap: 6px;
    line-height: 1.3;
}

.girls-sidebar-item .related-actor-name {
    display: block;
    overflow-wrap: anywhere;
}

.girls-sidebar-item .top-likes {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 16px;
    padding: 0;
    font-size: 0.8rem;
    line-height: 1rem;
    font-weight: 600;
}

.girls-sidebar-item .related-actor-stat {
    display: inline-flex;
    align-items: center;
}

.girls-sidebar-item .top-likes i {
    margin-right: 4px;
}

.girls-name {
    margin-top: 0;
}

.actor-bio-title {
    font-size: 1.5em;
    margin: 0 0 0.5rem;
    font-weight: 600;
}

.brand-logo .full-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo .full-logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.header .brand-logo .full-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    justify-content: flex-start;
}

.header .brand-logo .full-logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.header .brand-logo .logo2 {
    color: var(--text-color);
    font-weight: 700;
    line-height: 1;
}

.items .title .short-info {
    justify-content: center;
    gap: 18px;
}

.cat-card.cat-card-text::after {
    display: none;
}

.cat-card.cat-card-text a {
    min-height: 120px;
    background: var(--dark-bg-secondary);
}

.cat-card.cat-card-text .cat-card-title {
    position: static;
}

.cat-card:not(.cat-card-text) {
    height: 180px;
}

.cat-card:not(.cat-card-text) a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    overflow: hidden;
}

.menu > ul > li.menu-promo {
    margin-top: 12px;
}

.menu > ul > li.menu-promo > a {
    position: relative;
    border: 1px solid rgba(244, 110, 143, 0.7);
    border-radius: 6px;
    background: rgba(244, 110, 143, 0.14);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    color: var(--text-color);
}

.menu > ul > li.menu-promo > a::after {
    content: "18+";
    margin-left: auto;
    padding: 2px 6px;
    border-radius: 3px;
    background: #f46e8f;
    color: #ffffff;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
}

.menu > ul > li.menu-promo > a i {
    color: #f46e8f;
    opacity: 1;
}

.menu > ul > li.menu-promo:hover > a,
.menu > ul > li.menu-promo:focus-within > a {
    background: rgba(244, 110, 143, 0.24);
    color: var(--text-color);
}

.menu > ul > li.menu-promo-razdevator > a {
    border-color: rgba(255, 181, 71, 0.65);
    background: rgba(255, 181, 71, 0.12);
}

.menu > ul > li.menu-promo-razdevator > a::after {
    background: #ffb547;
    color: #141217;
}

.menu > ul > li.menu-promo-razdevator > a i {
    color: #ffb547;
}

.menu > ul > li.menu-promo-razdevator:hover > a,
.menu > ul > li.menu-promo-razdevator:focus-within > a {
    background: rgba(255, 181, 71, 0.2);
}

.menu > ul > li.menu-language > a {
    gap: 10px;
}

.menu > ul > li.menu-language img {
    width: 22px;
    height: 15px;
    flex: 0 0 auto;
    border-radius: 2px;
    object-fit: cover;
}

.menu > ul > li.menu-language span {
    min-width: 0;
}

.cat-card:not(.cat-card-text) img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
}

.cat-card:not(.cat-card-text)::after {
    z-index: 1;
}

.cat-card:not(.cat-card-text) .cat-card-title {
    z-index: 2;
}

.logo2 {
    font-family: 'Arial Rounded MT Bold', 'Arial', sans-serif;
    font-weight: bold;
    color: #F46E8F;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    display: inline-block;
    padding: 0 10px;
    transform: perspective(500px) rotateX(10deg);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}


.logo2:hover {
    animation: bounce 0.5s;
}

@keyframes bounce {
    0%, 100% {
        transform: perspective(500px) rotateX(10deg) translateY(0);
    }

    50% {
        transform: perspective(500px) rotateX(10deg) translateY(-10px);
    }
}


@media only screen and (max-width: 767px) {
    .header .brand-logo .logo2 {
        color: #F46E8F;
    }

    .logo2 {
        padding: 0 8px;
        transform: perspective(300px) rotateX(8deg);
    }

    @keyframes bounce {
        0%, 100% {
            transform: perspective(300px) rotateX(8deg) translateY(0);
        }

        50% {
            transform: perspective(300px) rotateX(8deg) translateY(-5px);
        }
    }
}
.gallery-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 28px auto;
    padding: 0 12px;
}

.gallery-anchor {
    display: block;
    scroll-margin-top: 72px;
}

.gallery-pagination__link,
.gallery-pagination__ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
    box-sizing: border-box;
    padding: 0 13px;
    border: 1px solid #d7dbe0;
    border-radius: 4px;
    background: #fff;
    color: #30343a;
    font-size: 14px;
    line-height: 1.2;
    text-decoration: none;
}

.gallery-pagination__link:hover {
    border-color: #8e98a8;
    color: #111827;
    text-decoration: none;
}

.gallery-pagination__link--current {
    border-color: #30343a;
    background: #30343a;
    color: #fff;
}

.gallery-pagination__ellipsis {
    min-width: 28px;
    padding: 0 4px;
    border-color: transparent;
    background: transparent;
    color: #7b8491;
}

@media (max-width: 600px), (max-device-width: 600px) {
    .gallery-pagination {
        gap: 6px;
        margin: 22px auto;
    }

    .gallery-pagination__link,
    .gallery-pagination__ellipsis {
        min-width: 38px;
        min-height: 38px;
        padding: 0 10px;
        font-size: 13px;
    }
}
