:root {
    --primary-bg: #121212;
    --secondary-bg: #1a1a1a;
    --card-bg: #2a2a2a;
    --text-color: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --accent-color: #ff6b4a;
    --accent-orange: #ff6b4a;
    --accent-color-hover: #ff8c42;
    --primary-color: #ff6b4a;
    --primary-hover: #ff8c42;
    --border-color: #444444;
    --hover-color: #333333;
    --muted-text: #999;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--primary-bg);
    background-image: 
        radial-gradient(circle at 25% 25%, #ff6b4a15 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, #ff6b4a15 0%, transparent 50%);
    background-attachment: fixed;
    overflow-x: hidden;
}


.no-scroll {
    overflow: hidden;
}


.site-header {
    background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
    padding: 1.5rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.site-logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 107, 74, 0.3));
}

.site-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.accent-text {
    color: var(--accent-orange);
}


.site-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.category-header {
    text-align: center;
    margin-bottom: 2rem;
}

.category-header h1,
.category-header h2 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.category-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}


.popular-categories {
    margin: 2rem 0;
    padding: 2rem 0;
    background: #1a1a1a;
    border-radius: 12px;
}

.popular-categories .category-header {
    text-align: center;
    margin-bottom: 2rem;
}

.popular-categories .category-header h2 {
    color: #ff6b4a;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.popular-categories .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    padding: 0 1rem;
}


.card.group {
    background: #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #444;
}

.card.group:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 74, 0.2);
}

.card.group .item-link {
    position: relative;
    display: block;
    overflow: hidden;
}

.card.group .item-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card.group:hover .item-image {
    transform: scale(1.05);
}

.card.group .badge {
    position: absolute;
    left: 8px;
    bottom: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: bold;
}

.card.group .collection-title {
    padding: 1rem;
    display: block;
    text-decoration: none;
}

.card.group h3 {
    color: #ff6b4a;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
}


.quick-nav {
    margin: 3rem 0;
}

.nav-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.nav-box {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #444;
}

.nav-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 74, 0.2);
}

.nav-box a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.nav-box i {
    font-size: 3rem;
    color: #ff6b4a;
    margin-bottom: 1rem;
}

.nav-box h3 {
    color: white;
    font-size: 1.5rem;
    margin: 1rem 0 0.5rem 0;
    font-weight: 600;
}

.nav-box p {
    color: #999;
    font-size: 0.95rem;
    margin: 0;
}


.latest-videos {
    margin-top: 3rem;
}

.latest-videos .category-header h2 {
    color: #ff6b4a;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}


.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}


.card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 74, 0.2);
    border-color: var(--accent-orange);
}

.item-link {
    display: block;
    position: relative;
    overflow: hidden;
}

.item-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .item-image {
    transform: scale(1.05);
}

.item-meta-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 1rem;
}

.badge {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.font-bold {
    font-weight: 700;
}

.italic {
    font-style: italic;
}


.item-footer {
    padding: 1rem;
    position: relative;
}

.item-title-container {
    margin-bottom: 0.75rem;
}

.item-title {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.item-title:hover {
    color: var(--accent-orange);
}


.item-pornstars,
.item-channels {
    margin: 0.5rem 0;
}

.item-pornstars .pornstar-link,
.item-channels .channel-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-size: 0.9rem;
    margin-right: 0.75rem;
    transition: color 0.3s ease;
}

.item-pornstars .pornstar-link {
  display: inline-block;
  width: fit-content;
  max-width: 45%; 
  max-height: 25%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}

.item-channels .channel-link {
  display: inline-block;
  width: fit-content;
  max-width: 45%; 
  max-height: 25%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}

.item-pornstars .pornstar-link:hover,
.item-channels .channel-link:hover {
    color: #ff8a6b;
    text-decoration: underline;
}

.item-metadata {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
}

.views {
    color: var(--text-secondary);
    font-size: 0.9rem;
}


.flag-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: var(--text-secondary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.flag-button:hover {
    background: rgba(255, 107, 74, 0.2);
    color: var(--accent-orange);
    transform: scale(1.1);
}

.flag-icon {
    font-size: 0.9rem;
}


.report-box {
    position: absolute;
    top: 50px;
    right: 0;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    width: 200px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10;
}

.report-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.report-title {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.report-button {
    width: 100%;
    background: var(--accent-orange);
    color: white;
    border: none;
    padding: 0.6rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 0.9rem;
}

.report-button:hover {
    background: #e55a43;
}


.alphabet-navigation-container {
    width: 100%;
    background-color: rgba(30, 30, 30, 0.95);
    padding: 8px 0;
    margin-bottom: 20px;
    position: relative;
    z-index: 100;
}

.alphabet-navigation-container.sticky {
    position: sticky;
    top: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.alphabet-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    padding: 5px 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.letter-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-weight: bold;
    cursor: pointer;
    margin: 2px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.2s ease;
}

.letter-link.active {
    background-color: var(--accent-orange);
    color: white;
}

.letter-link.active:hover {
    background-color: var(--accent-color-hover);
}

.letter-link.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.letter-link.current {
    background-color: var(--accent-color-hover);
    color: white;
}


.letter-groups-container {
    width: 100%;
    padding-top: 10px;
    clear: both;
    display: block;
}

.letter-group {
    margin-bottom: 30px;
    padding-top: 10px;
    width: 100%;
}

.letter-header {
    font-size: 24px;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--accent-orange);
    color: var(--text-color);
    width: 100%;
}


.category-grid, 
.pornstar-grid, 
.channel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    width: 100%;
}

@media (min-width: 576px) {
    .category-grid, 
    .pornstar-grid, 
    .channel-grid {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    }
}

@media (min-width: 768px) {
    .category-grid, 
    .pornstar-grid, 
    .channel-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (min-width: 992px) {
    .category-grid, 
    .pornstar-grid, 
    .channel-grid {
        grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    }
}

@media (min-width: 1200px) {
    .category-grid, 
    .pornstar-grid, 
    .channel-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

.category-item,
.pornstar-item,
.channel-item {
    background: var(--card-bg);
    border-radius: 6px;
    padding: 8px 10px;
    transition: all 0.2s ease;
    font-size: 13px;
    border: 1px solid var(--border-color);
}

.category-item:hover,
.pornstar-item:hover,
.channel-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #3a3a3a;
    border-color: var(--accent-orange);
}

.category-link,
.pornstar-link,
.channel-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    gap: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.category-name,
.pornstar-name,
.channel-name {
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category-count,
.pornstar-count,
.channel-count {
    color: var(--muted-text);
    font-size: 0.85em;
    white-space: nowrap;
}


.pagination-info {
    text-align: center;
    margin: 2rem 0 1rem 0;
    color: var(--text-secondary);
    font-size: 1rem;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.pagination button {
    background: var(--card-bg);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    min-width: 44px;
}

.pagination button:hover:not(:disabled) {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: white;
}

.pagination button.active {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: white;
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


.site-footer {
    background: var(--secondary-bg);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.footer-content h3 {
    color: var(--accent-orange);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-orange);
}

.site-footer p a {
    color: #ffb399; 
    text-decoration: underline;
    transition: color 0.3s ease;
}

.site-footer p a:hover {
    color: #ffffff; 
    text-decoration: underline;
}


.modal-splash-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal-dialog {
    position: relative;
    width: 90%;
    max-width: 500px;
    margin: 1.75rem auto;
    pointer-events: none;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    outline: 0;
}

.modal-background {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 15px;
    padding: 20px;
    border: 2px solid #ff6b4a;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    color: white;
}

.modal-title {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: center;
    color: #ffffff;
}

.eighteen-plus-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #ff6b4a;
    border-radius: 50%;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.modal-body {
    margin-bottom: 20px;
    overflow-y: auto;
    max-height: 50vh;
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.modal-list {
    list-style-type: disc;
    margin-left: 25px;
}

.modal-footer {
    text-align: center;
}

.eighteen-plus-button {
    padding: 15px 40px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: bold;
    background: linear-gradient(135deg, #ff6b4a 0%, #ff8c42 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.eighteen-plus-button:hover {
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b4a 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 74, 0.4);
}

.terms-link {
    color: #ff6b4a;
    text-decoration: underline;
}


@media (max-width: 1200px) {
    .site-content {
        padding: 2rem 1rem;
    }
    
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .nav-links li a {
        padding: 1rem 0.5rem;
        font-size: 0.85rem;
        gap: 0.2rem;
    }
}

@media (max-width: 768px) {
    .site-header h1 {
        font-size: 2rem;
    }
    
    .logo-icon {
        height: 45px;
    }
    
    .nav-links {
        gap: 0.1rem;
    }
    
    .nav-links li a {
        padding: 0.75rem 0.4rem;
        font-size: 0.8rem;
    }
    
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1rem;
    }
    
    .popular-categories .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .category-header h1,
    .category-header h2,
    .popular-categories .category-header h2,
    .latest-videos .category-header h2 {
        font-size: 1.75rem;
    }
    
    .alphabet-nav {
        gap: 0.25rem;
        padding: 0.5rem;
    }
    
    .letter-link {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
    .letter-header {
        font-size: 1.4rem;
    }
    
    .pagination button {
        padding: 0.6rem 0.8rem;
        min-width: 40px;
    }
}


    
    /* Keep the mobile menu button styles intact */
    .mobile-menu-btn {
        display: block !important;
    }

.search-container {
    position: relative;
    width: 35%; /* 35% of screen width on desktop */
    margin: 20px auto;
    z-index: 100;
    padding: 0 20px;
}

/* Add tablet breakpoint */
@media (max-width: 1024px) {
    .search-container {
        width: 50%; /* Increase to 50% on tablets */
    }
}

/* Mobile stays the same as you requested */
@media (max-width: 768px) {
    .search-container {
        width: calc(100% - 30px); /* Full width minus padding */
        margin: 15px auto;
        padding: 0 15px;
    }
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--card-bg);
    border-radius: 25px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.search-wrapper:focus-within {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 74, 0.1);
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    background: transparent;
    color: var(--text-color);
    outline: none;
}
.search-input::placeholder {
   color: var(--muted-text);
}

.search-button {
   padding: 12px 20px;
   background: transparent;
   border: none;
   color: #ffffff;
   cursor: pointer;
   transition: color 0.3s ease;
}

.search-button:hover {
   color: var(--accent-orange);
}

.clear-search {
   position: absolute;
   right: 60px;
   padding: 8px;
   background: transparent;
   border: none;
   color: var(--muted-text);
   cursor: pointer;
   transition: color 0.3s ease;
}

.clear-search:hover {
   color: var(--accent-orange);
}

.search-results {
   position: absolute;
   top: 100%;
   left: 0;
   right: 0;
   margin-top: 10px;
   background: var(--card-bg);
   border: 2px solid var(--border-color);
   border-radius: 12px;
   max-height: 400px;
   overflow-y: auto;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.search-results-header {
   padding: 15px 20px;
   border-bottom: 1px solid var(--border-color);
   font-weight: 600;
   color: var(--text-color);
}

.search-result-item {
   display: flex;
   align-items: center;
   padding: 12px 20px;
   border-bottom: 1px solid var(--border-color);
   cursor: pointer;
   transition: background 0.2s ease;
   text-decoration: none;
   color: inherit;
}

.search-result-item:hover {
   background: rgba(255, 107, 74, 0.1);
}

.search-result-item:last-child {
   border-bottom: none;
}

.search-result-thumbnail {
   width: 80px;
   height: 45px;
   object-fit: cover;
   border-radius: 6px;
   margin-right: 15px;
}

.search-result-info {
   flex: 1;
   min-width: 0;
}

.search-result-title {
   font-weight: 500;
   color: var(--text-color);
   margin-bottom: 4px;
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap;
}

.search-result-meta {
   font-size: 12px;
   color: var(--muted-text);
   display: flex;
   gap: 10px;
}

.search-loading {
   text-align: center;
   padding: 3rem;
   color: var(--text-secondary);
   font-size: 1.2rem;
}

.search-loading i {
   margin-right: 0.5rem;
}

.error-message {
   text-align: center;
   padding: 3rem;
   font-size: 1.2rem;
   color: #ff6b4a;
}

.no-results {
   text-align: center;
   padding: 3rem;
   color: var(--text-color);
}

.no-results-icon {
   font-size: 4rem;
   color: #ff6b4a;
   margin-bottom: 1rem;
}

.no-results h3 {
   font-size: 1.5rem;
   margin-bottom: 0.5rem;
   color: var(--text-primary);
}

.no-results p {
   margin-bottom: 2rem;
   opacity: 0.8;
   color: var(--text-secondary);
}

.search-suggestions {
   margin: 2rem 0;
   padding: 1.5rem;
   background: var(--card-bg);
   border-radius: 8px;
}

.search-suggestions h3, 
.search-suggestions h4 {
   margin-bottom: 1rem;
   color: var(--text-color);
}

.suggestion-tags {
   display: flex;
   flex-wrap: wrap;
   gap: 0.5rem;
   justify-content: center;
}

.suggestion-tag {
   padding: 0.5rem 1rem;
   background: var(--primary-color);
   color: white;
   border-radius: 20px;
   text-decoration: none;
   font-size: 0.9rem;
   transition: all 0.3s ease;
}

.suggestion-tag:hover {
   background: var(--primary-hover);
   transform: translateY(-2px);
}

.video-grid .no-results {
    grid-column: 1 / -1; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    width: 100%;
    margin: 2rem auto;
    padding: 3rem 2rem;
    text-align: center;
    color: var(--text-color);
}

.video-grid:has(.no-results) {
    display: grid;
    place-items: center;
    min-height: 500px;
}

.video-grid.no-results-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.no-results .no-results-icon {
    font-size: 4rem;
    color: #ff6b4a;
    margin-bottom: 1.5rem;
}

.no-results h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.no-results p {
    margin-bottom: 2rem;
    opacity: 0.8;
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 500px;
}

.no-results .search-suggestions {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    max-width: 500px;
    width: 100%;
}

.no-results .search-suggestions h4 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
}

.no-results .suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.no-results .suggestion-tag {
    padding: 0.75rem 1.25rem;
    background: var(--primary-color);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.no-results .suggestion-tag:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 74, 0.4);
    border-color: var(--primary-hover);
}

@media (max-width: 768px) {
    .video-grid .no-results {
        padding: 2rem 1rem;
        min-height: 350px;
    }
    
    .video-grid:has(.no-results),
    .video-grid.no-results-container {
        min-height: 400px;
    }
    
    .no-results .no-results-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .no-results h3 {
        font-size: 1.5rem;
    }
    
    .no-results p {
        font-size: 1rem;
    }
    
    .no-results .search-suggestions {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .no-results .suggestion-tag {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .video-grid .no-results {
        padding: 1.5rem 0.75rem;
        min-height: 300px;
    }
    
    .no-results .no-results-icon {
        font-size: 2.5rem;
    }
    
    .no-results h3 {
        font-size: 1.3rem;
    }
    
    .no-results .search-suggestions {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
   .search-container {
       margin: 15px;
   }

   .search-result-thumbnail {
       width: 60px;
       height: 34px;
   }

   .search-results {
       max-height: 300px;
   }
}

@media (max-width: 480px) {
   .search-input {
       font-size: 14px;
       padding: 10px 15px;
   }
   
   .search-button {
       padding: 10px 15px;
   }
   
   .clear-search {
       right: 50px;
   }
}

.related-sections-container {
   max-width: 1200px;
   margin: 3rem auto 0;
   padding: 0 1rem;
}

.related-categories-section {
   margin-bottom: 2rem;
   padding: 1.5rem;
   background: transparent;
   border-radius: 8px;
}

.related-categories-section h3 {
   margin-bottom: 1rem;
   color: var(--text-color);
   font-size: 1.25rem;
   font-weight: 600;
}

.related-tags {
   display: flex;
   flex-wrap: wrap;
   gap: 0.5rem;
}

.related-tag {
   display: inline-flex;
   align-items: center;
   gap: 0.3rem;
   padding: 0.5rem 1rem;
   background: #2d2d2d;
   color: var(--text-color);
   border: 1px solid var(--primary-color);
   border-radius: 25px;
   text-decoration: none;
   font-size: 0.9rem;
   transition: all 0.3s ease;
   white-space: nowrap;
}

.related-tag:hover {
   background: var(--primary-color);
   color: white;
   transform: translateY(-2px);
   box-shadow: 0 3px 10px rgba(255, 107, 74, 0.3);
}

.related-searches-section {
   margin-bottom: 2rem;
   padding: 1.5rem;
   background: transparent;
   border-radius: 8px;
}

.related-searches-section h3 {
   margin-bottom: 1rem;
   color: var(--text-color);
   font-size: 1.25rem;
   font-weight: 600;
}

.related-search-tags {
   display: flex;
   flex-wrap: wrap;
   gap: 0.5rem;
}

.search-tag {
   display: inline-flex;
   align-items: center;
   gap: 0.3rem;
   padding: 0.5rem 1rem;
   background: #2d2d2d;
   color: var(--text-color);
   border: 1px solid var(--primary-color);
   border-radius: 25px;
   text-decoration: none;
   font-size: 0.9rem;
   transition: all 0.3s ease;
   white-space: nowrap;
}

.search-tag:hover {
   background: var(--primary-color);
   color: white;
   transform: translateY(-2px);
   box-shadow: 0 3px 10px rgba(255, 107, 74, 0.3);
}

.related-tag i,
.search-tag i {
   font-size: 0.8rem;
   opacity: 0.8;
}

@media (max-width: 768px) {
   .related-sections-container {
       margin-top: 2rem;
   }
   
   .related-categories-section,
   .related-searches-section {
       padding: 1rem;
       margin-bottom: 1.5rem;
   }
   
   .related-tag,
   .search-tag {
       font-size: 0.85rem;
       padding: 0.4rem 0.8rem;
   }
}

.site-footer {
   margin-top: 0;
}

.alphabet-content {
   width: 100%;
   clear: both;
}

h1 {
   color: var(--text-primary);
   font-size: 2rem;
   margin-bottom: 0.5rem;
   font-weight: 600;
}

.eighteen-plus-button {
   color: white !important;
}

.fas {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    width: 1em;
    text-align: center;
}

.fa-home::before {
    content: "🏠";
}

.fa-search::before {
    content: "🔍";
}

.fa-video::before {
    content: "📹";
}

.fa-th-large::before {
    content: "⊞";
}

.fa-user::before {
    content: "👤";
}

.fa-tv::before {
    content: "📺";
}

.fa-user-check::before {
    content: "✓👤";
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    margin-left: -15px;
}
.fa-film::before {
    content: "🎬";
}

.fa-tag::before {
    content: "🏷️";
}

.fa-flag::before {
    content: "🚩";
}

.fa-chevron-left::before {
    content: "‹";
    font-weight: bold;
    font-size: 1.2em;
}

.fa-chevron-right::before {
    content: "›";
    font-weight: bold;
    font-size: 1.2em;
}

.fa-spinner::before {
    content: "↻";
    font-weight: bold;
}

.fa-spin {
    animation: fa-spin 2s infinite linear;
}

@keyframes fa-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(359deg);
    }
}

.fa-exclamation-triangle::before {
    content: "⚠️";
}
	
/* FontAwesome Icon Replacements */
.fas {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    width: 1em;
    text-align: center;
    color: inherit;
}

.fas.fa-bars {
    display: inline-block;
    width: 18px;
    height: 14px;
    position: relative;
}

.fas.fa-bars::before,
.fas.fa-bars::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    transition: all 0.3s ease;
}

.fas.fa-bars::before {
    top: 0;
    box-shadow: 0 6px 0 currentColor;
}

.fas.fa-bars::after {
    bottom: 0;
}

.fas.fa-times {
    display: inline-block;
    width: 16px;
    height: 16px;
    position: relative;
}

.fas.fa-times::before,
.fas.fa-times::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2px;
    height: 16px;
    background-color: currentColor;
    transform-origin: center;
}

.fas.fa-times::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.fas.fa-times::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.fas.fa-home {
    display: inline-block;
    width: 16px;
    height: 16px;
    position: relative;
    margin-right: 5px;
}

.fas.fa-home::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 2px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 6px solid currentColor;
    transform: translateX(-50%);
}

.fas.fa-home::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 10px;
    height: 8px;
    background-color: currentColor;
    transform: translateX(-50%);
}

.fas.fa-video {
    display: inline-block;
    width: 16px;
    height: 12px;
    position: relative;
    margin-right: 5px;
}

.fas.fa-video::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 10px;
    height: 8px;
    background-color: currentColor;
    border-radius: 1px;
}

.fas.fa-video::after {
    content: '';
    position: absolute;
    right: 0;
    top: 2px;
    width: 0;
    height: 0;
    border-left: 6px solid currentColor;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
}

.fas.fa-th-large {
    display: inline-block;
    width: 14px;
    height: 14px;
    position: relative;
    margin-right: 5px;
}

.fas.fa-th-large::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 6px;
    background-color: currentColor;
    box-shadow: 8px 0 0 currentColor, 0 8px 0 currentColor, 8px 8px 0 currentColor;
}

.fas.fa-user {
    display: inline-block;
    width: 12px;
    height: 16px;
    position: relative;
    margin-right: 5px;
}

.fas.fa-user::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 6px;
    height: 6px;
    background-color: currentColor;
    border-radius: 50%;
    transform: translateX(-50%);
}

.fas.fa-user::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 12px;
    height: 8px;
    background-color: currentColor;
    border-radius: 8px 8px 0 0;
    transform: translateX(-50%);
}

.fas.fa-tv {
    display: inline-block;
    width: 16px;
    height: 14px;
    position: relative;
    margin-right: 5px;
}

.fas.fa-tv::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 10px;
    border: 2px solid currentColor;
    border-radius: 2px;
}

.fas.fa-tv::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 8px;
    height: 2px;
    background-color: currentColor;
    transform: translateX(-50%);
}

.fas.fa-user-check {
    display: inline-block;
    width: 16px;
    height: 16px;
    position: relative;
    margin-right: 5px;
}

.fas.fa-user-check::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 6px;
    background-color: currentColor;
    border-radius: 50%;
}

.fas.fa-user-check::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 12px;
    height: 8px;
    background-color: currentColor;
    border-radius: 8px 8px 0 0;
}

.fas.fa-user-check {
    background-image: linear-gradient(45deg, transparent 40%, currentColor 40%, currentColor 50%, transparent 50%, transparent 60%, currentColor 60%, currentColor 70%, transparent 70%);
    background-size: 4px 4px;
    background-position: 12px 8px;
    background-repeat: no-repeat;
}

.nav-links .fas {
    margin-right: 8px;
    vertical-align: middle;
}

/* Main Navigation Styles */   
.main-nav {
    background-color: var(--secondary-bg);
    position: relative;
}

.nav-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    min-height: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    display: block;
    color: var(--text-primary);
    text-decoration: none;
    padding: 14px 16px;
    transition: background-color 0.3s;
}

.nav-links a:hover {
    background-color: var(--hover-color);
}

/* Hide mobile elements on desktop */
.mobile-menu-toggle,
.mobile-menu-btn,
.mobile-menu-close {
    display: none;
}

/* Featured dropdown styles */
.featured-dropdown-item {
    position: relative;
}

/* Hidden checkbox for dropdown toggle */
.dropdown-toggle {
    display: none;
}

.top-pages-toggle {
    display: block;
    color: var(--text-primary);
    padding: 14px 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.top-pages-toggle:hover {
    background-color: var(--hover-color);
}

.featured-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--card-bg);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid var(--border-color);
}

/* Desktop: Use hover */
@media screen and (min-width: 769px) {
    .featured-dropdown-item:hover .featured-links {
        display: block;
    }
    
    /* Hide checkbox toggle on desktop */
    .dropdown-toggle {
        display: none;
    }
    
    /* Hide mobile menu button on desktop */
    .mobile-menu-btn {
        display: none !important;
    }
}

/* Mobile: Use click toggle ONLY */
@media screen and (max-width: 768px) {
    /* Completely disable hover on mobile */
    .featured-dropdown-item:hover .featured-links {
        display: none !important;
    }
    
    /* Only show when checkbox is checked */
    .dropdown-toggle:checked ~ .featured-links {
        display: block !important;
    }
    
    /* Make sure dropdown is hidden by default */
    .featured-links {
        display: none;
    }
}

.featured-links a {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}

.featured-links a:hover {
    background-color: var(--hover-color);
}

/* Mobile visible navigation buttons */
.mobile-visible-nav {
    display: none;
    flex: 1;
    justify-content: stretch;
    align-items: center;
    height: 100%;
    width: 100%;
}

.mobile-visible-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    height: 50px;
    transition: background-color 0.3s;
    border-right: 1px solid var(--border-color);
    flex-direction: column;
    gap: 2px;
    flex: 1;
    margin: 0;
    padding: 0;
}

.mobile-visible-nav a:hover {
    background-color: var(--hover-color);
}

.mobile-visible-nav a:last-child {
    border-right: none;
}

.mobile-visible-nav .fas {
    font-size: 14px;
    margin-right: 0;
    margin-bottom: 2px;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .nav-container {
        position: relative;
        justify-content: flex-start;
        padding: 0;
        display: flex;
        align-items: center;
    }

    /* Show mobile visible nav on mobile */
    .mobile-visible-nav {
        display: flex;
    }

    /* Mobile menu button */
    .nav-container .mobile-menu-btn {
        display: flex !important;
        background: none;
        border: none;
        color: var(--text-primary);
        font-size: 18px;
        cursor: pointer;
        z-index: 1001;
        padding: 0;
        width: 12%;
        height: 50px;
        align-items: center;
        justify-content: center;
        border-left: 1px solid var(--border-color);
        order: 2;
    }

    /* Hide mobile menu button when menu is open */
    .mobile-menu-toggle:checked ~ .mobile-menu-btn {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }

    /* Hide mobile visible nav when menu is open */
    .mobile-menu-toggle:checked ~ .mobile-visible-nav {
        display: none !important;
    }

    /* Mobile nav links container */
    .nav-links {
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--secondary-bg);
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1000;
        overflow-y: auto;
        padding-top: 60px;
    }

    /* Hide all nav links by default on mobile */
    .nav-links li {
        display: block;
        width: 100%;
    }

    /* When menu is open, show the mobile menu */
    .mobile-menu-toggle:checked ~ .nav-links {
        transform: translateY(0);
    }

    /* Close button */
    .mobile-menu-close {
        display: none;
        position: fixed;
        top: 15px;
        right: 15px;
        background: none;
        border: none;
        color: var(--text-primary);
        font-size: 24px;
        cursor: pointer;
        z-index: 1002;
        padding: 10px;
        min-width: 44px;
        min-height: 44px;
    }

    /* Show close button when menu is open */
    .mobile-menu-toggle:checked ~ .mobile-menu-close {
        display: block;
    }

    /* Mobile nav link styles */
    .nav-links a {
        padding: 15px 20px;
        border-bottom: 1px solid var(--border-color);
        font-size: 16px;
        color: var(--text-primary);
    }

    .nav-links a:hover {
        background-color: var(--hover-color);
    }

    /* Featured dropdown in mobile */
    .featured-dropdown-item {
        width: 100%;
    }

    .featured-links {
        position: static;
        display: none;
        box-shadow: none;
        background-color: var(--primary-bg);
        width: 100%;
        border: none;
    }

    .top-pages-toggle {
        position: relative;
        width: 100%;
        border-bottom: 1px solid var(--border-color);
        color: var(--text-primary);
    }

    .top-pages-toggle:hover {
        background-color: var(--hover-color);
    }

    .top-pages-toggle:after {
        content: " ▼";
        float: right;
    }

    /* Mobile: Only show dropdown when checkbox is checked */
    .dropdown-toggle:checked ~ .featured-links {
        display: block;
    }
    
    /* Disable hover on mobile */
    .featured-dropdown-item:hover .featured-links {
        display: none;
    }

    .featured-links a {
        padding-left: 40px;
        background-color: var(--primary-bg);
        color: var(--text-primary);
    }

    /* Other mobile styles that were in your original CSS */
    .site-content {
        padding: 2rem 1rem;
    }
    
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .nav-links li a {
        padding: 1rem 0.5rem;
        font-size: 0.85rem;
        gap: 0.2rem;
    }
    
    .site-header h1 {
        font-size: 2rem;
    }
    
    .logo-icon {
        height: 45px;
    }
    
    .nav-links {
        gap: 0.1rem;
    }
    
    .nav-links li a {
        padding: 0.75rem 0.4rem;
        font-size: 0.8rem;
    }
    
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1rem;
    }
    
    .popular-categories .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .category-header h1,
    .category-header h2,
    .popular-categories .category-header h2,
    .latest-videos .category-header h2 {
        font-size: 1.75rem;
    }
    
    .alphabet-nav {
        gap: 0.25rem;
        padding: 0.5rem;
    }
    
    .letter-link {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
    .letter-header {
        font-size: 1.4rem;
    }
    
    .pagination button {
        padding: 0.6rem 0.8rem;
        min-width: 40px;
    }
}

/* REPLACE YOUR 480px BREAKPOINT WITH THIS */
@media screen and (max-width: 480px) {
    .site-content {
        padding: 1rem 0.75rem;
    }
    
    .site-header h1 {
        font-size: 1.75rem;
    }
    
    .logo-icon {
        height: 40px;
    }
    
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 0.75rem;
    }
    
    .category-header h1,
    .category-header h2,
    .popular-categories .category-header h2,
    .latest-videos .category-header h2 {
        font-size: 1.5rem;
    }
    
    .category-header p {
        font-size: 0.9rem;
    }
    
    .alphabet-nav {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0.5rem;
    }
    
    .letter-link {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
        flex-shrink: 0;
    }
    
    .alphabet-navigation-container {
        overflow-x: auto;
    }
    
    .alphabet-nav {
        min-width: max-content;
    }
    
    .modal-title {
        font-size: 1.2rem;
    }

    .modal-body {
        font-size: 13px;
    }

    .eighteen-plus-button {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    /* Mobile visible nav for small screens */
    .mobile-visible-nav a {
        font-size: 11px;
    }
    
    .mobile-visible-nav .fas {
        font-size: 12px;
    }
    
    /* Mobile menu button for small screens */
    .nav-container .mobile-menu-btn {
        width: 12%;
        height: 50px;
        font-size: 16px;
    }

    /* Hide when menu is open */
    .mobile-menu-toggle:checked ~ .mobile-menu-btn {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }

    /* Hide mobile visible nav when menu is open */
    .mobile-menu-toggle:checked ~ .mobile-visible-nav {
        display: none !important;
    }
}

/* REPLACE YOUR 320px BREAKPOINT WITH THIS */
@media screen and (max-width: 320px) {
    .mobile-visible-nav a {
        font-size: 10px;
    }
    
    .mobile-visible-nav .fas {
        font-size: 11px;
    }
    
    .nav-container .mobile-menu-btn {
        font-size: 14px;
        width: 12%;
        height: 50px;
    }
    
    .nav-container {
        padding: 0;
        min-height: 50px;
    }

    /* Ensure button is hidden when menu is open */
    .mobile-menu-toggle:checked ~ .mobile-menu-btn {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }

    /* Hide mobile visible nav when menu is open */
    .mobile-menu-toggle:checked ~ .mobile-visible-nav {
        display: none !important;
    }
}