:root {
    scroll-behavior: auto;
    --main-color: #60a5fa;
    --main-color-hover: #3b82f6;
    --search-color: #60a5fa;
    --search-color-hover: #3b82f6;
    --text-color-white: #ffffff;

    /* Soft Pastel Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%);
    --gradient-secondary: linear-gradient(135deg, #a5b4fc 0%, #60a5fa 100%);
    --gradient-accent: linear-gradient(135deg, #60a5fa 0%, #c7d2fe 100%);
    --gradient-text: linear-gradient(45deg, #60a5fa, #93c5fd, #a5b4fc);
    --gradient-hover: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}
body {
    background: #151515;
}
.outline-none {
    outline: none !important;
}
a {
    color: var(--text-color-white);
    text-decoration: none;
    outline: none !important;
    font-weight: 500;
}
/* Soft Gradient Effects */
a:hover {
    color: #ffffff !important;
    background: var(--gradient-hover);
    background-clip: border-box;
    -webkit-background-clip: border-box;
    -webkit-text-fill-color: #ffffff;
    transition: all 0.3s ease;
}

.bwp-post-content:hover {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.08) 0%, rgba(147, 197, 253, 0.05) 100%);
    border-color: rgba(96, 165, 250, 0.2);
    transform: translateY(-1px);
    transition: all 0.3s ease;
}

.bwp-single-post-taxonomies a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.3);
    transition: all 0.3s ease;
}

.bwp-scroll-top-button:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(96, 165, 250, 0.4);
    transition: all 0.3s ease;
}
p {
    margin: 0 0 20px;
    line-height: 25px;
}
strong,
b {
    font-weight: 700;
}
footer {
    background: #000;
}
.text-gradient:hover,
.breadcrumb-item a:hover,
footer a:hover {
    color: var(--main-color) !important;
    box-shadow: inset 0 -1px 0 0 var(--main-color);
    background: transparent;
    -webkit-text-fill-color: var(--main-color);
}
form {
    margin: 0;
    padding: 0;
    outline: none;
}
input[type="text"]:not(.bwp-search-field),
input[type="search"] {
    margin: 0;
    padding: 0 15px;
    max-width: 100%;
    width: 100%;
    height: 44px;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.2px;
    color: #ffffff;
    background: rgba(96, 165, 250, 0.06);
    border: 1px solid rgba(96, 165, 250, 0.15);
    border-bottom-color: rgba(96, 165, 250, 0.25);
    border-radius: 6px;
    outline: none !important;
}
input[type="text"]:not(.bwp-search-field):hover,
input[type="text"]:not(.bwp-search-field):focus {
    border-color: var(--main-color);
}
input::placeholder {
    font-weight: 400;
    color: var(--text-color-white);
    opacity: 1;
}
.bwp-section-separator {
    height: 1px;
    background: rgba(96, 165, 250, 0.12);
}
.bwp-section-separator::after {
    content: '';
    display: block;
    position: absolute;
    top: -4px;
    left: 50%;
    width: 10px;
    height: 10px;
    margin-left: -5px;
    border-radius: 5px;
    background-color: rgba(96, 165, 250, 0.06);
}
.bwp-site-header:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #212121 0, rgba(17, 17, 17, 0) 100%);
    width: 100%;
    height: 100%;
}
.custom-logo-link img {
    max-width: 100%;
    height: auto;
}
.bwp-logo-image-container .custom-logo-link:hover img,
.bwp-logo-image-container .custom-logo-link:focus img {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}
.bwp-main-nav-container {
    height: 70px;
    text-align: center;
}
.bwp-main-nav-container .bwp-central-block {
    display: inline-block;
}
.bwp-main-nav-logo {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    text-align: left;
}
.sf-menu ul {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    z-index: 900;
}
.sf-menu li {
    flex-grow: 1;
}
.sf-menu li:hover > ul,
.sf-menu .sfHover > ul {
    display: block;
}
.sf-menu ul ul {
    top: 0;
    left: 100%;
}
.border-radius-top {
    border-radius: 8px 8px 0 0;
}
.bwp-post-media {
    background-color: rgba(96, 165, 250, 0.04);
    box-shadow: 0 15px 15px -15px rgba(15,14,21,0.2);
}
.bwp-post-media img {
    aspect-ratio: 16 / 9;
}
.bwp-post-media:hover img {
    -webkit-transform: scale(1.06);
    transform: scale(1.06);
}
.bwp-post-media-overlay {
    z-index: 10;
    background-color: #161618;
}
.bwp-post-media:hover .bwp-post-media-overlay {
    opacity: 0.13 !important;
}
.bwp-post-media a:focus .bwp-post-media-overlay {
    opacity: 0.06 !important;
}
.bwp-post-content {
    background: #151515;
    box-shadow: 0 5px 10px 0 rgb(64 59 59 / 30%);
    border-radius: 0 0 8px 8px;
    display: flex;
    gap: 8px;
    align-items: center;
}
.bwp-post-content .have-image img {
    max-width: 45px;
    border-radius: 50%;
}
.bwp-post-metadata li a,
.bwp-post-metadata li span {
    color: #e5e7eb;
}
.bwp-post-metadata li a:hover,
.bwp-post-metadata li a:focus {
    color: var(--main-color) !important;
    box-shadow: inset 0 -1px 0 0 var(--main-color);
    background: transparent;
    -webkit-text-fill-color: var(--main-color);
}
.bwp-post-metadata.bwp-hidden,
.bwp-post-metadata li.bwp-hidden {
    display: none;
}

.bwp-post-title a:hover,
.bwp-post-title a:focus {
    color: var(--main-color) !important;
    box-shadow: inset 0 -1px 0 0 var(--main-color);
    background: transparent;
    -webkit-text-fill-color: var(--main-color);
}

.bwp-content a,
.bwp-content a:hover,
.bwp-content a:focus {
    text-decoration: none;
    box-shadow: inset 0 -1px 0 0 currentColor;
}
.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.pagination .page-link {
    display: inline-block;
    padding: 0;
    margin: 0 8px 8px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 14px;
    font-weight: 500;
    border: 0;
    color: var(--text-color-white);
    background-color: var(--main-color);
    border-radius: 50% !important;
    text-align: center;
}
.pagination .page-item.active .page-link {
    background-color: var(--main-color-hover);
}
.pagination a.page-link:hover,
.pagination a.page-link:focus {
    background-color: var(--main-color-hover);
    text-decoration: none;
    box-shadow: none;
}
.bwp-single-post-media-container .bwp-post-media img {
    height: 100%;
}
.bwp-content p {
    margin: 20px 0;
}
.bwp-single-post-taxonomies a {
    background: rgba(96, 165, 250, 0.06);
}
.bwp-single-post-taxonomies a:hover,
.bwp-single-post-taxonomies a:focus {
    box-shadow: inset 0 -1px 0 0 var(--main-color);
}
.bwp-content ul{
    list-style-type: disc;
}
.bwp-content ul,
.bwp-content ol {
    margin: 20px 0;
    padding: 0 0 0 40px;
}
.bwp-content ul ol,
.bwp-content ul ul,
.bwp-content ol ul,
.bwp-content ol ol {
    margin: 4px 0;
    padding: 0 0 0 29px;
}
.bwp-content img {
    border-radius: 6px;
    box-shadow: 0 15px 15px -15px rgba(15,14,21,0.2);
}
.bwp-dropdown-search-container.bwp-visible {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.bwp-dropdown-search-container .bwp-searchform {
    max-width: 640px;
}
.bwp-searchform .bwp-search-field {
    border: none;
    outline: none;
    border-radius: 0;
    box-shadow: none !important;
}
.bwp-dropdown-search-container .bwp-searchform .bwp-search-field {
    height: 48px;
    padding: 0 70px 0 16px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color-white);
    background: var(--search-color);
    border-radius: 40px !important;
    margin-left: 0 !important;
}
.bwp-dropdown-search-container .bwp-searchform .bwp-search-field::placeholder {
    font-weight: 500;
    color: var(--text-color-white);
}
.bwp-dropdown-search-container .bwp-searchform .bwp-search-field:hover,
.bwp-dropdown-search-container .bwp-searchform .bwp-search-field:focus {
    background: var(--search-color-hover);
}
.bwp-dropdown-search-container .bwp-searchform .bwp-search-submit {
    line-height: 44px;
    color: var(--text-color-white);
    border-radius: 20px !important;
    width: 40px;
    height: 40px;
    background: var(--main-color);
    right: 0px;
    top: 4px;
    z-index: 9;
}
.bwp-dropdown-search-container .bwp-searchform .bwp-search-submit:hover,
.bwp-dropdown-search-container .bwp-searchform .bwp-search-submit:focus,
.search-mobile .search-icon:hover {
    background: var(--main-color-hover);
}
.search-mobile .search-icon {
    display: none;
}
.search-mobile .search-icon svg {
    transform: translateY(-1px);
}
.search-mobile.active .search-icon .open-search,
.search-mobile .search-icon .close-search {
    display: none;
}
.search-mobile.active .search-icon .close-search {
    display: block;
}
.bwp-scroll-top-wrapper {
    position: fixed;
    right: 50px;
    bottom: 25px;
    z-index: 900;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}
.bwp-scroll-top-wrapper.bwp-visible {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    bottom: 40px;
}
.bwp-scroll-top-button {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(96, 165, 250, 0.05);
    box-shadow: 0 6px 15px -2px rgba(0, 0, 0, 0.45);
    border: none;
}
.bwp-scroll-top-button:hover {
    color: var(--text-color-white);
    background: var(--main-color);
}
.bwp-post-video-length {
    bottom: 4px;
    right: 4px;
    background: rgba(0, 0, 0, 0.7);
    font-size: 12px;
    padding: 3px 7px;
    font-weight: 500;
    z-index: 999;
}
.bwp-post-video-length i {
    font-size: 9px;
    transform: translateY(-0.8px);
    margin-right: 2px;
    color: var(--main-color);
}
.bwp-post-media.single-video-post:hover > img {
    transform: scale(1.03);
    -webkit-transform: scale(1.03);
}
.single-video-post .bwp-post-video-length {
    bottom: 10px;
    right: 10px;
    padding: 5px 10px;
}
.single-video-post a.play {
    margin: 0;
    position: absolute;
    top: 45%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 100;
    font-size: 24px;
}
.single-video-post a.play .single-video-play-button {
    background-color: var(--main-color);
    opacity: 0.75;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTExLjcgNy41bDEyLjcgOC4xYy40LjMuNC45IDAgMS4ybC0xMi43IDguMWMtLjUuMy0xLjEgMC0xLjEtLjZWOC4xYy4xLS41LjctLjkgMS4xLS42eiIvPjwvc3ZnPg==);
    width: 100px;
    height: 100px;
    background-repeat: no-repeat;
    background-position: 17px;
    background-size: 70px;
    border: none;
    border-radius: 50%;
    padding: 0;
    color: inherit;
    text-align: inherit;
    font-size: 100%;
    font-family: inherit;
    line-height: inherit;
    outline: 0;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 3;
    cursor: pointer;
    box-shadow: none;
}
.single-video-post a .single-video-play-button:hover {
    transform: scale(1.02);
    opacity: 0.9;
}
.bwp-post-video-watch-full-button {
    top: calc(50% + 15px);
    transform: translateX(-50%);
    z-index: 100;
}
.bwp-post-video-watch-full-button div {
    height: 48px;
    line-height: 48px;
    background: var(--main-color);
    font-size: 18px;
    cursor: pointer;
}

.bwp-post-video-watch-full-button div:hover {
    background: var(--main-color-hover);
}

.relate-post .bwp-post-title{
    height: auto;
    line-height: normal;
}
.relate-post .bwp-post-wrapper{
    background-color: #1c1c1c;
    cursor: pointer;
    border-radius: 10px;
}
.relate-post .bwp-post-wrapper:hover{
    background-color: rgba(96, 165, 250, 0.06);
    cursor: pointer;
}
.bwp-latest-posts-section .container .bwp-latest-posts-container .bwp-posts {
    position: relative;
}
.join-vrporn-btn a {
    background: linear-gradient(90deg, #60a5fa 0%, #93c5fd 100%);
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    font-style: italic;
    text-align: center;
    font-weight: 700;
    z-index: 1;
}
.join-vrporn-btn a:hover {
    color: white !important;
    background: var(--main-color-hover);
}

article:hover .bwp-post-content {
    background: rgba(59, 130, 246, 0.05);
}
.top_categories_content {
    margin: 0 auto;
    max-width: 1320px;
}
.video-preview-player {
    transition: opacity 1s;
    z-index: 99;
}
.video-preview-player.show {
    opacity: 1 !important;
}
.vhp-term .logo_char {
    display: flex;
    width: 100%;
    min-height: 240px;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    font-weight: bold;
    background: rgba(255, 255, 255, .08);
}
.vhp-term:hover {
    color: var(--text-color-white);
}
.vhp-term .vhp-term-info {
    position: absolute;
    z-index: 99;
    bottom: 0;
    width: 100%;
    text-align: center;
    height: 50%;
    background-image: linear-gradient(transparent, #171719);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: end;
}
.vhp-term:focus {
    color: var(--text-color-white);
}
.vhp-term:hover .vhp-term-info {
    opacity: 0;
}
.vhp-term:hover .vhp-termr-info .vhp-term-name {
    transform: scale(1.1);
}
.vhp-term .vhp-term-info .vhp-term-videos {
    margin-top: 5px;
}
.bwp-post-media-categories{
    background-color: #161618;
    box-shadow: 0 15px 15px -15px rgba(0, 0, 0, 0.5);
    position: relative;
}
.bwp-single-post-pornstars a,
.bwp-single-post-studio a {
    display: inline-block;
    box-shadow: none;
    padding: 8px 20px;
    font-weight: 500;
    position: relative;
    border-radius: 8px;
    font-size: 16px;
}
.bwp-single-post-pornstars a {
    padding: 0 20px 0 0;
    margin-right: 15px;
    margin-bottom: 15px;
}
.bwp-single-post-pornstars a:first-child {
    margin-left: 0;
}
.bwp-single-post-pornstars a:before,
.bwp-single-post-studio a:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--text-color-white);
    opacity: 0.12;
    border-radius: 8px;
}
.bwp-single-post-pornstars a:before {
    opacity: 0;
}
.bwp-single-post-pornstars a:hover,
.bwp-single-post-studio a:hover {
    color: var(--text-color-white);
    box-shadow: none;
}
.bwp-single-post-pornstars a:hover,
.bwp-single-post-studio a:focus {
    color: var(--text-color-white);
}
.bwp-single-post-pornstars a:hover:before,
.bwp-single-post-studio a:hover:before {
    opacity: 0.15;
}
.bwp-single-post-pornstars a img,
.bwp-single-post-studio a img {
    max-width: 64px;
    margin-right: 10px;
    border-radius: 50%;
}
.bwp-single-post-pornstars a img {
    max-width: 80px;
    height: 80px;
    margin-right: 12px;
    object-fit: cover;
}
.bwp-single-post-pornstars a:hover img {
    border-radius: 8px 0  0 8px;
}
.bwp-single-post-pornstars .no-image,
.bwp-single-post-studio .no-image {
    height: 80px;
    line-height: 80px;
}
.bwp-single-post-studio .no-image {
    padding: 0 20px 0 0;
}
.bwp-single-post-pornstars .no-image .logo_char,
.bwp-single-post-studio .no-image .logo_char {
    width: 80px;
    display: inline-block;
    text-align: center;
    border-radius: 8px 0 0 8px;
}
.bwp-single-post-pornstars .no-image:before {
    opacity: 0.12;
}
.post-title-box {
    width: calc(100% - 194px);
}
.related-term .rp-box-1 {
    flex: 0 1 50%;
}
.related-term .rp-box-1 a:hover img {
    transform: scale(1.1);
}
.related-term .rp-box-2 {
    flex: 0 1 50%;
}
.related-term .rp-box-2 .term-name {
    color: var(--bs-gray-500);
}
.related-term .rp-box-2 a:hover{
    box-shadow: inset 0 -1px 0 0 var(--main-color) !important;
    -webkit-text-fill-color: var(--main-color) !important;
    color: var(--main-color) !important;
    background: transparent !important;
    text-decoration: none !important;
}
.related-terms .related-term .rp-image img {
    object-position: top;
}
.bwp-site-header svg {
    cursor: pointer;
    width: 16px;
    height: 16px;
}
.bwp-site-header > img {
    position: absolute;
    z-index: 0;
    width: 100%;
    opacity: 0.3
}
svg.show-left-menu {
    transform: translateY(-2px);
    width: 30px;
    height: 30px;
    margin-right: 8px;
}
svg.show-left-menu:hover {
    fill: var(--main-color);
}
.left-menu {
    background-color: #1c1c1c;
    height: 100vh;
    top: 0;
    width: 240px;
    z-index: 9999;
    left: -240px;
    overflow-y: auto;
}
.left-menu .close-left-menu {
    width: 36px;
    height: 36px;
    top: 5px;
    right: 12px;
    cursor: pointer;
    padding: 5px;
    display: none;
}
.left-menu .close-left-menu:hover {
    background: rgba(255, 255, 255, 0.15);
}
.left-menu .sf-menu a {
    padding: 0 10px;
    border-bottom: 1px solid #2f2f2f;
}
.left-menu .sf-menu > li {
    margin: 0 10px;
}
.left-menu .sf-menu > li:first-child {
    margin-left: 10px;
}
.left-menu .sf-menu > li > a {
    font-size: 14px;
    gap: 8px;
}
.left-menu .sf-menu > li > a > img {
    width: 24px;
    height: 24px;
}
.left-menu-gradient {
    background-color: rgba(0, 0, 0, .4);
    height: 100vh;
    left: 0;
    top: 0;
    width: 100vw;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
}
.active .left-menu {
    left: 0;
}
.hide-border {
    border: none !important;
 }
.left-menu-two {
    border-bottom: 1px solid #2f2f2f;
}
.bwp-search-field::placeholder {
    color: var(--text-color-white) !important;
}
.see-all-terms {
    background: var(--main-color);
    height: 50px;
    line-height: 50px;
    border-radius: 25px;
}
.header-box {
    margin-top: 85px;
}
.header-box > div {
    max-width: 1000px;
}
.header-box h1,
.header-box p {
    text-transform: capitalize;
}
.scrollbar::-webkit-scrollbar {
    width: 2px;
    background-color: #1c1c1c;
}
body.scrollbar::-webkit-scrollbar {
    width: 3px;
}
.scrollbar::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
}
.scrollbar::-webkit-scrollbar-track {
    background-color: #1c1c1c;
}
.breadcrumb-item+.breadcrumb-item::before {
    color: var(--text-color-white) !important;
}
.icon-circle {
    display: inline-block;
    width: 9px;
    height: 9px;
    transform: translateY(1px);
    margin-right: 4px;
    background: var(--main-color);
    border-radius: 50%;
}
.see-new-video {
    background: var(--main-color);
    height: 50px;
    line-height: 50px;
    border-radius: 30px;
    text-align: center;
    z-index: 1;
    color: var(--text-color-white) !important;
    padding: 0 25px;
}
.top_categories_content {
    margin-bottom: 35px;
}
.age-verification-popup {
    display:none;
}
#av-popup {
    vertical-align: middle;
}
.age-desc {
    text-align: justify;
}
.age-button button {
    height: 50px;
    min-width: 150px;
    border-radius: 25px;
    border: 0;
    z-index: 1;
}
.age-button .age-confirm {
    background-color: var(--main-color);
}
.age-button .age-cancel {
    background-color: #111111;
    border: 1px solid var(--main-color);
}
.age-button .age-confirm:hover{
    background-color: var(--main-color-hover);
}
.age-button .age-cancel:hover {
    background-color: var(--main-color-hover);
    border-color: var(--main-color-hover);
}
.age-verification {
    max-width: 1000px;
    background: linear-gradient(180deg, rgba(0, 0, 0, .7) 0, rgba(0, 0, 0, .3) 100%);
    box-shadow: 0 0 40px var(--main-color), inset 1px 3px 10px rgba(0, 0, 0, .25);
    max-height: 475px;
    z-index: 1;
}
.age-header h1 {
    margin-top: 0;
}
.age-desc {
    line-height: 22px;
}
#av-popup > button.fancybox-button {
    display: none;
}
.svg-article {
    width: 12px;
    height:12px;
    transform: translateY(1px);
}
.lazy-header {
    overflow: hidden;
   /* background-image: url('https://cdn.vrentertaiment.com/vrentertaiment/banner.webp');*/

}
.normal-page{

    transition: background-color 0.5s ease-in-out;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

/* Pornstar Profile Styles */
.pornstar-profile-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    display: flex;
    gap: 24px;
}

.pornstar-image-container {
    max-width: 300px;
}

.pornstar-image-container img {
    object-position: top;
}

.pornstar-info-content {
    width: calc(100% - 400px);
}

.video-number {
    color: #60a5fa;
}

.video-label {
    color: #cccccc;
}

.toggle-single-btn {
    display: none;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.about-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.about-label {
    color: #e0e0e0;
}

.studio-tag {
    background: rgba(255, 255, 255, 0.08);
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.studio-tag:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}



.banner-header{
    position: absolute;
    z-index: -1;
    width: 100%;
    height: auto;
    transition: background-color 0.5s ease-in-out;
    backdrop-filter: blur(5px);
    opacity: 0.7;
}
.banner-header video{
    width: 100%;
    max-height: 100%;
}
.bwp-footer-widgets-section {
    max-width: 98%;
    margin: 0 auto;
}
.bwp-single-post-box {
    background: #1c1c1c;
    border-radius: 4px;
    padding: 16px;
}
.bottom-menu {
    z-index: 999;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #1c1c1c;
    filter: drop-shadow(0 -3px 7px #00000080);
    padding: 6px 0;
    display: none;
}
.bottom-menu .bwp-bottom-menu {
    display: flex;
    justify-content: center;
    gap: 4px;
}
.bottom-menu .bwp-bottom-menu li {
    flex: 0 1 20%;
}
.bottom-menu .bwp-bottom-menu li > a {
    flex-direction: column;
    border-radius: 4px;
}
.bottom-menu .bwp-bottom-menu li > a:hover {
    background: rgba(255, 255, 255, .1);
}
.bottom-menu .bwp-bottom-menu li a img {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
}
body.active {

}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 1.2rem;
    color: #60a5fa;
}

.star.full {
    color: #60a5fa;
}

.star.half {
    color: #60a5fa;
    position: relative;
}

.star.half::before {
    content: '★';
    position: absolute;
    left: 0;
    width: 50%;
    overflow: hidden;
    color: #60a5fa;
}

.star.empty {
    color: #ccc;
}

.single-post-download {
    background: var(--main-color);
    border-radius: 5px;
    width: 170px;
    height: 42px;
    line-height: 42px;
    position: absolute;
    right: 0;
}

.single-post-download:focus,
.single-post-download:hover {
    background: var(--main-color-hover);
    color: #fff;
}

@media (max-width: 1440px) {
    .bwp-dropdown-search-container .bwp-searchform {
        max-width: 480px;
    }
}
@media (max-width: 1249px) {
    .bwp-scroll-top-wrapper.bwp-visible {
        bottom: 20px;
        right: 20px;
    }
}
@media (max-width: 1200px) {
    .bwp-site-header .sf-menu li > a {
        font-size: 14px;
    }

    .header-box > div h1 {
        font-size: 1.25rem !important;
    }

    .header-box > div p {
        font-size: 14px;
    }
}

@media only screen and (min-width: 993px) and (max-width: 1199px) {
    body.active .search-mobile .bwp-dropdown-search-container {
        padding-left: 200px;
    }
}

@media (max-width: 1199px) {
    .bwp-dropdown-search-container.bwp-visible {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    .bwp-dropdown-search-container::after {
        display: none;
    }
    .active .left-menu-gradient {
        opacity: 1;
        visibility: visible;
    }
    .left-menu .bwp-left-menu {
        margin-top: 45px;
    }
    .left-menu .close-left-menu {
        display: block;
    }
}
@media (max-width: 992px) {
    .bwp-secondary-nav {
        display: none;
    }
    .bwp-dropdown-search-container::before {
        right: 15px;
    }
    .bwp-post-media:hover img,
    .bwp-post-slider-item:hover img {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
    .bwp-logo-image-container .custom-logo-link:hover img,
    .bwp-logo-image-container .custom-logo-link:focus img {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    .bwp-related-posts .post {
        width: 50%;
    }
    #categories-page {
        padding-top: 1.5rem !important;
    }
    .bwp-site-header .row > .col-12 > .row > .col-3 {
        width: 100%;
    }
    .age-desc {
        font-size: 14px !important;
    }
    .bwp-site-header .col-md-12 > .bwp-dropdown-search-container {
        display: none !important;
    }
    .search-mobile .search-icon {
        position: absolute;
        right: 12px;
        top: 4px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--main-color);
        border-radius: 20px;
        overflow: hidden;
        cursor: pointer;
        z-index: 997;
    }
    .bwp-dropdown-search-container .bwp-searchform {
        display: none;
    }
    .search-mobile.active .bwp-searchform {
        display: block !important;
        max-width: calc(100% - 52px);
        z-index: 99999;
        position: absolute;
        left: 0;
        top: 0;
    }
}
@media (max-width: 768px) {
    .single-video-post a.play {
        transform: scale(0.9) translate(-50%, -50%);
    }
    .bwp-post-video-watch-full-button {
        top: calc(50% + 20px);
        min-width: 310px;
    }
    .bwp-post-video-watch-full-button div {
        font-size: 16px;
    }
    .age-button {
        position: sticky;
        bottom: 0;
        padding: 16px 0;
        background: #111;
        border-radius: 0 0 20px 20px;
        box-shadow: 0 0 20px rgb(233 233 233 / 25%), inset 1px 3px 10px rgba(0, 0, 0, .25);
        margin-bottom: 0 !important;
    }
}
@media (max-width: 587px) {
    .single-video-post a.play {
        transform: scale(0.8) translate(-60%, -50%);
    }
    .bwp-post-video-watch-full-button {
        min-width: 250px;
    }
    .bwp-post-video-watch-full-button div {
        font-size: 14px;
        padding: 0 12px;
    }
    .bwp-single-post-content > div {
        flex-wrap: wrap;
    }
    .bwp-single-post-content > div .post-title-box {
        width: 100%;
    }
    .hide-on-mobile {
        display: none;
    }
    .bwp-footer-widgets-section {
        max-width: 90%;
    }
    .bwp-scroll-top-wrapper.bwp-visible {
        bottom: 85px;
        right: 15px;
    }
    .bottom-menu {
        display: block;
    }
    #bwp-scroll-top.change-position {
        bottom: 20px;
        right: 15px;
    }
}
@media (max-width: 575px) {
    .bwp-related-posts .bwp-section-separator {
        max-width: 100%;
    }
}
@media (max-width: 499px) {
    .bwp-section-separator::after {
        display: none;
    }
    .bwp-singular .bwp-section-separator {
        max-width: 100%;
    }
    .bwp-content ul {
        padding-left: 18px;
    }
    .bwp-content ol {
        padding-left: 25px;
    }
}
@media (max-width: 480px) {
    .bwp-post-video-watch-full-button {
        display: none;
    }
    .single-video-post a.play {
        top: 50%;
    }
    .top-page-header h2 {
        font-size: 20px;
    }
}

/* Menu Enhancements */
.nav-link {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-size: 14px;
    letter-spacing: 0.5px;
    min-width: 120px;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 99, 120, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.15), rgba(147, 197, 253, 0.15)) !important;
    color: #ffffff !important;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.3), 0 0 20px rgba(96, 165, 250, 0.1);
    border-color: rgba(96, 165, 250, 0.3);
}

.nav-link.active {
    background: linear-gradient(135deg, var(--main-color), var(--main-color-hover)) !important;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(255, 99, 120, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: var(--main-color);
    transform: translateY(-1px);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: #fff;
    border-radius: 1px;
}

.icon-glow {
    filter: drop-shadow(0 0 3px rgba(255, 99, 120, 0.3));
    transition: all 0.3s ease;
}

.nav-link:hover .icon-glow {
    filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.6));
    transform: scale(1.1);
}

.menu-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.nav-link:hover .menu-glow {
    opacity: 1;
}

.menu-text {
    position: relative;
    z-index: 2;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Filter Enhancements */
.bg-gradient {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1) 0%, rgba(147, 197, 253, 0.1) 100%);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--main-color) 0%, var(--main-color-hover) 100%);
}

.filter-select {
    background-color: rgba(96, 165, 250, 0.1);
    border: 1px solid #444;
    color: #fff;
    transition: all 0.3s ease;
}

.filter-select:focus {
    background-color: #333;
    border-color: var(--main-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 99, 120, 0.25);
}

.form-floating > label {
    color: #ccc;
}

.form-floating > .form-select ~ label,
.form-floating > .form-control ~ label {
    color: #ccc;
}

.form-floating > .form-select:focus ~ label,
.form-floating > .form-control:focus ~ label {
    color: var(--main-color);
}

.filter-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.filter-wrapper:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.filter-select {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-select:focus {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--main-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 99, 120, 0.25);
    color: #fff;
}

.filter-select option {
    background-color: rgba(96, 165, 250, 0.1);
    color: #fff;
}

/* Enhanced Header Styles */
.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.top-nav-bar {
    position: relative;
    z-index: 10;
    padding: 1rem 0;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo-glow {
    position: relative;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.logo-glow:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(255, 99, 120, 0.5));
    background: transparent;
}

.logo-image {
    transition: all 0.4s ease;
    filter: brightness(1.1) contrast(1.1);
}

.logo-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s ease;
}

.logo-glow:hover .logo-shine {
    left: 100%;
}

.menu-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.search-glow {
    transition: all 0.3s ease;
    border-radius: 50%;
    background: rgba(255, 99, 120, 0.1);
    border: 2px solid rgba(255, 99, 120, 0.3);
}

.search-glow:hover {
    background: rgba(255, 99, 120, 0.2);
    border-color: rgba(255, 99, 120, 0.6);
    box-shadow: 0 0 20px rgba(255, 99, 120, 0.4);
    transform: scale(1.1);
}

.search-enhanced {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.search-enhanced:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: var(--main-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 99, 120, 0.25), inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.search-submit-enhanced {
    background: linear-gradient(135deg, var(--main-color), var(--main-color-hover)) !important;
    border-radius: 50% !important;
    width: 44px !important;
    height: 44px !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 99, 120, 0.3);
}

.search-submit-enhanced:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 99, 120, 0.5);
}

.mobile-menu-container {
    position: relative;
    z-index: 10;
    margin-bottom: 1rem;
}

.header-content-enhanced {
    position: relative;
    z-index: 5;
    padding: 3rem 0;
    backdrop-filter: blur(15px);
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    margin-top: 2rem;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.title-glow {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.05) 0%, rgba(147, 197, 253, 0.05) 50%, rgba(96, 165, 250, 0.05) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.description-enhanced {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary, .btn-cta-secondary {
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--main-color), var(--main-color-hover));
    color: white;
    box-shadow: 0 6px 20px rgba(255, 99, 120, 0.4);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.6);
    color: white !important;
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
    color: white !important;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 99, 120, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 70%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.6; }
}

/* Menu Display Control */
.desktop-menu {
    display: none !important;
}

.mobile-menu-container {
    display: block !important;
}

/* Enhanced Header Responsive Design */
@media (min-width: 768px) {
    .desktop-menu {
        display: flex !important;
    }

    .mobile-menu-container {
        display: none !important;
    }
}

@media (max-width: 1200px) {
    .top-nav-bar {
        margin-bottom: 1.5rem;
        padding: 0.75rem;
    }

    .logo-image {
        width: 180px;
        height: 50px;
    }
}

@media (max-width: 992px) {
    .top-nav-bar {
        padding: 0.5rem;
        margin-bottom: 1rem;
    }

    .menu-container {
        display: none;
    }

    .mobile-menu-container {
        display: block;
    }

    .header-content-enhanced {
        padding: 2rem 1rem;
        margin-top: 1rem;
    }

    .content-wrapper {
        padding: 0 1rem;
    }

    .title-glow {
        font-size: 1.75rem;
    }

    .description-enhanced {
        font-size: 1rem;
    }

    .cta-buttons {
        gap: 0.5rem;
    }

    .btn-cta-primary, .btn-cta-secondary {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .top-nav-bar {
        border-radius: 12px;
        padding: 0.5rem;
    }

    .logo-container {
        justify-content: center;
    }

    .search-container {
        justify-content: center;
        margin-top: 0.5rem;
    }

    .header-content-enhanced {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }

    .content-wrapper {
        padding: 0 0.5rem;
    }

    .title-glow {
        font-size: 1.5rem;
    }

    .description-enhanced {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary, .btn-cta-secondary {
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .top-nav-bar {
        padding: 0.25rem;
        margin-bottom: 0.5rem;
    }

    .logo-image {
        width: 150px;
        height: 42px;
    }

    .header-content-enhanced {
        padding: 1rem 0.5rem;
        margin-top: 0.5rem;
        border-radius: 12px;
    }

    .content-wrapper {
        padding: 0 0.25rem;
    }

    .title-glow {
        font-size: 1.25rem;
        line-height: 1.2;
    }

    .description-enhanced {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }

    .btn-cta-primary, .btn-cta-secondary {
        width: 180px;
        padding: 8px 16px;
        font-size: 12px;
    }

    .floating-circle {
        display: none;
    }
}

/* Enhanced Menu Responsive Design */
@media (max-width: 992px) {
    .sf-menu {
        gap: 1 !important;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        min-width: 100px;
        padding: 8px 12px;
        font-size: 12px;
    }

    .nav-link:hover {
        transform: translateY(-1px) scale(1.01);
    }
}

@media (max-width: 768px) {
    .sf-menu {
        gap: 0.5rem !important;
        padding: 0.5rem;
    }

    .nav-link {
        min-width: 80px;
        padding: 6px 10px;
        font-size: 11px;
        border-radius: 6px !important;
    }

    .nav-link svg {
        width: 16px;
        height: 16px;
    }

    .menu-text {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .sf-menu {
        flex-direction: column;
        gap: 0.25rem !important;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(15px);
        border-radius: 12px;
        padding: 1rem 0.5rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        min-width: unset;
        width: 100%;
        justify-content: flex-start;
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 8px !important;
        margin-bottom: 2px;
    }

    .nav-link:hover {
        transform: translateX(4px) scale(1.02);
    }

    .nav-link.active {
        background: linear-gradient(135deg, var(--main-color), var(--main-color-hover)) !important;
        box-shadow: 0 4px 15px rgba(96, 165, 250, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

/* Bootstrap Override Classes */
.btn-outline-primary {
    border-color: #60a5fa !important;
    color: #60a5fa !important;
    background: rgba(96, 165, 250, 0.05) !important;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: linear-gradient(45deg, #60a5fa, #93c5fd) !important;
    border-color: transparent !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.25);
}

.bg-info {
    background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%) !important;
    color: white !important;
}

.bg-secondary {
    background: rgba(96, 165, 250, 0.1) !important;
    color: white !important;
}

.badge {
    background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%) !important;
    color: white !important;
}

/* Modern Pornstar Card Design */
.modern-pornstar-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(96, 165, 250, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.modern-pornstar-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(96, 165, 250, 0.3), 0 0 20px rgba(96, 165, 250, 0.1);
    border-color: rgba(96, 165, 250, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.image-container {
    aspect-ratio: 3/4;
    overflow: hidden;
    min-height: 200px;
}

.pornstar-image {
    object-position: top;
    transition: transform 0.4s ease;
}

.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(96, 165, 250, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.modern-pornstar-card:hover .hover-overlay {
    opacity: 1;
}

.hover-content {
    text-align: center;
    color: white;
}

.hover-content i {
    color: white;
    font-size: 24px;
}

.card-info {
    padding: 8px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(96, 165, 250, 0.2);
    position: absolute;
    bottom: 0;
    width: 100%;
}

.pornstar-name {
    font-size: 16px;
    font-weight: 600;
    color: white;
    text-align: center;
    letter-spacing: 0.3px;
}

/* Responsive Design for Modern Cards */
@media (max-width: 768px) {
    .image-container {
        aspect-ratio: 4/5;
        min-height: 180px;
    }
    
    .card-info {
        padding: 12px;
    }
    
    .pornstar-name {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .image-container {
        aspect-ratio: 1/1;
        min-height: 160px;
    }
    
    .hover-content i {
        font-size: 1.5rem !important;
    }
    
    .hover-text {
        font-size: 12px;
    }
}

