html, body {
    font-family: "Lato", sans-serif;
    height: 100%;
}

.fullpage-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    backdrop-filter: blur(15px); /* Apply a blur effect to the background */
    -webkit-backdrop-filter: blur(15px); /* For better compatibility with Safari */
    display: none;
}

.fullpage-overlay .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 1);
    padding: 30px;
    border-radius: 10px;
    width: 460px;
    text-align: center;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}


/* This hides the play button on the mobile browsers */
video::-webkit-media-controls {
    display: none !important;
}

/* Additional styles to target the video element */
video {
    pointer-events: none;
}

.dropdown-divider {
    border-top: 1px solid #f1f1f1;
}

.lcc-nav {
    background: #D32F2F;
}

.lcc-nav .nav-link {
    color: #fafafa !important;
    font-family: "Lato", serif;
    font-weight: 500;
    font-size: 1rem;
    padding: 5px;
}

.lcc-nav .nav-link.active {
    font-weight: 500;
    color: #f1f1f1 !important;
    text-decoration: underline !important;
}

.lcc-nav .nav-link:hover {
    color: #f1f1f1 !important;
    text-decoration: underline !important;
}

.input-header {
    border-color: #666;
    padding-left: 15px;
    font-size: 14px;
    padding: 8px;
}

.input-header:focus {
    box-shadow: none;
    border-color: #444;
}

.pagination {
    justify-content: center;
    display: flex;
    padding: 0;
    align-items: center;
}

.pagination .page-item {
    padding: 5px;
    background: #f1f1f1;
    border-radius: 50%;
    margin-right: 5px;
}

.pagination .page-item .page-link {
    border-color: #D32F2F;
    border: 0px !important;
    border-radius: 50%;
    color: #D32F2F;
    font-weight: 600;
    font-size: 1.1rem;
}

/* active */
.pagination .page-item.active {
    background-color: red !important;
    border-radius: 50%;
    color: #fff;
}

.pagination .page-item.active .page-link {
    background-color: red !important;
    border-radius: 50%;
    color: #fff;
}


/* lets hide the p ag from pagination */
.lcc-pag p {
    display: none !important;
}

.video-card {
    position: relative;
    cursor: pointer;
}

.video-card .wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    background: #222;
    min-height: 150px;
    border-radius: 10px;
}

.video-card .thumb {
    border-radius: 10px;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transition: filter 0.5s ease-in-out !important;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.9);
    min-height: 150px;
    z-index: 1;
}

.video-card video {
    border-radius: 10px;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transition: filter 0.5s ease-in-out !important;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.9);
    min-height: 150px;
    object-fit: cover;
    margin: 0;
    padding: 0;
    border: 0;
    z-index: 999;
    display: block; /* Prevent inline alignment issues */
    box-sizing: border-box; /* Ensure padding and borders are included in width/height */
}

.video-card .loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10; /* Ensures it appears above other content */
    color: #999; /* Spinner color */
    font-size: 24px; /* Adjust spinner size */
    display: flex; /* Initially visible */
    justify-content: center;
    align-items: center;
}


.video-card .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.video-card .header-right {
    position: absolute;
    top: 2px;
    right: 5px;
    padding: 5px;
}

.video-card .play-btn .btn {
    font-size: 0.8rem;
    background: linear-gradient(108.4deg, rgb(253, 44, 56) 3.3%, rgb(176, 2, 12) 98.4%);
    border: 0;

}

.video-card .body {
    margin-top: 9px;
}

.video-card .title {
    font-size: 0.9rem;
    font-weight: 400;
    color: #222;
    font-family: "Lato", sans-serif;
    /* text spacing */
    letter-spacing: 0.2px;
    line-height: 1.3;
}

.video-card .body .footer {
    font-size: 0.8rem;
    margin-top: 4px;
    font-family: "Lato", sans-serif;
}

.video-card .info-card {
    max-height: 100px;
    overflow: auto;
    padding: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    font-size: 0.8rem;
    margin-top: 7px;
    border-radius: 6px;
    color: #333;
    font-family: "Lato", sans-serif;
    background: #fff;
}

/* lets customize scrollbar */
.video-card .info-card::-webkit-scrollbar {
    width: 5px;
}

.video-card .info-card::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

.video-card .info-card::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.video-card .info-card::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Style for the loading bar */
.loading-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 97%;
    height: 4px;
    border-radius: 5px;
    margin-right: 6px;
    background: linear-gradient(to right, #D32F2F 0%, #F44336 50%, transparent 50%);
    background-size: 200% 100%;
    animation: loading 1s infinite;
}

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

.col-xxl-2 .video-card .title {
    font-size: 0.8rem !important;
}

.col-xxl-2 .video-card .body .footer {
    font-size: 0.7rem !important;
}


/* UNLOCK CARD */
.unlock-card {
    position: relative;
    cursor: pointer;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    min-height: 160px !important;

}

.unlock-card .thumb {
    border-radius: 10px;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transition: filter 0.5s ease-in-out !important;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.9);
}

.unlock-card .body {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    display: flex;
    backdrop-filter: blur(8px); /* Apply blur effect */
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
}

.unlock-card .body.body-visible {
    backdrop-filter: none !important;
    background: rgba(0, 0, 0, 0.3);
}

#modelTabs {
    border-bottom: 2px solid #e9ecef !important;
}

#modelTabs button {
    border: 0;
    background: transparent;
    color: #000;
    font-weight: 500;
    font-size: 1.2rem;
}

#modelTabs button.active {
    border-bottom: 2px solid #dc3545 !important;
}

/* Add this CSS to your stylesheet */
.initial-blur {
    filter: blur(10px);
    pointer-events: none;
}

.blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    backdrop-filter: blur(15px); /* Apply a blur effect to the background */
    -webkit-backdrop-filter: blur(15px); /* For better compatibility with Safari */
    pointer-events: none; /* Prevent interaction with underlying elements */
}

/* lets make sure toastr os over the overlay */
.toast-container {
    z-index: 9999999 !important;
}


.ageConfirmationOverlay {
    background: rgba(211, 47, 47, 0.5); /* Material green with 80% opacity */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    backdrop-filter: blur(15px); /* Apply a 10px blur */
    -webkit-backdrop-filter: blur(15px); /* For better compatibility */
    display: none;
}

.ageConfirmationOverlay .body {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.9);
    padding: 30px;
    border-radius: 10px;
    width: 460px;
    text-align: center;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.ageConfirmationOverlay a {
    color: #fff;
}

.btn-success {
    background: linear-gradient(to top, #0ba360 0%, #3cba92 100%);
    border: 0;
}

/*
 * LIVE VIDEO CARD CSS
 */

.video-live-card {
    position: relative;
    color: #fff !important;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: #000;
}

.video-live-card video {
    object-fit: cover !important; /* Make sure this is set to cover the container */
    width: 100%; /* Ensure the video covers the full width */
    height: 100%; /* Ensure the video covers the full height */
    border-radius: 10px;
    display: none;
    transition: opacity 0.5s ease-in-out !important; /* Smooth transition */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5) !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    border: 0;
}

.video-live-card .video-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.video-live-card.shadow {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.video-live-card .visible {
    display: block !important;
    opacity: 1 !important;
}

.video-live-card .video-live-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex; /* Keep flex for centering */
    justify-content: center; /* Horizontally center */
    align-items: center; /* Vertically center */
    border-radius: 10px;
    z-index: 5;
    backdrop-filter: blur(5px);
    opacity: 0; /* Make it invisible initially */
    visibility: hidden; /* Prevent clicks and interactions initially */
    transition: opacity 0.5s ease; /* Smooth transition */
}

.video-live-card .video-live-card-overlay .content {
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

/* Loading spinner */
.video-live-card .vid-loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: #fff;
    display: none; /* Hidden by default, shown while loading */
}

.video-live-card .video-info {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    z-index: 10;

}


/* END LIVE VIDEO CARD CSS */


@media (max-width: 768px) {
    .video-card .title {
        font-size: 0.8rem;
    }

    .header-logo {
        width: 110px;
    }

    .lcc-nav .nav-link {
        font-size: 14px;
    }

    .dropdown-menu .dropdown-item {
        font-size: 14px;
    }

    .btn {
        font-size: 14px;
    }

    .ageConfirmationOverlay .body {
        width: 90%;
    }

    .video-card .thumb {
        border-radius: 10px;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        transition: filter 0.5s ease-in-out !important;
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.9);
        min-height: 140px;
    }

    footer {
        font-size: 13px;
    }

    footer .nav-link {
        font-size: 13px !important;
    }

    .header-avatar {
        width: 30px !important;
        height: 30px !important;
        margin-top: 5px;
    }
}

.home-main-section {
    background-color: #e1e1e1;
}


/* Styles for alphabet pagination */
.alphabet-pagination {
    display: flex;
    overflow-x: auto; /* Enable horizontal scrolling */
    white-space: nowrap; /* Prevent line breaks */
    padding: 10px 0;
    gap: 10px; /* Optional spacing between letters */
    justify-content: flex-start; /* Align items to the start */
}

.alphabet-pagination a {
    display: inline-block;
    padding: 5px 10px;
    text-decoration: none;
    font-size: 1.2em;
    color: #333;
}

/* Customize scrollbar appearance */
.alphabet-pagination::-webkit-scrollbar {
    height: 8px; /* Set scrollbar height */
}

.alphabet-pagination::-webkit-scrollbar-thumb {
    background-color: #888; /* Scrollbar thumb color */
    border-radius: 10px; /* Rounded corners */
}

.alphabet-pagination::-webkit-scrollbar-thumb:hover {
    background-color: #555; /* Color on hover */
}

.listing-model {

}

.listing-model a {
    color: #333 !important;
    font-size: 1.1em !important;
    font-weight: bold;
}

.listing-model a:hover {
    color: #D32F2F !important;
}

@media (max-width: 768px) {
    .alphabet-pagination a {
        font-size: 1em;
    }

    .listing-model a {
        font-size: 0.9em !important;
        text-align: center !important;
    }
}