/*
Theme Name: VidoxHub
Theme URI: https://vidoxhub.com
Author: VidoxHub
Author URI: https://vidoxhub.com
Description: Custom Adult Tube & Affiliate Theme for VidoxHub - Your Ultimate Video Hub
Version: 1.0.0
License: Private
Text Domain: vidoxhub
Tags: adult, tube, video, affiliate, cams, dark-theme
*/

/* =============================================
   CSS RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #0f0f0f;
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.5;
    min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
    --red: #e63c3c;
    --red-dark: #c42c2c;
    --red-light: #ff5555;
    --orange: #f5a623;
    --orange-dark: #d4891a;
    --green: #4caf50;
    --bg-base: #0f0f0f;
    --bg-primary: #141414;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #1e1e1e;
    --bg-card: #222222;
    --bg-hover: #2a2a2a;
    --border: #2a2a2a;
    --border-light: #333333;
    --text-primary: #e0e0e0;
    --text-secondary: #aaaaaa;
    --text-muted: #666666;
    --text-dark: #444444;
    --header-height: 56px;
    --nav-height: 42px;
    --sidebar-width: 240px;
    --container-max: 1280px;
    --gap: 12px;
    --radius: 6px;
    --radius-lg: 10px;
    --transition: 0.2s ease;
}

/* =============================================
   LAYOUT CONTAINERS
   ============================================= */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 16px;
}
.main-wrapper {
    display: flex;
    gap: 16px;
    padding: 16px;
    max-width: var(--container-max);
    margin: 0 auto;
}
.content-area { flex: 1; min-width: 0; }
.sidebar-area { width: var(--sidebar-width); flex-shrink: 0; }

/* =============================================
   SITE HEADER
   ============================================= */
#site-header {
    background: #1a1a1a;
    border-bottom: 2px solid var(--red);
    position: sticky;
    top: 0;
    z-index: 999;
    height: var(--header-height);
}
.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
}
.site-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1;
}
.logo-text span { color: var(--red); }
.logo-tagline {
    font-size: 10px;
    color: var(--text-muted);
    border-left: 1px solid var(--border-light);
    padding-left: 10px;
    line-height: 1.3;
    max-width: 120px;
}
.header-search {
    flex: 1;
    max-width: 400px;
    display: flex;
    margin: 0 8px;
}
.header-search input {
    flex: 1;
    background: var(--bg-base);
    border: 1px solid var(--border-light);
    border-right: none;
    border-radius: var(--radius) 0 0 var(--radius);
    padding: 7px 14px;
    color: var(--text-primary);
    font-size: 13px;
    outline: none;
    transition: border-color var(--transition);
}
.header-search input:focus { border-color: var(--red); }
.header-search input::placeholder { color: var(--text-muted); }
.header-search button {
    background: var(--red);
    border: none;
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 7px 16px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    transition: background var(--transition);
}
.header-search button:hover { background: var(--red-dark); }
.header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: var(--radius); font-size: 12px; font-weight: 600; transition: all var(--transition); border: none; }
.btn-outline { background: transparent; border: 1px solid var(--border-light); color: var(--text-secondary); }
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); }
.btn-cam { background: var(--orange); color: #000; font-weight: 700; }
.btn-cam:hover { background: var(--orange-dark); }

/* =============================================
   SITE NAVIGATION
   ============================================= */
#site-nav {
    background: #1e1e1e;
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none;
}
.nav-inner::-webkit-scrollbar { display: none; }
.nav-menu { display: flex; gap: 0; }
.nav-menu li a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 11px 15px;
    font-size: 13px;
    color: var(--text-secondary);
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all var(--transition);
}
.nav-menu li a:hover,
.nav-menu li.current-menu-item a { color: #fff; border-bottom-color: var(--red); }
.nav-menu li.nav-cams a { color: var(--orange); }
.nav-menu li.nav-cams a:hover { border-bottom-color: var(--orange); }
.live-indicator {
    width: 7px; height: 7px;
    background: var(--orange);
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
    display: inline-block;
}
@keyframes livePulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.8)} }

/* =============================================
   SECTION HEADINGS
   ============================================= */
.section-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0 12px;
}
.section-heading h2 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}
.section-dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; flex-shrink: 0; }
.section-dot.orange { background: var(--orange); }
.section-badge {
    background: rgba(230,60,60,0.12);
    border: 1px solid rgba(230,60,60,0.25);
    border-radius: 20px;
    font-size: 10px;
    color: var(--red);
    padding: 2px 8px;
    white-space: nowrap;
}
.section-badge.cam { background: rgba(245,166,35,0.12); border-color: rgba(245,166,35,0.25); color: var(--orange); }
.section-badge.aff { background: rgba(76,175,80,0.12); border-color: rgba(76,175,80,0.25); color: var(--green); }
.see-all {
    margin-left: auto;
    font-size: 12px;
    color: var(--text-muted);
    white-space: nowrap;
    transition: color var(--transition);
}
.see-all:hover { color: var(--red); }

/* =============================================
   CATEGORY PILLS
   ============================================= */
.category-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.cat-pill {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 12px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}
.cat-pill:hover,
.cat-pill.active { background: var(--red); color: #fff; border-color: var(--red); }

/* =============================================
   VIDEO GRID & CARDS
   ============================================= */
.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
}
.video-grid-3 { grid-template-columns: repeat(3, 1fr); }
.video-grid-5 { grid-template-columns: repeat(5, 1fr); }
.video-card {
    background: var(--bg-secondary);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.video-card:hover { transform: translateY(-2px); }
.video-card a { display: block; }
.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--bg-card);
    overflow: hidden;
}
.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity var(--transition);
}
.video-card:hover .video-thumbnail img { opacity: 0.85; }
.thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
}
.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}
.video-card:hover .play-overlay { opacity: 1; }
.play-btn {
    width: 40px; height: 40px;
    background: rgba(230,60,60,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.play-btn svg { width: 16px; height: 16px; fill: #fff; margin-left: 3px; }
.video-duration {
    position: absolute;
    bottom: 5px; right: 6px;
    background: rgba(0,0,0,0.82);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 1px 5px;
    border-radius: 3px;
}
.video-quality {
    position: absolute;
    bottom: 5px; left: 6px;
    background: var(--red);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 1px 4px;
    border-radius: 3px;
    letter-spacing: 0.5px;
}
.video-quality.hd4k { background: #7b4fff; }
.video-info { padding: 7px 8px 9px; }
.video-title {
    font-size: 12px;
    color: #ddd;
    line-height: 1.4;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.video-card:hover .video-title { color: #fff; }
.video-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: var(--text-muted);
}
.video-meta .sep { font-size: 8px; }
.video-views { display: flex; align-items: center; gap: 3px; }
.video-rating {
    margin-left: auto;
    color: var(--orange);
    font-size: 10px;
}

/* =============================================
   CAM SECTION
   ============================================= */
.cam-section-wrapper {
    background: var(--bg-secondary);
    border: 1px solid rgba(245,166,35,0.2);
    border-radius: var(--radius-lg);
    padding: 16px;
    margin: 4px 0 20px;
}
.cam-section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}
.cam-section-header h3 { font-size: 15px; font-weight: 700; color: var(--orange); }
.cam-online-count { margin-left: auto; font-size: 11px; color: var(--text-muted); }
.cam-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
}
.cam-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition);
}
.cam-card:hover { transform: translateY(-2px); }
.cam-thumbnail {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--bg-tertiary);
    overflow: hidden;
}
.cam-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.cam-live-badge {
    position: absolute;
    top: 5px; left: 5px;
    background: var(--red);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 3px;
    letter-spacing: 0.5px;
    animation: liveBlink 2s ease-in-out infinite;
}
@keyframes liveBlink { 0%,100%{opacity:1} 50%{opacity:0.7} }
.cam-viewers {
    position: absolute;
    bottom: 5px; right: 5px;
    background: rgba(0,0,0,0.75);
    color: var(--orange);
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 3px;
}
.cam-info { padding: 6px 8px 8px; }
.cam-name { font-size: 12px; color: #ccc; font-weight: 500; }
.cam-category { font-size: 10px; color: var(--text-muted); margin-top: 2px; }

/* =============================================
   AD ZONES
   ============================================= */
.ad-zone {
    background: var(--bg-secondary);
    border: 1px dashed var(--border-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.ad-zone-leaderboard { height: 90px; margin: 14px 0; }
.ad-zone-rectangle { height: 250px; margin-bottom: 14px; }
.ad-zone-half { height: 200px; margin-bottom: 14px; }
.ad-zone-native { aspect-ratio: 16/9; position: relative; }
.ad-zone-native iframe,
.ad-zone-native img,
.ad-zone-native video,
.ad-zone-native embed,
.ad-zone-native object {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    display: block;
}
.ad-zone-native img,
.ad-zone-native video {
    object-fit: cover;
}
.native-ad-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
    margin: 14px 0;
}
.ad-zone-label {
    font-size: 10px;
    color: var(--border-light);
    text-align: center;
    padding: 8px;
}

/* =============================================
   AFFILIATE BANNERS
   ============================================= */
.affiliate-strip {
    background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
    border: 1px solid var(--border-light);
    border-left: 3px solid var(--orange);
    border-radius: var(--radius-lg);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 16px 0;
}
.affiliate-strip .aff-icon { font-size: 28px; flex-shrink: 0; }
.aff-text { flex: 1; }
.aff-text h4 { font-size: 15px; color: var(--orange); margin-bottom: 3px; font-weight: 700; }
.aff-text p { font-size: 11px; color: var(--text-muted); }
.btn-aff-cam {
    background: var(--orange);
    border: none;
    border-radius: var(--radius);
    padding: 9px 20px;
    color: #000;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    transition: background var(--transition);
    flex-shrink: 0;
}
.btn-aff-cam:hover { background: var(--orange-dark); }
.affiliate-cta-box {
    background: var(--bg-secondary);
    border: 1px solid rgba(245,166,35,0.3);
    border-radius: var(--radius-lg);
    padding: 16px;
    text-align: center;
    margin-bottom: 14px;
}
.affiliate-cta-box h4 { font-size: 14px; color: var(--orange); margin-bottom: 6px; }
.affiliate-cta-box p { font-size: 11px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.5; }
.btn-watch-live {
    display: block;
    width: 100%;
    background: var(--orange);
    border: none;
    border-radius: var(--radius);
    padding: 9px;
    color: #000;
    font-size: 13px;
    font-weight: 800;
    transition: background var(--transition);
}
.btn-watch-live:hover { background: var(--orange-dark); }
.aff-small { font-size: 9px; color: var(--text-dark); margin-top: 6px; }

/* =============================================
   SIDEBAR
   ============================================= */
.sidebar-widget {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 14px;
    margin-bottom: 14px;
}
.widget-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 6px;
}
.top-category-list { display: flex; flex-direction: column; gap: 0; }
.top-cat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color var(--transition);
}
.top-cat-item:last-child { border-bottom: none; }
.top-cat-item:hover { color: var(--red); }
.top-cat-count { font-size: 10px; color: var(--text-dark); }
.top-cat-bar {
    display: flex;
    align-items: center;
    gap: 6px;
}
.bar-track { flex: 1; height: 3px; background: var(--border); border-radius: 2px; }
.bar-fill { height: 100%; background: var(--red); border-radius: 2px; }

/* =============================================
   HERO / SLIDER AREA
   ============================================= */
.hero-section {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    padding: 0;
    position: relative;
    overflow: hidden;
}
.hero-overlay {
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
    position: absolute;
    inset: 0;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 40px;
    max-width: 520px;
}
.hero-badge {
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.hero-title { font-size: 28px; font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 10px; }
.hero-meta { font-size: 12px; color: #aaa; margin-bottom: 18px; display: flex; gap: 12px; }
.btn-hero {
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 700;
    transition: background var(--transition);
}
.btn-hero:hover { background: var(--red-dark); }

/* =============================================
   SINGLE VIDEO PAGE
   ============================================= */
.video-player-wrapper {
    background: #000;
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 14px;
}
.video-player-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.video-player-wrapper .wp-video,
.video-player-wrapper .mejs-container,
.video-player-wrapper .mejs-embed,
.video-player-wrapper .mejs-mediaelement,
.video-player-wrapper video {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
}
.video-player-wrapper .wp-video,
.video-player-wrapper .mejs-container {
    position: absolute;
    inset: 0;
}
.video-player-wrapper .mejs-container video {
    object-fit: cover;
}
.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    flex-direction: column;
    gap: 12px;
}
.big-play-btn {
    width: 70px; height: 70px;
    background: rgba(230,60,60,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform var(--transition);
}
.big-play-btn:hover { transform: scale(1.1); }
.big-play-btn svg { width: 30px; height: 30px; fill: #fff; margin-left: 5px; }
.player-cta-text {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}
.player-cta-sub { color: #aaa; font-size: 12px; }
.btn-watch-full {
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 700;
    transition: background var(--transition);
}
.btn-watch-full:hover { background: var(--red-dark); }
.video-detail-title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.video-detail-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.video-detail-meta .views { color: var(--text-secondary); }
.video-actions { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.action-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 6px 12px;
    font-size: 12px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition);
}
.action-btn.active { border-color: var(--red); color: var(--red); }
.action-btn:disabled { opacity: 0.65; cursor: not-allowed; }
.action-btn:hover { border-color: var(--red); color: var(--red); }
.video-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.video-tag {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 11px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition);
}
.video-tag:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* =============================================
   PAGE: LIVE CAMS
   ============================================= */
.cam-page-header {
    background: linear-gradient(135deg, #1a1a1a, #1e1412);
    border-bottom: 2px solid var(--orange);
    padding: 20px 16px;
}
.cam-page-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--orange);
    display: flex;
    align-items: center;
    gap: 10px;
}
.cam-page-subtitle { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.cam-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 16px 0;
}
.cam-filter-btn {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 12px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition);
}
.cam-filter-btn:hover,
.cam-filter-btn.active { background: var(--orange); border-color: var(--orange); color: #000; font-weight: 700; }
.cam-grid-large {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--gap);
}

/* =============================================
   CATEGORY PAGE
   ============================================= */
.category-page-header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    padding: 20px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.category-icon-big {
    width: 50px; height: 50px;
    background: var(--red);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.category-info h1 { font-size: 20px; font-weight: 800; color: #fff; }
.category-info p { font-size: 12px; color: var(--text-muted); margin-top: 3px; }
.sort-bar {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
}
.sort-select {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 5px 10px;
    color: var(--text-secondary);
    font-size: 12px;
    outline: none;
    cursor: pointer;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
    margin-bottom: 16px;
}

.category-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition);
    display: block;
}

.category-card:hover {
    transform: translateY(-2px);
    border-color: rgba(230,60,60,0.6);
}

.category-card-thumb {
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    position: relative;
}

.category-card-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.65) 100%);
}

.category-card-info {
    padding: 10px 10px 12px;
}

.category-card-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 4px;
}

.category-card-meta {
    font-size: 11px;
    color: var(--text-muted);
}

/* =============================================
   PAGINATION
   ============================================= */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin: 24px 0;
}
.page-btn {
    width: 34px; height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 13px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition);
}
.page-btn:hover,
.page-btn.active { background: var(--red); border-color: var(--red); color: #fff; }
.page-btn.prev, .page-btn.next { width: auto; padding: 0 12px; }

/* =============================================
   AGE GATE OVERLAY
   ============================================= */
#age-gate {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.97);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.age-gate-box {
    background: var(--bg-secondary);
    border: 2px solid var(--red);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 460px;
    width: 90%;
    text-align: center;
}
.age-gate-logo { font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.age-gate-logo span { color: var(--red); }
.age-gate-title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.age-gate-text { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; }
.age-gate-buttons { display: flex; gap: 12px; justify-content: center; }
.btn-enter {
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition);
}
.btn-enter:hover { background: var(--red-dark); }
.btn-leave {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 24px;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition);
}
.btn-leave:hover { border-color: var(--text-secondary); color: var(--text-secondary); }
.age-gate-disclaimer { font-size: 10px; color: var(--text-dark); margin-top: 20px; line-height: 1.6; }

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
    background: #111;
    border-top: 1px solid var(--border);
    padding: 24px 16px 16px;
    margin-top: 20px;
}
.footer-inner { max-width: var(--container-max); margin: 0 auto; }
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 20px;
}
.footer-brand .footer-logo { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.footer-brand .footer-logo span { color: var(--red); }
.footer-brand p { font-size: 12px; color: var(--text-dark); line-height: 1.7; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--text-secondary); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul { display: flex; flex-direction: column; gap: 7px; }
.footer-col ul li a { font-size: 12px; color: var(--text-dark); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--text-secondary); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-links a { font-size: 11px; color: var(--text-dark); transition: color var(--transition); }
.footer-links a:hover { color: var(--text-muted); }
.footer-disclaimer { font-size: 11px; color: var(--text-dark); line-height: 1.6; }
.footer-legal { font-size: 10px; color: var(--border-light); margin-top: 10px; line-height: 1.7; }

/* =============================================
   UTILITY CLASSES
   ============================================= */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.hidden { display: none !important; }
.text-red { color: var(--red); }
.text-orange { color: var(--orange); }
.text-muted { color: var(--text-muted); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
    .video-grid { grid-template-columns: repeat(3, 1fr); }
    .cam-grid-large { grid-template-columns: repeat(4, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .category-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .main-wrapper { flex-direction: column; padding: 10px; }
    .sidebar-area { width: 100%; }
    .video-grid, .cam-grid { grid-template-columns: repeat(2, 1fr); }
    .cam-grid-large { grid-template-columns: repeat(3, 1fr); }
    .native-ad-grid { grid-template-columns: repeat(2, 1fr); }
    .logo-tagline, .header-actions .btn-outline { display: none; }
    .hero-content { padding: 24px 20px; }
    .hero-title { font-size: 20px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .affiliate-strip { flex-wrap: wrap; }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .video-grid, .cam-grid-large { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr; }
    .cam-grid { grid-template-columns: repeat(2, 1fr); }
}
