    /* Reset and Base Styles */
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Arial, sans-serif;
        scrollbar-width: none;
    }
    
    body {
        background-color: #181818;
        color: #ffffff;
    }
    
    a {
        text-decoration: none;
        color: #ffffff;
    }
    
    ul {
        list-style: none;
    }
    
    button {
        cursor: pointer;
    }
    /* Header Styles */
    
    header {
        background-color: #000000;
        padding: 10px 20px;
        border-bottom: 1px solid #333;
    }
    
    .load {
        padding: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 0;
        z-index: 10;
    }
    
    .more {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.8rem;
        font-weight: bold;
        /* background-color: #ff8a00; */
        padding: 0.5rem 1rem;
        border-radius: 1.5rem;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    
    .header-container {
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .header-main-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        width: 100%;
    }
    
    .logo {
        flex-shrink: 0;
    }
    
    .logo img {
        height: 40px;
    }
    
    .search-bar {
        display: flex;
        flex: 1;
        max-width: 600px;
    }
    
    .search-bar input {
        flex: 1;
        padding: 10px;
        background-color: #222;
        border: 1px solid #444;
        border-radius: 4px 0 0 4px;
        color: #fff;
    }
    
    .search-button {
        background-color: #333;
        color: #fff;
        border: none;
        padding: 0 15px;
        border-radius: 0 4px 4px 0;
    }
    
    .desktop-auth {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .login-button {
        background: none;
        border: 1px solid #444;
        color: #fff;
        padding: 8px 15px;
        border-radius: 4px;
    }
    
    .signup-button {
        background-color: #e74c3c;
        border: none;
        color: #fff;
        padding: 8px 15px;
        border-radius: 4px;
    }
    
    .mobile-search-row {
        display: none;
        align-items: center;
        width: 100%;
        gap: 10px;
        /* margin-top: 10px; */
        justify-content: space-between;
    }
    
    .mobile-search-row .search-bar {
        flex: 1;
        max-width: none;
        display: flex;
    }
    
    .header-toggle-btn {
        display: none;
        background: none;
        border: none;
        color: #fff;
        font-size: 20px;
        cursor: pointer;
    }
    
    .mobile-header {
        display: none;
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .mobile-header .logo {
        margin: 0 auto;
    }
    /* Navigation Menu */
    
    .main-nav {
        background-color: #000000;
        padding: 0 20px;
        border-bottom: 1px solid #333;
    }
    
    .main-menu {
        display: flex;
        max-width: 1400px;
        margin: 0 auto;
        overflow-x: auto;
    }
    
    .main-menu li {
        white-space: nowrap;
    }
    
    .main-menu a {
        display: block;
        padding: 15px;
        color: #aaa;
        font-size: 14px;
        transition: color 0.2s;
    }
    
    .main-menu a:hover {
        color: #fff;
    }
    
    .chat-link {
        color: #e74c3c !important;
    }
    
    .premium-link {
        color: #f1c40f !important;
    }
    /* Banner Section */
    
    .banner {
        background: linear-gradient(to right, #3498db, #9b59b6);
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 15px;
        gap: 20px;
        position: relative;
        overflow: hidden;
    }
    
    .banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('images/banner-bg.png') repeat;
        opacity: 0.1;
        z-index: 0;
    }
    
    .banner p {
        position: relative;
        z-index: 1;
    }
    
    .try-free-button {
        background-color: #e74c3c;
        color: #fff;
        border: none;
        padding: 8px 15px;
        border-radius: 4px;
        font-weight: bold;
        position: relative;
        z-index: 1;
    }
    /* Content Container */
    
    .content-container {
        display: flex;
        max-width: 1400px;
        margin: 0 auto;
        padding: 20px;
        gap: 20px;
    }
    /* Sidebar */
    
    .sidebar {
        width: 220px;
        flex-shrink: 0;
        background-color: #1a1a1a;
        border-radius: 4px;
        overflow: hidden;
        transition: transform 0.3s ease-in-out;
        z-index: 1000;
    }
    
    .sidebar-logo {
        background-color: #000;
        display: none;
        /* Hide by default on desktop */
    }
    
    .sidebar-logo h4 {
        font-size: 1.2rem;
        font-weight: bold;
        margin: 0;
    }
    /* Show sidebar logo only on mobile devices */
    
    @media (max-width: 768px) {
        .sidebar-logo {
            display: block;
        }
    }
    
    .sidebar-close {
        display: none;
        text-align: right;
        padding: 10px;
        border-bottom: 1px solid #333;
    }
    
    .sidebar-close button {
        background: none;
        border: none;
        color: #aaa;
        font-size: 18px;
        cursor: pointer;
    }
    
    .sidebar-close button:hover {
        color: #fff;
    }
    /* Sidebar header with logo and close button on same line */
    
    .sidebar-header {
        display: none;
        /* Hidden by default on desktop */
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        border-bottom: 1px solid #333;
    }
    
    .sidebar-header button {
        background: none;
        display: none;
        border: none;
        color: #aaa;
        font-size: 18px;
        cursor: pointer;
        padding: 0;
    }
    /* Show sidebar header only on mobile devices */
    
    @media (max-width: 768px) {
        .sidebar-header {
            display: flex;
            margin-bottom: 30px;
            /* Show on mobile */
        }
        .sidebar-header button {
            display: block;
        }
    }
    
    .sidebar-header .sidebar-logo img {
        max-height: 40px;
    }
    
    .sidebar-header button:hover {
        color: #fff;
    }
    
    .sidebar-auth {
        display: none;
        padding: 15px;
        border-bottom: 1px solid #333;
    }
    
    .sidebar-login-button,
    .sidebar-signup-button {
        width: 100%;
        padding: 10px;
        margin-bottom: 10px;
        border-radius: 4px;
        cursor: pointer;
        font-size: 14px;
    }
    
    .sidebar-login-button {
        background: none;
        border: 1px solid #444;
        color: #fff;
    }
    
    .sidebar-signup-button {
        background-color: #e74c3c;
        border: none;
        color: #fff;
    }
    
    .sidebar-toggle {
        display: none;
        position: fixed;
        top: 15px;
        left: 15px;
        z-index: 999;
    }
    
    .sidebar-toggle button {
        background-color: #1a1a1a;
        border: none;
        color: #fff;
        width: 40px;
        height: 40px;
        border-radius: 4px;
        font-size: 18px;
        cursor: pointer;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }
    
    .sidebar-toggle button:hover {
        background-color: #252525;
    }
    
    body.sidebar-open {
        overflow: hidden;
    }
    
    .sidebar-item {
        display: flex;
        align-items: center;
        padding: 12px 15px;
        gap: 10px;
        cursor: pointer;
        transition: background-color 0.2s;
    }
    
    .sidebar-item:hover {
        background-color: #252525;
    }
    
    .sidebar-item i {
        width: 20px;
        text-align: center;
        color: #aaa;
    }
    
    .badge {
        background-color: #e74c3c;
        color: #fff;
        font-size: 10px;
        padding: 2px 6px;
        border-radius: 10px;
        margin-left: auto;
    }
    
    .badge-small {
        background-color: #333;
        color: #fff;
        font-size: 10px;
        padding: 2px 6px;
        border-radius: 4px;
        margin-left: auto;
    }
    
    .sidebar-divider {
        height: 1px;
        background-color: #333;
        margin: 10px 0;
    }
    
    .sidebar-search {
        padding: 15px;
        position: relative;
    }
    
    .sidebar-search input {
        width: 100%;
        padding: 8px 30px 8px 10px;
        background-color: #222;
        border: 1px solid #444;
        border-radius: 4px;
        color: #fff;
    }
    
    .sidebar-search i {
        position: absolute;
        right: 25px;
        top: 23px;
        color: #aaa;
    }
    
    .sidebar-categories {
        max-height: 400px;
        overflow-y: auto;
    }
    
    .category-item {
        display: flex;
        justify-content: space-between;
        padding: 10px 15px;
        cursor: pointer;
        transition: background-color 0.2s;
    }
    
    .category-item:hover {
        background-color: #252525;
    }
    /* Subtle styling for category headers */
    
    .category-item.header {
        font-size: 0.9em;
        color: #888;
        font-weight: normal;
        cursor: default;
        background-color: transparent;
    }
    
    .category-item.header:hover {
        background-color: transparent;
    }
    
    .flag {
        font-size: 14px;
    }
    /* Main Content */
    
    .main-content {
        flex: 1;
    }
    
    .content-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .content-header h2 {
        font-size: 20px;
        font-weight: normal;
    }
    
    .content-options {
        cursor: pointer;
        padding: 5px;
    }
    
    .filter-tabs {
        margin-bottom: 15px;
        overflow-x: auto;
        white-space: nowrap;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    .filter-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .filter-buttons {
        display: flex;
        gap: 10px;
        padding-bottom: 10px;
    }
    
    .filter-buttons a {
        background-color: #333;
        border: none;
        color: #aaa;
        padding: 5px 15px;
        border-radius: 4px;
        font-size: 14px;
        flex: 0 0 auto;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        position: relative;
        overflow: hidden;
    }
    
    .filter-buttons a.active {
        background-color: #e74c3c;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
    
    .filter-buttons a:hover {
        background-color: #444;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        cursor: pointer;
    }
    
    @media (max-width: 768px) {
        .filter-buttons a {
            padding: 5px 10px;
            font-size: 11px;
        }
    }
    /* Smooth transition for video grid */
    
    .video-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        margin-bottom: 30px;
        transition: all 0.3s ease-in-out;
        opacity: 1;
    }
    
    .video-grid.fade-out {
        opacity: 0;
        transform: translateY(10px);
    }
    
    .video-grid.fade-in {
        opacity: 1;
        transform: translateY(0);
    }
    
    .video-item {
        cursor: pointer;
        /* transition: all 0.3s ease; */
    }
    
    .video-thumbnail {
        position: relative;
        overflow: hidden;
        border-radius: 4px;
        aspect-ratio: 16 / 9;
        background-color: #222;
    }
    
    .video-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s;
    }
    
    .video-item:hover .video-thumbnail img {
        transform: scale(1.05);
    }
    
    .video-duration {
        position: absolute;
        bottom: 5px;
        right: 5px;
        background-color: rgba(0, 0, 0, 0.7);
        color: #fff;
        padding: 2px 5px;
        border-radius: 2px;
        font-size: 12px;
    }
    
    .live-badge {
        position: absolute;
        top: 5px;
        left: 5px;
        color: #fff;
        padding: 2px 5px;
        border-radius: 2px;
        font-size: 12px;
        z-index: 10;
    }
    
    @media (max-width: 768px) {
        .live-badge {
            padding: 3px 3px;
            font-size: 10px;
        }
    }
    
    .premium-badge {
        background-color: #f1c40f !important;
        color: #000000;
    }
    
    .trending-badge {
        background-color: #e74c3c !important;
        color: #ffffff;
    }
    
    .new-badge {
        background-color: #2ecc71 !important;
        color: #fff;
    }
    
    .video-info {
        padding: 10px 0;
    }
    
    .video-info h3 {
        font-size: 14px;
        font-weight: normal;
        margin-bottom: 5px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .video-meta {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #aaa;
        font-size: 12px;
    }
    /* Sponsored Section */
    
    .sponsored-section {
        margin-top: 30px;
    }
    
    .sponsored-section h3 {
        font-size: 18px;
        color: #aaa;
    }
    
    .sponsored-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .sponsored-item {
        cursor: pointer;
        transform: scale(1.05);
        padding: 5px;
        margin-top: 0;
        margin-bottom: 0;
    }
    
    .sponsored-thumbnail {
        position: relative;
        overflow: hidden;
        border-radius: 4px;
        aspect-ratio: 16 / 9;
        background-color: #222;
    }
    
    .sponsored-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s;
    }
    
    .sponsored-item:hover .sponsored-thumbnail img {
        transform: scale(1.05);
    }
    
    .sponsored-info {
        padding: 10px 0;
    }
    
    .sponsored-info h4 {
        font-size: 14px;
        font-weight: normal;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    /* Cookie Consent */
    
    .cookie-consent {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #222;
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #333;
        z-index: 1000;
    }
    
    .cookie-consent p {
        flex: 1;
        margin-right: 20px;
        font-size: 14px;
        color: #aaa;
    }
    
    .cookie-buttons {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .cookie-buttons a {
        color: #3498db;
        font-size: 14px;
    }
    
    .ok-button {
        background-color: #333;
        color: #fff;
        border: none;
        padding: 8px 15px;
        border-radius: 4px;
    }
    /* Profile section */
    
    .profile-container {
        padding: 20px 15px;
        background: #111;
        border-bottom: 1px solid #333;
    }
    
    .profile-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .profile-image {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #ff4081;
        background-color: #800080;
    }
    
    .profile-name1 {
        font-size: 2rem;
        font-weight: bold;
        align-items: center;
        gap: 8px;
        margin-bottom: 5px;
        text-align: center;
    }
    
    .country-flag {
        width: clamp(18px, 4vw, 24px);
        height: clamp(14px, 3vw, 18px);
        object-fit: contain;
    }
    
    .profile-stats {
        display: flex;
        gap: clamp(10px, 3vw, 20px);
        color: #ddd;
        font-size: clamp(0.8rem, 2vw, 1rem);
        flex-wrap: wrap;
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        gap: 5px;
        background: rgba(255, 255, 255, 0.05);
        padding: 5px 10px;
        border-radius: 20px;
        transition: background 0.2s;
    }
    
    .stat-item:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .profile-actions {
        display: flex;
        gap: clamp(8px, 2vw, 12px);
        margin-top: clamp(12px, 3vw, 20px);
        flex-wrap: wrap;
    }
    
    .subscribe-btn {
        background: #ff4081;
        color: white;
        border: none;
        padding: clamp(8px, 2vw, 12px) clamp(15px, 4vw, 25px);
        border-radius: 25px;
        font-weight: bold;
        flex: 1;
        min-width: 150px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: clamp(0.9rem, 2vw, 1rem);
    }
    
    .subscribe-btn:hover {
        background: #e03070;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(255, 64, 129, 0.3);
    }
    
    .action-btn {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        border: none;
        width: clamp(40px, 10vw, 50px);
        height: clamp(40px, 10vw, 50px);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .action-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }
    
    .premium-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: linear-gradient(45deg, #2196F3, #1976D2);
        color: white;
        border: none;
        padding: clamp(8px, 2vw, 12px) clamp(15px, 4vw, 25px);
        border-radius: 25px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
        flex: 2;
        min-width: 180px;
        font-size: clamp(0.9rem, 2vw, 1rem);
    }
    
    .premium-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    }
    
    .premium-btn i {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }
    /* Responsive adjustments */
    
    @media (max-width: 768px) {
        .profile-header {
            flex-direction: column;
            text-align: center;
        }
        .profile-info {
            text-align: center;
        }
        .profile-stats {
            justify-content: center;
        }
        .profile-actions {
            justify-content: center;
        }
        .profile-name1 {
            font-size: 1.5rem;
        }
    }
    
    @media (max-width: 480px) {
        .profile-actions {
            flex-direction: column;
        }
        .subscribe-btn,
        .premium-btn {
            width: 100%;
        }
        .action-btn {
            width: 100%;
            height: 45px;
            border-radius: 25px;
        }
    }
    /* Responsive Adjustments */
    
    @media (max-width: 1024px) {
        .content-container {
            flex-direction: column;
        }
        .sidebar {
            width: 100%;
        }
        .video-grid {
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        }
    }
    
    @media (max-width: 768px) {
        /* Header adjustments */
        .header-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        /* .header-main-row {
        display: none;
    } */
        .mobile-header {
            display: block;
        }
        .mobile-search-row {
            display: flex;
        }
        .header-toggle-btn {
            display: block;
        }
        .banner {
            flex-direction: column;
            text-align: center;
            padding: 20px;
        }
        .video-grid {
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        }
        .cookie-consent {
            flex-direction: column;
            gap: 15px;
        }
        .cookie-buttons {
            width: 100%;
            justify-content: space-between;
        }
        /* Mobile Sidebar Styles */
        .sidebar {
            position: fixed;
            top: 0;
            left: 0;
            height: 100vh;
            width: 280px;
            transform: translateX(-100%);
            border-radius: 0;
            overflow-y: auto;
            z-index: 1001;
        }
        .sidebar.active {
            transform: translateX(0);
            box-shadow: 5px 0 15px rgba(0, 0, 0, 0.5);
        }
        .sidebar-close {
            display: block;
        }
        .sidebar-auth {
            display: block;
        }
        body.sidebar-open::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
        }
        /* Live Profile Cards adjustments */
        .live-profiles-container {
            padding: 0 10px;
            gap: 10px;
        }
        .live-profile-card {
            width: 70px;
        }
        .profile-avatar {
            width: 60px;
            height: 60px;
        }
        .profile-name {
            font-size: 11px;
        }
    }
    /* Pagination */
    
    .pagination {
        margin: 30px 0;
        text-align: center;
        display: flex;
        justify-content: center;
    }
    
    .pagination-controls {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 5px;
        margin: 0 auto;
    }
    
    .pagination-btn {
        display: inline-block;
        padding: 8px 12px;
        margin: 0 2px;
        background-color: #333;
        color: #fff;
        text-decoration: none;
        border-radius: 4px;
        transition: background-color 0.3s;
    }
    
    .pagination-btn:hover {
        background-color: #555;
    }
    
    .pagination-btn.active {
        background-color: #e74c3c;
        color: #fff;
    }
    
    .pagination-dots {
        color: #aaa;
        padding: 0 5px;
    }
    /* Responsive adjustments for pagination */
    
    @media (max-width: 768px) {
        .pagination-controls {
            gap: 3px;
        }
        .pagination-btn {
            padding: 6px 10px;
            font-size: 16px;
        }
    }
    
    @media (max-width: 480px) {
        .pagination-controls {
            gap: 2px;
        }
        .pagination-btn {
            padding: 6px 10px;
            font-size: 14px;
            margin: 0 1px;
        }
        .pagination-dots {
            padding: 0 3px;
            font-size: 12px;
        }
    }
    /* No Videos Found Styles */
    
    .no-videos-found {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 40px 20px;
        width: 100%;
        grid-column: 1 / -1;
    }
    
    .no-videos-icon {
        font-size: 4rem;
        color: #e74c3c;
        margin-bottom: 20px;
    }
    
    .no-videos-found h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
        color: #fff;
    }
    
    .no-videos-found p {
        font-size: 1rem;
        margin-bottom: 20px;
        color: #aaa;
    }
    
    .no-videos-found .btn {
        padding: 10px 20px;
        background-color: #e74c3c;
        color: white;
        border: none;
        border-radius: 4px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
    }
    
    .no-videos-found .btn:hover {
        background-color: #c0392b;
    }
    /* No Results Design */
    
    .no-results {
        grid-column: 1 / -1;
        text-align: center;
        padding: 40px 20px;
        background-color: #1a1a1a;
        border-radius: 8px;
        margin: 20px 0;
    }
    
    .no-results-icon {
        font-size: 48px;
        color: #e74c3c;
        margin-bottom: 20px;
    }
    
    .no-results h3 {
        font-size: 24px;
        margin-bottom: 15px;
        color: #fff;
    }
    
    .no-results p {
        font-size: 16px;
        color: #aaa;
        margin-bottom: 10px;
    }
    
    .no-results .btn {
        display: inline-block;
        background-color: #e74c3c;
        color: #fff;
        padding: 10px 20px;
        border-radius: 4px;
        text-decoration: none;
        margin-top: 20px;
        transition: background-color 0.3s;
    }
    
    .no-results .btn:hover {
        background-color: #c0392b;
    }
    /* Loading indicator */
    
    .loading {
        text-align: center;
        padding: 20px;
        font-size: 18px;
        color: #aaa;
        grid-column: 1 / -1;
    }
    
    .loading::after {
        content: "";
        display: inline-block;
        width: 20px;
        height: 20px;
        border: 3px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        border-top-color: #fff;
        animation: spin 1s ease-in-out infinite;
        margin-left: 10px;
        vertical-align: middle;
    }
    
    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }
    /* Smooth transition for video grid */
    
    .video-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
        margin-bottom: 30px;
        transition: opacity 0.3s ease-in-out;
    }
    
    .video-grid.fade-out {
        opacity: 0;
    }
    
    .video-grid.fade-in {
        opacity: 1;
    }
    
    .video-item {
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .video-item:hover {
        transform: translateY(-5px);
    }
    
    .video-thumbnail {
        position: relative;
        overflow: hidden;
        border-radius: 4px;
        aspect-ratio: 16 / 9;
        background-color: #222;
    }
    
    .video-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s;
    }
    
    .video-item:hover .video-thumbnail img {
        transform: scale(1.05);
    }
    
    .video-duration {
        position: absolute;
        bottom: 5px;
        right: 5px;
        background-color: rgba(0, 0, 0, 0.7);
        color: #fff;
        padding: 2px 5px;
        border-radius: 2px;
        font-size: 12px;
    }
    /* Banner Ads Section */
    
    .banner-ads-section {
        background-color: #1a1a1a;
        padding: 15px 0;
        border-bottom: 1px solid #333;
        max-height: 200px;
    }
    
    .banner-slider-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        overflow: hidden;
    }
    
    .banner-slider {
        position: relative;
        width: 100%;
        height: 100px;
        overflow: hidden;
    }
    
    .banner-slide {
        display: none;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
    }
    
    .banner-slide.active {
        display: block;
        opacity: 1;
    }
    
    .banner-slide a {
        display: block;
        width: 100%;
        height: 100%;
    }
    
    .banner-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 4px;
        transition: transform 0.3s;
    }
    
    .banner-img:hover {
        transform: scale(1.02);
    }
    
    .slider-dots {
        text-align: center;
        padding: 10px 0;
    }
    
    .dot {
        cursor: pointer;
        height: 12px;
        width: 12px;
        margin: 0 5px;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.3s ease;
    }
    
    .dot.active,
    .dot:hover {
        background-color: #e74c3c;
    }
    /* Responsive adjustments for banner ads */
    
    @media (max-width: 768px) {
        .banner-ads-section {
            padding: 10px 0;
            max-height: 120px;
        }
        .banner-ads-container {
            padding: 0 15px;
        }
        .banner-img {
            max-height: 100px;
            max-width: 100%;
            border-radius: 2px;
        }
    }
    
    @media (max-width: 480px) {
        .banner-ads-section {
            padding: 8px 0;
            max-height: 80px;
        }
        .banner-ads-container {
            padding: 0 10px;
            max-height: 60px;
        }
        .banner-img {
            max-height: 60px;
            max-width: 100%;
        }
    }
    /* Cookie Consent */
    
    .cookie-consent {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #222;
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #333;
        z-index: 1000;
    }
    
    .cookie-consent p {
        flex: 1;
        margin-right: 20px;
        font-size: 14px;
        color: #aaa;
    }
    
    .cookie-buttons {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .cookie-buttons a {
        color: #3498db;
        font-size: 14px;
    }
    
    .ok-button {
        background-color: #333;
        color: #fff;
        border: none;
        padding: 8px 15px;
        border-radius: 4px;
    }
    /* Profile section */
    
    .profile-container {
        padding: 20px 15px;
        background: #111;
        border-bottom: 1px solid #333;
    }
    
    .profile-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .profile-image {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #ff4081;
        background-color: #800080;
    }
    
    .profile-name1 {
        font-size: 2rem;
        font-weight: bold;
        align-items: center;
        gap: 8px;
        margin-bottom: 5px;
        text-align: center;
    }
    
    .country-flag {
        width: clamp(18px, 4vw, 24px);
        height: clamp(14px, 3vw, 18px);
        object-fit: contain;
    }
    
    .profile-stats {
        display: flex;
        gap: clamp(10px, 3vw, 20px);
        color: #ddd;
        font-size: clamp(0.8rem, 2vw, 1rem);
        flex-wrap: wrap;
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        gap: 5px;
        background: rgba(255, 255, 255, 0.05);
        padding: 5px 10px;
        border-radius: 20px;
        transition: background 0.2s;
    }
    
    .stat-item:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .profile-actions {
        display: flex;
        gap: clamp(8px, 2vw, 12px);
        margin-top: clamp(12px, 3vw, 20px);
        flex-wrap: wrap;
    }
    
    .subscribe-btn {
        background: #ff4081;
        color: white;
        border: none;
        padding: clamp(8px, 2vw, 12px) clamp(15px, 4vw, 25px);
        border-radius: 25px;
        font-weight: bold;
        flex: 1;
        min-width: 150px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: clamp(0.9rem, 2vw, 1rem);
    }
    
    .subscribe-btn:hover {
        background: #e03070;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(255, 64, 129, 0.3);
    }
    
    .action-btn {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        border: none;
        width: clamp(40px, 10vw, 50px);
        height: clamp(40px, 10vw, 50px);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .action-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }
    
    .premium-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: linear-gradient(45deg, #2196F3, #1976D2);
        color: white;
        border: none;
        padding: clamp(8px, 2vw, 12px) clamp(15px, 4vw, 25px);
        border-radius: 25px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
        flex: 2;
        min-width: 180px;
        font-size: clamp(0.9rem, 2vw, 1rem);
    }
    
    .premium-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    }
    
    .premium-btn i {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }
    /* Responsive adjustments */
    
    @media (max-width: 768px) {
        .profile-header {
            flex-direction: column;
            text-align: center;
        }
        .profile-info {
            text-align: center;
        }
        .profile-stats {
            justify-content: center;
        }
        .profile-actions {
            justify-content: center;
        }
        .profile-name1 {
            font-size: 1.5rem;
        }
    }
    
    @media (max-width: 480px) {
        .profile-actions {
            flex-direction: column;
        }
        .subscribe-btn,
        .premium-btn {
            width: 100%;
        }
        .action-btn {
            width: 100%;
            height: 45px;
            border-radius: 25px;
        }
    }
    /* Responsive Adjustments */
    
    @media (max-width: 1024px) {
        .content-container {
            flex-direction: column;
        }
        .sidebar {
            width: 100%;
        }
        .video-grid {
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        }
    }
    
    @media (max-width: 768px) {
        /* Header adjustments */
        .header-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        /* .header-main-row {
        display: none;
    } */
        .mobile-header {
            display: block;
        }
        .mobile-search-row {
            display: flex;
        }
        .header-toggle-btn {
            display: block;
        }
        .banner {
            flex-direction: column;
            text-align: center;
            padding: 20px;
        }
        .video-grid {
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        }
        .cookie-consent {
            flex-direction: column;
            gap: 15px;
        }
        .cookie-buttons {
            width: 100%;
            justify-content: space-between;
        }
        /* Mobile Sidebar Styles */
        .sidebar {
            position: fixed;
            top: 0;
            left: 0;
            height: 100vh;
            width: 280px;
            transform: translateX(-100%);
            border-radius: 0;
            overflow-y: auto;
            z-index: 1001;
        }
        .sidebar.active {
            transform: translateX(0);
            box-shadow: 5px 0 15px rgba(0, 0, 0, 0.5);
        }
        .sidebar-close {
            display: block;
        }
        .sidebar-auth {
            display: block;
        }
        body.sidebar-open::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
        }
        /* Live Profile Cards adjustments */
        .live-profiles-container {
            padding: 0 10px;
            gap: 10px;
        }
        .live-profile-card {
            width: 70px;
        }
        .profile-avatar {
            width: 60px;
            height: 60px;
        }
        .profile-name {
            font-size: 11px;
        }
    }
    /* Hashtag Section */
    
    .hashtag-section {
        margin: 30px 0;
        text-align: center;
    }
    
    .hashtag-section h3 {
        color: #fff;
        margin-bottom: 15px;
        font-size: 18px;
    }
    
    .hashtag-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .hashtag-item {
        display: inline-block;
        background-color: #333;
        color: #fff;
        padding: 6px 12px;
        border-radius: 20px;
        text-decoration: none;
        font-size: 14px;
        transition: all 0.3s ease;
    }
    
    .hashtag-item:hover {
        background-color: #e74c3c;
        transform: translateY(-2px);
    }
    /* Responsive adjustments for hashtag section */
    
    @media (max-width: 768px) {
        .hashtag-container {
            gap: 8px;
        }
        .hashtag-item {
            padding: 5px 10px;
            font-size: 13px;
        }
    }
    
    @media (max-width: 480px) {
        .hashtag-container {
            gap: 6px;
        }
        .hashtag-item {
            padding: 4px 8px;
            font-size: 12px;
        }
    }
    /* Loading indicator */
    /* Video Info Section */
    
    .video-info-section {
        background: linear-gradient(135deg, #1a1a1a 0%, #222222 100%);
        border-radius: 8px;
        padding: 20px;
        margin: 20px 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        border: 1px solid #333;
    }
    
    .video-details {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .video-title {
        font-size: 24px;
        font-weight: 600;
        color: #fff;
        margin: 0;
        line-height: 1.3;
    }
    
    .video-meta-info {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        padding: 15px 0;
        border-top: 1px solid #333;
        border-bottom: 1px solid #333;
    }
    
    .video-meta-info span {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        color: #aaa;
    }
    
    .video-meta-info i {
        color: #e74c3c;
    }
    
    .video-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }
    
    .category-tag {
        background-color: #333;
        color: #fff;
        font-size: 12px;
        padding: 4px 12px;
        border-radius: 20px;
    }
    /* Actresses Container Styles */
    
    .actresses-container {
        border-radius: 12px;
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .actresses-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .actress-card {
        background: linear-gradient(145deg, #2c2c2c, #1a1a1a);
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        border: 1px solid #333;
    }
    
    .actress-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 15px 35px rgba(231, 76, 60, 0.3);
        z-index: 10;
    }
    
    .actress-card-image {
        position: relative;
        height: 180px;
        overflow: hidden;
    }
    
    .actress-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .actress-card:hover .actress-card-image img {
        transform: scale(1.1);
    }
    
    .default-actress-image {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(45deg, #e74c3c, #c0392b);
        color: white;
        font-size: 4rem;
    }
    
    .actress-status {
        position: absolute;
        top: 15px;
        right: 15px;
        background-color: rgba(46, 204, 113, 0.95);
        color: white;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.85rem;
        display: flex;
        align-items: center;
        gap: 6px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(5px);
    }
    
    .actress-status i {
        font-size: 0.7rem;
    }
    
    .actress-card-content {
        padding: 20px;
    }
    
    .actress-name {
        color: #fff;
        font-size: 0.9rem;
        margin-bottom: 15px;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.5px;
    }
    
    .actress-stats {
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;
        padding: 15px 0;
        border-top: 1px solid #333;
        border-bottom: 1px solid #333;
    }
    
    .stat {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        color: #aaa;
        font-size: 0.9rem;
    }
    
    .stat i {
        color: #e74c3c;
        font-size: 1.2rem;
    }
    
    .chat-button {
        width: 100%;
        padding: 14px;
        background: linear-gradient(45deg, #e74c3c, #c0392b);
        color: white;
        border: none;
        border-radius: 30px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-size: 1rem;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    }
    
    .chat-button:hover {
        background: linear-gradient(45deg, #c0392b, #e74c3c);
        transform: translateY(-3px);
        box-shadow: 0 7px 20px rgba(231, 76, 60, 0.5);
    }
    
    .chat-button:active {
        transform: translateY(-1px);
    }
    
    .no-actresses-message {
        grid-column: 1 / -1;
        text-align: center;
        padding: 60px 20px;
        color: #777;
        background: #222;
        border-radius: 10px;
    }
    
    .no-actresses-message i {
        font-size: 5rem;
        margin-bottom: 25px;
        color: #333;
    }
    
    .no-actresses-message h3 {
        color: #aaa;
        margin-bottom: 15px;
        font-size: 1.8rem;
    }
    
    .no-actresses-message p {
        color: #555;
        font-size: 1.1rem;
    }
    /* Chat Coming Soon Section */