.model-like {
    transition: 0.3s;
}
.model-like:hover, .model-like.liked {
    color: #27ff35;
    scale: 1.1;
}
.filmstrip-wrapper {
    position: absolute;
    z-index: 1;
    width: 100%;
    opacity: 0.5;
}
.tooltip {
    z-index: 1000000;
}
.breadcrumbs {
    overflow-x: auto;
}
.sorting-container {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.sorting-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #4b5563;
}

.sorting-select-wrapper {
    position: relative;
}
.sorting-select {
    background-color: white;
    border: 1px solid #d1d5db;
    color: #4b5563;
    border-radius: 0.5rem;
    padding: 0.25rem 2rem 0.25rem 0.75rem;
    font-size: 0.875rem;
    appearance: none;
    outline: none;
}

.sorting-select:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.2);
}

.sorting-select-icon {
    pointer-events: none;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
}

.sorting-select-icon svg {
    width: 1rem;
    height: 1rem;
    color: #4b5563;
}

.premium-overlay {
    background: linear-gradient(80deg, rgb(255 149 0) 0, rgb(255 98 0 / 50%) 100%);
    position: absolute;
    z-index: 30;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    opacity: 0;
    text-shadow: 0 0 5px #000;
    border-radius: 7px;
}

.group:hover .premium-overlay {
    opacity: 1;
}

.premium-icon {
    width: 100px;
    height: 100px;
    color: white;
}

.premium-text {
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
}

/* Premium Modal Styles */
.premium-modal {
    max-width: 1000px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 10px 5px #fff;
    border: 2px solid #f7bc77;
    max-height: 100%;
    overflow-y: auto;
}

.premium-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    font-size: 24px;
    font-weight: bold;
    transition: all 0.2s ease;
}

.premium-modal-close:hover {
    background-color: rgba(0, 0, 0, 0.6);
    transform: scale(1.1);
}

.premium-modal-content {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .premium-modal-content {
        flex-direction: row;
    }
}

.premium-modal-left {
    background: linear-gradient(120deg, #ff9865, #ff2f2f);
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .premium-modal-left {
        width: 50%;
    }
}

.premium-modal-preview {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    background-color: black;
    margin-bottom: 20px;
    min-width: 250px;
    max-height: 300px;
}
.premium-modal-preview .model-card-item {
    aspect-ratio: 300 / 420;
    max-height: 100%;
}
.premium-modal-preview .model-card-item img {
    aspect-ratio: auto;
}
.premium-modal-preview .set-info {
    display: none;
}

.premium-modal-message {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    margin-top: 20px;
    max-width: 400px;
    opacity: 0.7;
}

.premium-modal-right {
    padding: 30px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    .premium-modal-right {
        width: 50%;
    }
}
.premium-modal-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
    opacity: 0;
    text-align: center;
}

.opacity-100 .premium-modal-title {
    animation: fadeIn 0.5s ease forwards;
    animation-delay: 0.1s;
}

.premium-modal-subtitle {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 20px;
    opacity: 0;
    text-align: center;
    font-weight: 700;
}

.opacity-100 .premium-modal-subtitle {
    animation: fadeIn 0.5s ease forwards;
    animation-delay: 0.2s;
}

.premium-features-list {
    margin-top: 20px;
    margin-bottom: 20px;
}

.premium-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    opacity: 0;
}

.opacity-100 .premium-feature-item {
    animation: fadeIn 0.5s ease forwards;
}

.opacity-100 .premium-feature-item:nth-child(1) {
    animation-delay: 0.3s;
}

.opacity-100 .premium-feature-item:nth-child(2) {
    animation-delay: 0.5s;
}

.opacity-100 .premium-feature-item:nth-child(3) {
    animation-delay: 0.7s;
}

.opacity-100 .premium-feature-item:nth-child(4) {
    animation-delay: 0.9s;
}

.opacity-100 .premium-feature-item:nth-child(5) {
    animation-delay: 1.1s;
}

.opacity-100 .premium-feature-item:nth-child(6) {
    animation-delay: 1.3s;
}

.opacity-100 .premium-feature-item:nth-child(7) {
    animation-delay: 1.5s;
}

.opacity-100 .premium-feature-item:nth-child(8) {
    animation-delay: 1.7s;
}

.opacity-100 .premium-feature-item:nth-child(9) {
    animation-delay: 1.9s;
}

.premium-feature-icon {
    color: #10b981;
    margin-right: 12px;
    flex-shrink: 0;
}

.premium-feature-text {
    color: #4b5563;
    font-size: 1rem;
}

.premium-feature-text b {
    color: #1f2937;
    font-weight: 600;
}

.premium-button {
    width: 100%;
    background: linear-gradient(to right, #f97316, #ea580c);
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    text-transform: uppercase;
    padding: 14px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(249, 115, 22, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.premium-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.5);
}

.premium-button-highlight {
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.premium-button:hover .premium-button-highlight {
    transform: scaleX(1);
}

.premium-button-container {
    padding-top: 10px;
    margin-top: 20px;
    animation-delay: 1.8s;
    opacity: 0;
}

.opacity-100 .premium-button-container {
    animation: fadeIn 0.5s ease forwards;
    animation-delay: 2.1s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.pricing-plan {
    opacity: 0;
    animation: scaleIn 0.6s ease forwards;
}

.pricing-plan:nth-child(1) {
    animation-delay: 0.2s;
}

.pricing-plan:nth-child(2) {
    animation-delay: 0.4s;
}

.pricing-plan:nth-child(3) {
    animation-delay: 0.6s;
}

.pricing-plan:nth-child(4) {
    animation-delay: 0.8s;
}

.pricing-plan:nth-child(5) {
    animation-delay: 1s;
}

.pricing-plan:nth-child(6) {
    animation-delay: 1.2s;
}

.pricing-header {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 0.1s;
}

.pricing-subheader {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 0.3s;
}

.live-stream-btn {
    height: 24px;
    top: 66px;
}

@media (min-width: 640px) {
    .live-stream-btn {
        height: auto;
    }
}

.notify_close {
    background: #fff;
    border-radius: 25px;
    padding: 5px;
    top: -10px;
    right: -10px;
    box-shadow: 0 0 5px #000000;
}

.header-membership span {
    font-size: 14px;
}

@media (min-width: 475px) and (max-width: 1023px) {
    .pricing-grid > *:nth-child(3):nth-last-child(1) {
        grid-column: span 2;
        justify-self: center;
        width: calc(50% - 0.75rem);
    }
}

/* Payment container styling for all device sizes */
.payment-container {
    background-color: white;
    border-radius: 15px;
    border: 1px solid black;
    box-shadow: 0 0 10px 0px #000;
    margin-top: 35px;
    overflow: hidden;
}

/* Dark mode styles */
.dark .payment-container {
    background-color: rgb(31 41 55); /* gray-800 */
    border-color: rgb(75 85 99); /* gray-600 */
    box-shadow: 0 0 10px 0px #111;
}

/* Simple info page styling */
.info {
    line-height: 1.6;
    max-width: none;
}

.info h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid;
    padding-bottom: 0.5rem;
}

.info p.bold {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 1.5rem 0 1rem 0;
}

.info .blocktext {
    margin: 1rem 0;
    padding: 1rem;
}

.info .blocktext p {
    margin-bottom: 0.8rem;
}

.info .blocktext p:last-child {
    margin-bottom: 0;
}

#wrapper {
    position: relative;
    min-height: 100vh;
}
.main_content_inner{
    min-height: calc(100vh - 60px);
}
.sidebar-hidden .main_sidebar{
    margin-left: -240px;
}
.sidebar-hidden .main_content{
    margin-left: 0;
}
.main_sidebar {
    display: block;
    width: 240px;
    padding-top: 60px;
    z-index: 10;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.25s ease-in-out;
}
.logged-in .main_sidebar {
    padding-top: 95px;
}

.main_sidebar .sidebar-overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    top: 0;
    left: 0;
}

.main_sidebar .sidebar-header {
    display: none;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #e6e7eb;
}

.main_content {
    position: relative;
    z-index: 5;
    display: block;
    margin-left: 240px;
    transition: all 0.25s ease-in-out;
}

.simplebar-content {
    height: 100%;
}

.sidebar-container {
    position: relative;
    height: 100%;
}

#sidebar {
    height: calc(100vh - 60px);
    padding-bottom: 75px;
    position: sticky;
    top: 60px;
    left: 0;
}


@media (max-width: 767px) {
    .main_sidebar {
        position: fixed;
        z-index: 99;
        padding-top: 0;
        margin-left: -240px;
    }
    .logged-in .main_sidebar {
        padding-top: 0;
    }

    /* Show sidebar when mobile-active class is added */
    .main_sidebar.mobile-active {
        margin-left: 0;
    }

    .main_sidebar .menu-title {
        display: none;
    }

    .main_content {
        margin-left: 0;
    }
    .main_sidebar .sidebar-overlay {
        display: block;
        visibility: hidden;
        opacity: 0;
        transition: all 0.3s ease;
    }

    /* Show overlay when active class is added */
    .main_sidebar .sidebar-overlay.active {
        visibility: visible;
        opacity: 1;
    }
    .main_sidebar .sidebar-header {
        display: flex;
    }
    .simplebar-content {
        padding-top: 0;
    }
}

.cards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 370px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .cards-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .cards-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1280px) {
    .cards-container {
        grid-template-columns: repeat(5, 1fr);
    }
}

.tooltip {
    position: absolute;
    top: 100% !important;
    left: 50%;
    transform: translateX(-50%) !important;
    margin-top: 8px !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    max-width: 200px;
    width: max-content;
}

.tooltip-content {
    white-space: normal !important;
    text-align: left !important;
    word-wrap: break-word;
    line-height: 1.4;
    padding: 8px 12px !important;
}

.tooltip-content::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-bottom-color: #26095e;
}

.tooltip-text {
    font-size: 12px !important;
    max-width: 200px;
    width: auto;
    height: auto;
}

/* Responsive adjustments for mobile tooltips */
@media (max-width: 640px) {
    .tooltip {
        left: 0 !important;
        transform: none !important;
        margin-left: -10px;
        max-width: 180px;
    }

    .tooltip-text {
        font-size: 11px !important;
        max-width: 180px;
    }

    .tooltip-content::after {
        left: 20px;
        transform: none;
    }
}

.tariff-prefix{
    display: none;
}
@media (min-width: 1340px) {
    .tariff-prefix{
        display: inline-block;
    }
}

.main-header{
    max-height: 60px;
}

.main-logo {
    display: none;
}
@media (min-width: 400px) {
    .main-logo{
        display: inline-block;
    }
}

/* MODEL CARDS - Portrait Aspect Ratio (300x420) */
.model-card-item {
    width: 100%;
}

.model-card-item .bg-white {
    aspect-ratio: 300/420; /* Portrait: 5:7 ratio */
    height: auto;
}

.model-card-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 300/420;
}

/* STUDIO CARDS - Landscape Aspect Ratio (420x300) */
.studio-card-item,
.studios-grid a {
    width: 100%;
}

.studio-card-item .relative,
.studios-grid a .relative {
    aspect-ratio: 1920/1080;
    height: auto;
}

/* Responsive Grid Layouts */

/* Mobile First - Single Column */
.models-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 0.5rem;
}

.studios-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 0.5rem;
}

/* Small Mobile - 2 columns for models, 1 for studios */
@media (min-width: 480px) {
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0;
    }

    .studios-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Large Mobile/Small Tablet - 2-3 columns */
@media (min-width: 640px) {
    .models-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .studios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Tablet - 3-4 columns */
@media (min-width: 768px) {
    .models-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .studios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

/* Large Tablet - 4-5 columns */
@media (min-width: 1024px) {
    .models-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .studios-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* Desktop - 5-6 columns */
@media (min-width: 1280px) {
    .models-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.5rem;
    }

    .studios-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

/* Large Desktop - 6+ columns */
@media (min-width: 1536px) {
    .models-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 2rem;
    }

    .studios-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 2rem;
    }
}

/* Fix existing model card height issues */
.model-card-item .bg-white.dark\:bg-gray-800 {
    height: auto !important; /* Remove fixed height */
}

/* Ensure proper image scaling within containers */
.model-card-item .relative.h-full {
    aspect-ratio: 300/420;
    height: auto;
}

.studio-card-item .relative.h-36,
.studios-grid a .relative.h-36 {
    height: auto !important;
    aspect-ratio: 420/300;
}

/* Responsive text sizing for smaller cards */
@media (max-width: 640px) {
    .model-card-item .text-base {
        font-size: 0.875rem;
    }

    .model-card-item .text-xs {
        font-size: 0.75rem;
    }

    .studio-card-item .text-lg,
    .studios-grid a .text-lg {
        font-size: 1rem;
    }
}

/* Hover effects optimization for different screen sizes */
@media (hover: hover) {
    .model-card-item:hover img {
        transform: scale(1.05);
    }

    .studio-card-item:hover,
    .studios-grid a:hover {
        transform: translateY(-2px);
    }
}

/* Touch device optimizations */
@media (hover: none) {
    .model-card-item img {
        transition: none;
    }

    .studio-card-item,
    .studios-grid a {
        transition: none;
    }
}

@keyframes liveStreamPulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.live-stream-btn span {
    display: inline-block;
    background: rgba(255, 255, 255, 1);
    border-radius: 50%;
    height: 10px;
    width: 10px;
    min-width: 10px;
    min-height: 10px;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 1);
    transform: scale(1);
    animation: liveStreamPulse 2s infinite;
}

.live-stream-btn {
    padding: 8px 15px;
    font-size: 0.75rem;
}

@media (max-width: 600px) {
    .live-stream-btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }

    .live-stream-btn span {
        height: 8px;
        width: 8px;
        min-width: 8px;
        min-height: 8px;
    }
}

@media (max-width: 1024px) {
    .mobile-active .go-to-top-btn {
        right: 1rem;
        z-index: 40;
    }
}

/* Set Card Title Styling */
.set-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    height: 1.5rem;
    line-height: 1.5rem;
}

.set-title-link {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #1f2937;
    transition: color 0.2s ease;
    text-decoration: none;
    height: 1.5rem;
    line-height: 1.5rem;
    max-width: 150px;
}

.set-title-link:hover {
    color: #ea580c;
}

.dark .set-title-link {
    color: #ffffff;
}

.dark .set-title-link:hover {
    color: #f97316;
}
.account-icon-gray {
    filter: invert(61%) sepia(11%) saturate(200%) hue-rotate(200deg) brightness(0.8) contrast(0.9);
}

.account-icon-green {
    filter: invert(64%) sepia(88%) saturate(1458%) hue-rotate(87deg) brightness(1.1) contrast(1.1);
}

.account-icon-green-hover {
    filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(1.18) contrast(1.19);
}
.dark .account-icon-gray {
    filter: invert(75%) sepia(11%) saturate(200%) hue-rotate(200deg) brightness(1.1) contrast(1.1);
}

.go-to-top-btn {
    position: fixed;
    bottom: 4.5rem;
    right: 1.2rem;
    z-index: 50;
    background-color: #ea580c;
    color: white;
    padding: 0.75rem;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    border: none;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.go-to-top-btn:hover {
    background-color: #c2410c;
    transform: scale(1.1);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.go-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.go-to-top-btn svg {
    height: 1.25rem;
    width: 1.25rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dark .go-to-top-btn {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.dark .go-to-top-btn:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

@media (max-width: 640px) {
    .go-to-top-btn {
        right: 1.4rem;
        padding: 0.625rem;
    }

    .go-to-top-btn svg {
        height: 1rem;
        width: 1rem;
    }
}

@media (max-width: 1024px) {
    .mobile-active .go-to-top-btn {
        right: 1rem;
        z-index: 40;
    }
}

.upgrade-membership-container {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

@media (min-width: 1024px) {
    .upgrade-membership-container {
        justify-content: flex-end;
    }
}

.bells_block {
    position: fixed;
    top: 45px;
    right: 35px;
    background-color: white;
    border-radius: 0.375rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    z-index: 20;
}

.bells_block-link {
    display: block;
    padding: 15px 20px 17px;
    width: 265px;
}
@media (min-width: 460px) {
    .bells_block-link {
        width: 340px;
    }
}

/* Header Icons Standardization */
.header-icons-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 1280px) {
    .header-icons-container {
        gap: 1rem;
    }
}

/* Support Icon */
.support-icon {
    width: 35px !important;
    height: 35px !important;
}

/* Notification Bell Icon */
.bell-wrapper {
    width: 35px !important;
    height: 35px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bell-wrapper > div {
    width: 35px !important;
    height: 35px !important;
    background-size: contain !important;
}

/* User Account Icon Container */
.user-account-button {
    width: 35px !important;
    height: 35px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
}

.user-account-button svg {
    width: 20px !important;
    height: 20px !important;
}

/* Responsive Set Title Link Max-Width */
@media (min-width: 840px) {
    .set-title-link {
        max-width: 170px;
    }
}
@media (min-width: 992px) {
    .set-title-link {
        max-width: 220px;
    }
}
@media (min-width: 1020px) {
    .set-title-link {
        max-width: 170px;
    }
}
@media (min-width: 1100px) {
    .set-title-link {
        max-width: 190px;
    }
}
@media (min-width: 1170px) {
    .set-title-link {
        max-width: 205px;
    }
}
@media (min-width: 1250px) {
    .set-title-link {
        max-width: 220px;
    }
}
@media (min-width: 1280px) {
    .set-title-link {
        max-width: 175px;
    }
}
@media (min-width: 1332px) {
    .set-title-link {
        max-width: 195px;
    }
}
@media (min-width: 1440px) {
    .set-title-link {
        max-width: 215px;
    }
}
@media (min-width: 1536px) {
    .set-title-link {
        max-width: 235px;
    }
}
@media (min-width: 1600px) {
    .set-title-link {
        max-width: 245px;
    }
}
@media (min-width: 1700px) {
    .set-title-link {
        max-width: 265px;
    }
}

/* Locker Modal Sections */
.locker-left-section {
    background: linear-gradient(45deg, rgba(255, 137, 0, 0.7) 50%, rgba(255, 98, 0, 0.23) 100%);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

@media (min-width: 1024px) {
    .locker-left-section {
        width: 50%;
    }
}

.locker-right-section {
    padding: 1rem;
}

.dark .locker-right-section {
    background-color: #1f2937;
}

@media (min-width: 1024px) {
    .locker-right-section {
        width: 50%;
    }
}

.locker-modal-wrapper {
    position: relative;
    min-height: 100vh;
}
.locker-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 auto;
}
.empty-footer {
    background: #f3f4f6;
}
.dark .empty-footer {
    background: #1f2937;
}

@media (min-width: 1024px) {
    .locker-icon {
        width: 10rem;
        height: 10rem;
    }
    .locker-right-section {
        padding: 2.5rem;
    }
    .locker-left-section {
        padding: 2.5rem;
    }
    .locker-modal-wrapper {
        position: absolute;
        top: -25%;
    }
    .empty-content{
        min-height: 75vh;
    }
    .empty-footer, .dark .empty-footer {
        background: transparent;
    }
}

.locked-page .empty-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

@media (max-width: 420px) {
    .bells_block {
        right: 15px;
        left: 15px;
    }
    .bells_block-link {
        width: auto;
    }
}

@media (max-width: 1024px) {
    .locker-modal-wrapper {
        padding-bottom: 180px;
    }
}

@media (max-width: 767px) {
    .premium-modal-left {
        display: none;
    }
    .premium-modal-title {
        font-size: 1.5rem;
    }
    .premium-feature-item {
        margin-bottom: 5px;
    }
    .premium-button {
        font-size: 0.8rem;
    }
}

.question-icon{
    color: #ffb939;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    border: 1px solid #ffb939;
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.exposed-icon{
    animation: statusexposed .9s infinite;
    color: #ef4444;
    font-size: 12px;
    border-radius: 50%;
    border: 1px solid #ef4444;
    width: 14px;
    height: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@keyframes statusexposed{
    0%{
        transform: scale(0.8);
    }
    50%{
        transform: scale(1.2);
    }
    100%{
        transform: scale(1);
    }
}

@-webkit-keyframes statusexposed{
    0%{
        transform: scale(0.8);
    }
    50%{
        transform: scale(1.2);
    }
    100%{
        transform: scale(1);
    }
}

.landing-fire {
    overflow: hidden;
    margin-top: -35px;
    margin-bottom: -65px;
}
@media (max-width: 640px) {
    .landing-fire {
        margin-top: -10px;
    }
}
.offer-right-image-wrapper, .offer-left-image-wrapper {
    display: none;
}
@media (min-width: 1200px) {
    .offer-right-image-wrapper, .offer-left-image-wrapper {
        display: block;
    }
}

.like-widget-desktop {
    display: block;
}

.like-widget-mobile {
    display: none;
}

@media (max-width: 474px) {
    .like-widget-desktop {
        display: none;
    }

    .like-widget-mobile {
        display: flex;
    }
}

.like-widget-responsive {
    display: flex;
    flex-direction: column;
}

.like-counter-desktop {
    display: block;
}

.like-count-mobile {
    display: none;
}

.like-buttons-container {
    background: transparent;
    padding: 0;
    border-radius: 0;
    gap: 0.25rem;
}

@media (max-width: 474px) {
    .like-counter-desktop {
        display: none;
    }

    .like-count-mobile {
        display: flex;
    }

    .like-buttons-container {
        background-color: #f9fafb;
        padding: 0.75rem 1rem;
        border-radius: 0.5rem;
        gap: 1rem;
        justify-content: center;
        margin-top: 0;
    }

    .dark .like-buttons-container {
        background-color: #1f2937;
    }

    .like-button {
        border-radius: 50%;
        padding: 0.5rem;
        flex: none;
    }

    .like-button svg {
        width: 1.5rem;
        height: 1.5rem;
    }

    .like-button-like.bg-green-600 {
        background-color: #16a34a !important;
        color: white !important;
    }

    .like-button-dislike.bg-red-600 {
        background-color: #dc2626 !important;
        color: white !important;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.25rem;
    width: 100%;
}

.gallery-grid.gallery-video-wrapper-grid {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-grid-item {
    display: block;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: opacity 0.2s ease;
}

.gallery-grid-item:hover {
    opacity: 0.8;
}

.gallery-grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 300 / 420;
}

.gallery-grid.horizontal .gallery-grid-image {
    aspect-ratio: 420 / 300;
}

@media (min-width: 475px) {
    .gallery-grid:not(.gallery-video-wrapper-grid) {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
}

@media (min-width: 640px) {
    .gallery-grid:not(.gallery-video-wrapper-grid) {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width: 768px) {
    .gallery-grid:not(.gallery-video-wrapper-grid) {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (min-width: 475px) {
    .gallery-grid.gallery-video-wrapper-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 640px) {
    .gallery-grid.gallery-video-wrapper-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}
@media (min-width: 1024px) {
    .gallery-grid.horizontal {
        gap: 0.25rem;
    }
}

/* Stream Modal Styles */
.stream-modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
    opacity: 0;
    pointer-events: none;
    padding: 1rem 0;
}

.stream-modal.hidden {
    display: none;
}

.stream-modal.opacity-100 {
    opacity: 1;
    pointer-events: auto;
}

.stream-modal-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.stream-modal-container {
    position: relative;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 42rem;
    width: 100%;
    margin: 0 1rem;
}

.stream-modal-form {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 1rem);
    max-width: 42rem;
}
@media (min-width: 640px) {
    .stream-modal-form {
        width: calc(100% - 10rem);
    }
}
@media (min-width: 768px) {
    .stream-modal-content {
        padding: 2rem 1rem;
    }
    .stream-modal-video-container {
        margin-top: -30px;
    }
}

.stream-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 10;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background-color: rgba(31, 41, 55, 0.5);
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.stream-modal-close:hover {
    color: #d1d5db;
    background-color: rgba(55, 65, 81, 0.5);
}

.stream-modal-header {
    position: relative;
    background: linear-gradient(-45deg, #8BC34A, #E91E63, #2196F3, #FFEB3B);
    background-size: 400% 400%;
    animation: streamHeaderGradient 15s ease infinite;
    border-bottom: 2px solid #000;
    box-shadow: 0 0 10px 1px #55ad58;
    padding: 0.5rem;
    color: white;
    text-align: center;
    border-radius: 5px 5px 0 0;
}

.opacity-100 .stream-modal-header {
    animation: streamHeaderGradient 15s ease infinite;
}

.opacity-100 .stream-modal-live-badge {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.opacity-100 .stream-modal-shimmer {
    animation: shimmer 2s infinite;
}

.opacity-100 .stream-feature-item {
    animation: fadeIn 0.5s ease forwards;
}

.opacity-100 .stream-modal-button {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes streamHeaderGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@media (min-width: 768px) {
    .stream-modal-header {
        padding: 0.5rem;
    }
}

.stream-modal-title {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
    position: relative;
}

@media (min-width: 640px) {
    .stream-modal-title {
        font-size: 1.5rem;
    }
}

.stream-modal-title-highlight {
    color: #86efac;
    text-decoration: underline;
}

.stream-modal-subtitle {
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    font-size: 14px;
}

.stream-modal-content {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
}

@media (min-width: 768px) {
    .stream-modal-content {
        flex-direction: row;
    }
}

.stream-modal-preview {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .stream-modal-preview {
        width: 50%;
    }
}

.stream-modal-video-container {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    background-color: black;
    aspect-ratio: 16 / 9;
    border: 4px solid #6b7280;
}

.stream-modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stream-modal-live-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background-color: #dc2626;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.stream-modal-live-dot {
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    background-color: white;
    border-radius: 9999px;
    margin-right: 0.25rem;
}

.stream-modal-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

.stream-modal-features {
    width: 100%;
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .stream-modal-features {
        width: 50%;
    }
}

.stream-features-list {
    margin-top: 0;
}

@media (min-width: 640px) {
    .stream-features-list {
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
    }
}

.stream-feature-item {
    display: flex;
    align-items: center;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.stream-feature-price {
    margin-top: 0.5rem;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .stream-feature-price {
        margin-top: 1.5rem;
        display: flex;
        justify-content: center;
    }
}

.stream-feature-icon {
    height: 1.25rem;
    width: 1.25rem;
    color: #10b981;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.stream-feature-text {
    color: #374151;
}

.stream-price-container {
    font-weight: bold;
    text-align: center;
    padding: 2px 40px;
    border: 2px solid #f97316;
    border-radius: 0.5rem;
    position: relative;
}

.stream-price-old {
    position: absolute;
    top: -0.75rem;
    right: -0.75rem;
    background-color: #fbbf24;
    color: black;
    text-decoration: line-through;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    transform: rotate(-6deg) scale(0.9);
    border: 1px solid #f97316;
}

.stream-price-current {
    font-size: 1.5rem;
    color: #16a34a;
}

.stream-price-label {
    color: #374151;
    margin-left: 0.5rem;
}

.stream-modal-button {
    width: 100%;
    background: linear-gradient(to right, #f97316, #ea580c);
    transition: all 0.2s;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
    text-align: center;
    background: orange;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px 5px #fff;
    border: 1px solid #d96700;
    z-index: 3;
    position: relative;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    text-shadow: 0 -1px 0 #d96700, 0 -1px 0 #d96700, 0 1px 0 #d96700, 0 1px 0 #d96700, -1px 0 0 #d96700, 1px 0 0 #d96700, -1px 0 0 #d96700, 1px 0 0 #d96700, -1px -1px 0 #d96700, 1px -1px 0 #d96700, -1px 1px 0 #d96700, 1px 1px 0 #d96700, -1px -1px 0 #d96700, 1px -1px 0 #d96700, -1px 1px 0 #d96700, 1px 1px 0 #d96700, 0px 0px 10px #d96700;
    cursor: pointer;

}

.stream-modal-button:hover {
    box-shadow: 0 2px 10px -3px rgb(255 255 255);
}

.stream-modal-button-text {
position: relative;
z-index: 10;
text-transform: uppercase;
font-size: 1rem;
}

@media (min-width: 768px) {
.stream-modal-button-text {
    font-size: 1.25rem;
}
}

.stream-modal-button-highlight {
position: absolute;
inset: 0;
background-color: rgba(255, 255, 255, 0.1);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.3s;
}

.stream-modal-button:hover .stream-modal-button-highlight {
transform: scaleX(1);
}
/* Streaming Card Coming Soon Text */
.streaming-card-coming-soon {
    font-size: 1.25rem; /* text-xl */
    color: black;
    font-weight: bold;
    text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff;
}

.dark .streaming-card-coming-soon {
    color: white;
}

@media (min-width: 640px) {
    .streaming-card-coming-soon {
        font-size: 1.5rem; /* sm:text-2xl */
    }
}

@media (min-width: 1280px) {
    .streaming-card-coming-soon {
        font-size: 2.25rem; /* lg:text-4xl */
    }
}
@media (min-width: 768px) {
    .stream-modal-subtitle {
        font-size: 18px;
    }
}
.bells_block-avatar-image {
    width: 65px !important;
    min-width: 65px !important;
    max-width: 65px !important;
    flex-shrink: 0 !important;
}

@media (min-width: 768px) {
    .md\:pb-2 {
        padding-bottom: 0.5rem;
    }
}

.mb-10 {
    margin-bottom: 2.5rem;
}

@media (max-width: 767px) {
    .stream-modal-container {
        max-height: 100%;
        overflow-y: auto;
    }
    .stream-modal-form {
        position: static;
        transform: none;
        width: 100%;
        max-width: none;
    }
}