
        /* --- Global Styles --- */
        :root {
            --bg-primary: #222534;
            --bg-secondary: #1a1c28;
            --bg-tertiary: #252830;
            --text-primary: #FFFFFF;
            --text-secondary: #AAAAAA;
            --accent-color: #4A90E2; /* A subtle blue for highlights */
        }
		
		@font-face {
  font-family: 'Google Sans Flex';
  font-style: normal;
  font-weight: 1 1000;
  font-stretch: 100%;
  font-display: swap; 
  src: url(/fonts/google-sans.woff2) format('woff2');
}

        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
					font-family: "Google Sans Flex";
					font-display: block; /* Hides text until font is ready (Prevents FOUT) */
        }
		 button {
            background-color: var(--bg-primary);
            color: var(--text-primary);
			font-family: "Google Sans Flex";
        }
		
		        * {
					  -webkit-tap-highlight-color: transparent;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
		
		a {
		text-decoration:none;
		color: inherit;
		}

        /* --- Fixed Navbar --- */
/* Update your existing .navbar class */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding-left: 0.5rem;
    padding-right: 0.7rem;
    background-color: var(--bg-secondary);
    border-bottom: 4px solid #272b3d;
    z-index: 1000;
    height: 70px; /* Or 60px on mobile */
    display: flex;
    align-items: center;
    
    /* --- THE FIX --- */
    overflow: hidden; /* Clips the search bar so it doesn't create scrollbars */
	box-shadow: rgb(0 0 0 / 5%) 6px 10px 5px 0px;
}

.gradient {
  background-image: linear-gradient(
    90deg,
    hsl(240deg 2% 88%) 0%,
    hsl(224deg 36% 79%) 14%,
    hsl(212deg 54% 66%) 29%,
    hsl(238deg 45% 68%) 43%,
    hsl(320deg 43% 60%) 57%,
    hsl(3deg 65% 63%) 71%,
    hsl(47deg 51% 50%) 86%,
    hsl(143deg 59% 60%) 100%
  );
  height: 3px;
  opacity: 0.8;
}

.swipe-ico{
	  display: none;
	position:absolute;left:50%;transform: translate(-50%, -50%);bottom:-20px;
}
.swipe-ico-svg{
	width: 39px;height: 40px;fill: #ccc;opacity:0.85;
}

/* --- Age Verification Popup --- */
.age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999; /* Sit on top of everything */
    background-color: rgba(24, 27, 42, 0.85); /* --bg-primary with opacity */
    backdrop-filter: blur(20px); /* This creates the blur effect */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.age-modal {
    background-color: var(--bg-secondary);
    border: 1px solid var(--bg-tertiary);
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: fadeUp 0.4s ease-out;
}

.blur{
	    backdrop-filter: blur(20px); /* This creates the blur effect */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
	
}

.age-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.age-modal h2 {
    color: var(--text-primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.age-modal p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex: 1;
}

.age-btn.primary {
    background-color: var(--accent-color);
    color: #fff;
}

.age-btn.primary:hover {
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
    transform: translateY(-2px);
}

.age-btn.secondary {
    background-color: var(--bg-tertiary);
    color: var(--text-secondary);
    border: 1px solid rgba(255,255,255,0.05);
}

.age-btn.secondary:hover {
    background-color: #3a3f4b;
    color: #fff;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .age-buttons {
        flex-direction: column-reverse; /* Put 'Enter' on top on mobile if desired, or keep row */
    }
    .age-modal {
        padding: 1.5rem;
    }
}

/* 1. The Full Screen Overlay */
.menu-collapse {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 10001;
  display:none;
  /* Modern Touch: Glassmorphism Blur */
  background-color: rgb(0 0 0 / 40%);
  backdrop-filter: blur(5px); 
  -webkit-backdrop-filter: blur(5px);

}


/* 2. The Dark Menu Bar */
.menu-inner {
  background-color: #1e212d;
  width: 100%;
  /* Shadow for depth */
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);

}

.menu-collapse.is-open .menu-inner {
  transform: translateY(0);
}

.menu-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 10px 0; /* Add breathing room */
  display: flex;
  flex-direction: column; /* Stack items on mobile */
}

/* 3. Link Styling */
.menu-collapse a {
  display: block;
  padding: 12px 24px; /* More clickable space */
  margin: 4px 10px; /* Spacing between items */
  color: #fff;
  text-decoration: none;
  font-family: system-ui, -apple-system, sans-serif; /* Modern font stack */
  font-size: 1.1rem;
  border-radius: 8px; /* Soft rounded corners */
  transition: all 0.2s ease;
  border: none; /* Removed the old harsh border */
}

/* Hover Effect */
.menu-collapse a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateX(5px); /* Subtle movement */
}

/* 4. Icon & Text Alignment */
.ico {
  display: flex;
  align-items: center;
  gap: 12px; /* Modern spacing method */
}



.ico img {
  width: 24px;
  height: 24px;
  opacity: 0.9;
}

/* Special styling for the 'Menu' label */
.menu-header {
  pointer-events: none; /* Optional: Makes the title unclickable */
}
.menu-header .ico {
  color: #587d9e;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 5px;
}


/* --- Hamburger Menu (3 Divs Method) --- */
.menu-btn {
	display:flex;
flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height:18px;
    cursor: pointer;
}

.menu-btn .bar {
width: 100%;
    height: 4px;
    border-radius: 1px;
    transition: background-color 0.2s ease;
	background-color: #dedfe1;
}

/* Hover Effect */
.menu-btn:hover .bar {
    background-color: var(--accent-color);
}

/* --- Mobile Search Styles --- */
/* --- UNIFIED SEARCH BAR --- */

/* 1. Desktop State (Default) */
.search-container {
    flex-grow: 1; /* Take up available space */
    max-width: 500px; /* But don't get too wide */
    margin: 0 2rem; /* Spacing from logo and icons */
    position: relative;
	display: flex
;
}

.search-container form {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.search-container input {
    width: 100%;
    background-color: var(--bg-primary);
    border: 1px solid var(--bg-tertiary);
    color: var(--text-primary);
    padding: 10px 40px 10px 20px; /* Right padding for the icon */
    border-radius: 50px;
    outline: none;
    font-size: 1.1rem;
}



/* The Magnifying Glass inside the input (Desktop) */
.desktop-search-btn {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.1rem;
    cursor: pointer;
}

/* The Close Button (Hidden on Desktop) */
.close-search {
    display: none;
}

/* Mobile Trigger Icon (Hidden on Desktop) */
.mobile-search-trigger {
    display: none; 
}




        .nav-left {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .hamburger-menu {
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-secondary);
        }
		
        .header_wrap {
display: flex
;
    width: 100%;
    justify-content: space-between;
    max-width: 1600px;
    margin: 0 auto;
        }
		
		        .subtext {
display: flex
;
    flex-direction: column;
    font-size: 12px;
        }
				        .subtext_style {
		position: absolute;
    bottom: 10px;
    font-style: italic;
    color: #7a7d85;
    font-weight: bold;
						}

        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.35rem;
			padding-left: 0.5rem;
								font-family: Segoe UI;
        }

        .logo-svg {
			width:35px;
        }

        .logo-text {
font-size: 1.8rem;
    font-weight: bold;
    color: #5c9dd5;
    margin-top: -10px;
    
        }
		
		
		.logo_x_accent{
			
			color: #e1e1e1;
    margin-right: 0px;
			
		}
		
		.logo_v_accent{
font-style: italic;
		font-weight: bold;
			
		}
		
		
		.duration{
		position: absolute;
		bottom: 10px;
		right: 10px;
		}

        .search-bar {
            display: flex;
            align-items: center;
            background-color: var(--bg-primary);
            border: 1px solid var(--bg-tertiary);
            border-radius: 20px;
            padding: 0.5rem 1rem;
            width: 40%;
            max-width: 500px;
        }

        .search-bar input {
            flex-grow: 1;
            background: none;
            border: none;
            outline: none;
            color: var(--text-primary);
            font-size: 0.9rem;
        }

        .search-bar .search-icon {
            font-size: 1rem;
            color: var(--text-secondary);
            margin-left: 0.5rem;
        }

        .user-icons {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .user-icons .icon {
            font-size: 1.25rem;
            color: var(--text-secondary);
            cursor: pointer;
        }

        /* --- Main Content --- */
        .main-content {
            padding: 1.5rem 1rem 1rem 1rem; /* Start content below fixed navbar */
            max-width: 1600px;
            margin: 0 auto;
	
        }

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

h2{
margin-top:1.3rem;
	
}

.content-header h1 { font-size: 2rem; font-weight: 700; margin-bottom: 0.25rem; }
.content-header p { color: var(--text-secondary); font-size: 0.9rem; }

/* Chip Style Filters */
.filter-bar { display: flex; gap: 10px; }

/* --- Custom Dropdown Sort --- */
.filter-dropdown-container {
    position: relative;
    display: inline-block;
	margin-left: auto;
}

/* The Button (Looks like your active filter) */
.filter-dropdown-trigger {
    background-color: var(--bg-secondary); /* Dark background */
    color: #fff;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    /* Optional: Add the blue shadow to make it pop */
    box-shadow: 0 4px 12px rgba(0,0,0,0.2); 
}

.filter-dropdown-trigger:hover {
    background-color: var(--bg-tertiary);
}

/* The Arrow */
.filter-dropdown-trigger .arrow {
    font-size: 0.8rem;
    color: var(--accent-color); /* Blue arrow */
}

/* The Hidden Menu */
.filter-dropdown-menu {
    display: none; /* Hidden by default */
    position: absolute;
    right: 0;
    top: 110%; /* Just below the button */
    background-color: var(--bg-secondary);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
    border-radius: 8px;
    border: 1px solid var(--bg-tertiary);
    z-index: 100;
    overflow: hidden;
}

/* Show the menu when JS toggles this class */
.filter-dropdown-menu.show {
    display: block;
    animation: fadeIn 0.2s;
}

/* Menu Items */
.dropdown-item {
    color: var(--text-secondary);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.dropdown-item:hover {
    background-color: var(--bg-tertiary);
    color: #fff;
}

/* Highlight the currently selected item in the list */
.dropdown-item.active {
background-color: rgb(64 103 141);
    color: #ffffff;
    font-weight: bold;
}

/* Small animation for smooth opening */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.filter-link {
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    background-color: #15171e;
    color: #9ca3af;
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.filter-link:hover {
    background-color: #1e212b;
    color: #fff;
    transform: translateY(-2px);
}

.filter-link.active {
    background-color: #3b82f6;
    color: #fff;
    box-shadow: 0 4px 12px #3b82f666;
    border-color: transparent;
}
        /* --- Video Grid --- */
        .video-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.6rem;
			padding-top: 1rem;
        }

        .video-card {
            background-color: var(--bg-secondary);
            border-radius: 3px;
            overflow: hidden;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            cursor: pointer;
			margin-bottom: 0.5rem;
        }

/* --- Pagination --- */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem; /* Gap between buttons */
    margin-top: 2.5rem;
    padding-bottom: 2rem;
    flex-wrap: nowrap; /* Try to keep them on one line */
}

.pagination a {
    text-decoration: none;
}

.page-btn {
    background-color: #14151e;
    color: var(--text-primary);
    border: none;
    padding: 0.9rem 1.9rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    min-width: 40px; /* Ensure numbers look uniform */
    text-align: center;
}

.page-btn:hover {
    background-color: #3a3f4b;
}

.page-btn:disabled {
    background-color: var(--bg-secondary);
    color: var(--text-secondary);
    opacity: 0.6;
	padding: 0.5rem;
}
.page-btn.disabled {
    background-color: var(--bg-secondary);
    color: var(--text-secondary);
    opacity: 0.6;
	padding: 0.5rem;
}

.page-btn.active {
    background-color: var(--accent-color);
    color: white;
    font-weight: bold;
    pointer-events: none;
}


        .thumbnail {
            width: 100%;
            aspect-ratio: 16 / 9;
            background-color: #333;
            /* Placeholder image */
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }
		
		/* ADD ALL THESE NEW STYLES */
        .thumbnail-img,
        .thumbnail-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover; /* Fills the container, cropping if needed */
            transition: opacity 0.2s ease-in-out;
        }

        .thumbnail-img {
            opacity: 1; /* Visible by default */
        }

        .thumbnail-video {
            opacity: 0; /* Hidden by default */
        }

        .video-card:hover .thumbnail-img {
            opacity: 0; /* Hide image on hover */
        }

        .video-card:hover .thumbnail-video {
            opacity: 1; /* Show video on hover */
        }
		
/* The video needs to cover the image completely */
.preview-video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 5; /* Above the image */
    display: block;
	opacity: 0;
    transition: opacity 400ms ease-in-out;
}

.preview-video-player.visible {
    opacity: 1;
}

.loading-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background-color: #4A90E2; /* YouTube red style, change as needed */
    width: 0%;
    z-index: 10;
    transition: width 0.15s linear;
}

/* Animation class added via JS */
.loading-bar.animating {
    width: 100%;
    transition: width 300ms linear; /* Syncs with the JS delay */
}

        .video-info {
            padding: 1rem;
        }

        .video-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            min-height: 2.4em;
        }

        .video-details {
display: flex
;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #afafaf;
        }
        
        .video-stats {
display: flex
;
    gap: 0.5rem;
    flex-wrap: wrap;
    background-color: #1d202d;
    border-radius: 10px;
    padding: 3px 10px 3px 0;
	align-items: center;
        }
		
		.video-stats-span {
			align-items: center;
			display: flex;
			font-weight: bold;
    letter-spacing: 0.5px;
    color: #3b7ce7;

        }

        .hd-badge {
            background-color: #1a1d23;
            color: #aaaaaa;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 500;
        }
		 .badge {
           background-color: rgb(0 0 0 / 50%);
            color: #f3f3f3;
            padding: 2px 4px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 500;
			z-index: 1;
        }
		
				 .trending-badge {
   background-color: #1a1c28;
    font-variant: all-small-caps;
    display: flex;
    font-weight: bold;
    text-shadow: 1px 1px #00000052;
    align-items: center;
    padding: 0.15rem 0.3rem 0.15rem 0.15rem;
	font-size: 0.8rem;
	color: #f3f3f3;
        }

        /* --- Pagination --- */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-top: 2.5rem;
            padding-bottom: 2rem;
        }



        .page-btn:hover {
            background-color: #3a3f4b;
        }

        .page-btn:disabled {
            background-color: var(--bg-secondary);
            color: var(--text-secondary);
            cursor: not-allowed;
        }
		
		
		
		/* Categories Page Specific Styles */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* 3 per row */
            gap: 1.5rem;
            margin-top: 1rem;
        }

        .category-card {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            aspect-ratio: 16 / 9; /* Standard video shape */
            text-decoration: none;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .category-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }

        /* The Background Image */
        .category-bg {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        
        .category-card:hover .category-bg {
            transform: scale(1.05); /* Slight zoom on hover */
        }

        /* The Dark Overlay & Text */
        .category-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 1rem;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            height: 100%;
        }

        .cat-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.8);
        }

        .cat-count {
            font-size: 0.9rem;
            color: #ccc;
            font-weight: 500;
        }
		
		/* --- FOOTER STYLES --- */
.site-footer {
    background-color: var(--bg-secondary); /* Darker background */
    border-top: 1px solid var(--bg-tertiary);
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem; /* Push it away from content */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Brand Section */
.footer-brand .footer-slogan {
    color: var(--text-secondary);
    font-size: 0.9rem;

}

/* Links Section */
.footer-nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: var(--accent-color); /* Matches your orange/red accent */
}

/* Bottom Disclaimer Section */
.footer-bottom {
    max-width: 1200px;
    margin: 1.5rem auto 0;
    text-align: center;
}

.disclaimer-text {
    font-size: 0.75rem;
    color: #555; /* Very subtle text */
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto 1rem;
}

.copyright {
    font-size: 0.8rem;
    color: var(--text-secondary);
    opacity: 0.6;
}


		
	
		

        /* --- Responsive Design --- */
        @media (max-width: 1200px) {
            .video-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .search-bar {
                display: none; /* Hide search on smaller screens */
            }
        }

        @media (max-width: 768px) {
			
						    .swipe-ico {
display:block;
    }
			
			    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-nav {
        justify-content: center;
        gap: 1rem;
    }
			
            .video-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .search-bar {
                display: none;
            }
            .nav-left {
                width: 100%;
                justify-content: space-between;
            }
			
			.category-grid {
                grid-template-columns: repeat(2, 1fr); /* 2 per row on tablet */
            }
		
    
    /* 1. Show the trigger icon */
    .mobile-search-trigger {
display: block;
        cursor: pointer;
        background-color: #191b26;
		color: #e0e0e1;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        position: relative;
    }
    .mobile-search-trigger:hover { color: #fff; }

    /* 2. Transform .search-container into the Overlay */
    .search-container {
        position: absolute; /* Take it out of the flow */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        max-width: none;
        background-color: var(--bg-secondary);
        z-index: 2000;
        padding: 0 1rem;
        
        display: flex; /* Center the form vertically */
        align-items: center;

        /* Hide it by default */
        visibility: hidden;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
    }

    /* 3. The "Open" Class */
    .search-container.open {
        visibility: visible;
        transform: translateX(0);
    }

    /* 4. Adjust Input for Mobile */
    .search-container input {
        border-radius: 20px;
        background-color: var(--bg-primary);
        padding-right: 10px; /* Reset padding */
    }

    /* 5. Hide the Desktop Search Icon (Magnifying glass inside input) */
    .desktop-search-btn {
        display: none;
    }

    /* 6. Show the Close (X) Button */
    .close-search {
        display: block;
        background: none;
        border: none;
        color: var(--text-secondary);
        font-size: 2rem;
        margin-left: 10px;
        cursor: pointer;
        line-height: 1;
    }
    
    /* Hide Logo/Icons when search is open? (Optional, z-index handles it usually) */

			
			
        }

        @media (max-width: 480px) {
            .video-grid {
                grid-template-columns: 1fr; /* Single column on mobile */
            }
            .main-content {
                padding: 1.5rem 0.5rem 1rem 0.5rem;
            }
			
			    .pagination {
        gap: 0.25rem; /* Smaller gap on mobile */
		flex-flow: wrap;
    }
	.category-grid {
                grid-template-columns: 1fr; /* 1 per row on mobile */
            }

    .page-btn {
        padding: 0.5rem 0.5rem; /* Smaller buttons */
        font-size: 0.85rem;       /* Smaller text */
        min-width: 45px;          /* Allow buttons to be narrower */
        height: 45px;             /* Fixed height for touch targets */
        display: flex;            /* Center text perfectly */
        align-items: center;
        justify-content: center;
    }
	    .filter-bar { overflow-x: auto; padding-bottom: 10px; width: 100%; }
    .filter-link { white-space: nowrap; flex-shrink: 0; font-size: 0.8rem; }
	
	.navbar {
    height: 60px;
	padding-left: 0rem;

}

.content-header h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.logo-svg {
    width: 30px;
}
.logo-text {
	font-size: 1.4rem;
}

.subtext_style {
	bottom: 8px;
	font-size: 0.7rem;
}

        }
		
