/*
 * Renegade VOD — Premium Streaming Platform Stylesheet
 * Version: 1.0.0
 * Pure CSS (no Tailwind). Font Awesome for icons.
 * Dark + Light mode via [data-theme] attribute.
 * Responsive: Desktop (1920px max), Tablet, Mobile PWA.
 */

/* ═══════════════════════════════════════════════════════
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ═══════════════════════════════════════════════════════ */

:root {
    /* Typography */
    --rvod-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --rvod-font-display: 'Inter', Georgia, 'Times New Roman', serif;

    /* Spacing */
    --rvod-space-xs: 4px;
    --rvod-space-sm: 8px;
    --rvod-space-md: 16px;
    --rvod-space-lg: 24px;
    --rvod-space-xl: 32px;
    --rvod-space-2xl: 48px;
    --rvod-space-3xl: 64px;

    /* Borders */
    --rvod-radius-sm: 6px;
    --rvod-radius-md: 10px;
    --rvod-radius-lg: 16px;
    --rvod-radius-xl: 24px;
    --rvod-radius-full: 9999px;

    /* Transitions */
    --rvod-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --rvod-transition-fast: 0.15s ease;

    /* Shadows */
    --rvod-shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --rvod-shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --rvod-shadow-lg: 0 8px 30px rgba(0,0,0,0.25);
    --rvod-shadow-xl: 0 16px 50px rgba(0,0,0,0.35);

    /* Layout */
    --rvod-max-width: 1440px;
    --rvod-nav-height: 72px;
    --rvod-sidebar-width: 280px;
    --rvod-mobile-nav-height: 64px;
}

/* ─── Dark Theme (Default) ─── */
[data-theme="dark"], .rvod-dark {
    --rvod-bg-primary: #0A0A0B;
    --rvod-bg-secondary: #131316;
    --rvod-bg-tertiary: #1A1A1F;
    --rvod-bg-card: #16161A;
    --rvod-bg-card-hover: #1E1E24;
    --rvod-bg-glass: rgba(19, 19, 22, 0.85);
    --rvod-bg-glass-strong: rgba(19, 19, 22, 0.95);
    --rvod-bg-input: #1E1E24;

    --rvod-text-primary: #FFFFFF;
    --rvod-text-secondary: #A0A0B0;
    --rvod-text-tertiary: #6B6B7B;
    --rvod-text-muted: #4A4A5A;

    --rvod-border-color: rgba(255, 255, 255, 0.08);
    --rvod-border-hover: rgba(255, 255, 255, 0.15);

    --rvod-accent: #F08804;
    --rvod-accent-light: #FFB779;
    --rvod-accent-dark: #C06A00;
    --rvod-accent-gradient: linear-gradient(135deg, #F08804 0%, #FFB779 100%);

    --rvod-cta-primary: linear-gradient(135deg, #F08804 0%, #E07B00 100%);
    --rvod-cta-secondary: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    --rvod-cta-text: #FFFFFF;

    --rvod-success: #22C55E;
    --rvod-warning: #F59E0B;
    --rvod-error: #EF4444;
    --rvod-info: #3B82F6;

    --rvod-badge-bg: rgba(240, 136, 4, 0.15);
    --rvod-badge-text: #FFB779;
    --rvod-badge-free-bg: rgba(34, 197, 94, 0.15);
    --rvod-badge-free-text: #22C55E;

    --rvod-overlay: rgba(0, 0, 0, 0.6);
    --rvod-overlay-heavy: rgba(0, 0, 0, 0.85);

    --rvod-scrollbar-track: #1A1A1F;
    --rvod-scrollbar-thumb: #333340;
}

/* ─── Light Theme ─── */
[data-theme="light"], .rvod-light {
    --rvod-bg-primary: #F8F8FA;
    --rvod-bg-secondary: #FFFFFF;
    --rvod-bg-tertiary: #F0F0F4;
    --rvod-bg-card: #FFFFFF;
    --rvod-bg-card-hover: #F5F5F8;
    --rvod-bg-glass: rgba(255, 255, 255, 0.9);
    --rvod-bg-glass-strong: rgba(255, 255, 255, 0.97);
    --rvod-bg-input: #F0F0F4;

    --rvod-text-primary: #111118;
    --rvod-text-secondary: #555566;
    --rvod-text-tertiary: #888899;
    --rvod-text-muted: #AAAABC;

    --rvod-border-color: rgba(0, 0, 0, 0.08);
    --rvod-border-hover: rgba(0, 0, 0, 0.15);

    --rvod-accent: #E07B00;
    --rvod-accent-light: #F08804;
    --rvod-accent-dark: #B86200;
    --rvod-accent-gradient: linear-gradient(135deg, #E07B00 0%, #F08804 100%);

    --rvod-cta-primary: linear-gradient(135deg, #E07B00 0%, #C06A00 100%);
    --rvod-cta-secondary: linear-gradient(135deg, #7C3AED 0%, #DB2777 100%);
    --rvod-cta-text: #FFFFFF;

    --rvod-success: #16A34A;
    --rvod-warning: #D97706;
    --rvod-error: #DC2626;
    --rvod-info: #2563EB;

    --rvod-badge-bg: rgba(224, 123, 0, 0.1);
    --rvod-badge-text: #C06A00;
    --rvod-badge-free-bg: rgba(22, 163, 74, 0.1);
    --rvod-badge-free-text: #16A34A;

    --rvod-overlay: rgba(0, 0, 0, 0.4);
    --rvod-overlay-heavy: rgba(0, 0, 0, 0.7);

    --rvod-scrollbar-track: #F0F0F4;
    --rvod-scrollbar-thumb: #CCCCDD;

    --rvod-shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --rvod-shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --rvod-shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --rvod-shadow-xl: 0 16px 50px rgba(0,0,0,0.18);
}

/* ═══════════════════════════════════════════════════════
   2. RESET & BASE
   ═══════════════════════════════════════════════════════ */

/* Prevent horizontal scrollbar on all pages */
html[data-theme],
html[data-theme] body {
    overflow-x: hidden;
    max-width: 100vw;
}

.rvod-page *,
.rvod-page *::before,
.rvod-page *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.rvod-page {
    font-family: var(--rvod-font-primary);
    background-color: var(--rvod-bg-primary);
    color: var(--rvod-text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
}

.rvod-page a {
    color: inherit;
    text-decoration: none;
    transition: color var(--rvod-transition-fast);
}

.rvod-page a:hover {
    color: var(--rvod-accent);
}

.rvod-page img {
    max-width: 100%;
    height: auto;
    display: block;
}

.rvod-page button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

/* Scrollbar */
.rvod-page ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
.rvod-page ::-webkit-scrollbar-track {
    background: var(--rvod-scrollbar-track);
}
.rvod-page ::-webkit-scrollbar-thumb {
    background: var(--rvod-scrollbar-thumb);
    border-radius: 4px;
}

/* Hidden scrollbar for carousels */
.rvod-hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.rvod-hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ═══════════════════════════════════════════════════════
   3. LAYOUT CONTAINERS
   ═══════════════════════════════════════════════════════ */

.rvod-container {
    width: 100%;
    max-width: var(--rvod-max-width);
    margin: 0 auto;
    padding: 0 var(--rvod-space-xl);
}

.rvod-container-fluid {
    width: 100%;
    padding: 0 var(--rvod-space-xl);
}

.rvod-section {
    padding: var(--rvod-space-3xl) 0;
}

.rvod-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rvod-accent);
    margin-bottom: var(--rvod-space-md);
}

.rvod-section-heading {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--rvod-text-primary);
    margin-bottom: var(--rvod-space-lg);
}

/* ═══════════════════════════════════════════════════════
   4. NAVIGATION / HEADER
   ═══════════════════════════════════════════════════════ */

.rvod-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--rvod-nav-height);
    z-index: 1000;
    background: var(--rvod-bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--rvod-border-color);
    transition: background var(--rvod-transition);
}

.rvod-header.scrolled {
    background: var(--rvod-bg-glass-strong);
    box-shadow: var(--rvod-shadow-md);
}

.rvod-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--rvod-max-width);
    margin: 0 auto;
    padding: 0 var(--rvod-space-xl);
    gap: var(--rvod-space-lg);
}

/* Logo */
.rvod-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.rvod-logo-text {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: var(--rvod-text-primary);
    white-space: nowrap;
}

.rvod-logo-image img {
    display: block;
    object-fit: contain;
}

/* Nav Links */
.rvod-main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.rvod-nav-list {
    display: flex;
    list-style: none;
    gap: var(--rvod-space-xs);
    align-items: center;
}

.rvod-nav-link {
    display: block;
    padding: var(--rvod-space-sm) var(--rvod-space-md);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rvod-text-secondary);
    border-radius: var(--rvod-radius-sm);
    transition: all var(--rvod-transition-fast);
    white-space: nowrap;
}

.rvod-nav-link:hover {
    color: var(--rvod-text-primary);
    background: rgba(255,255,255,0.05);
}

.rvod-nav-active .rvod-nav-link {
    color: var(--rvod-accent);
}

/* Header Right */
.rvod-header-actions {
    display: flex;
    align-items: center;
    gap: var(--rvod-space-md);
    flex-shrink: 0;
}

/* Search Bar */
.rvod-search-bar {
    position: relative;
    width: 220px;
    transition: width var(--rvod-transition);
}

.rvod-search-bar.expanded {
    width: 320px;
}

.rvod-search-input {
    width: 100%;
    height: 38px;
    padding: 0 var(--rvod-space-md) 0 38px;
    background: var(--rvod-bg-input);
    border: 1px solid var(--rvod-border-color);
    border-radius: var(--rvod-radius-full);
    color: var(--rvod-text-primary);
    font-size: 0.85rem;
    outline: none;
    transition: all var(--rvod-transition-fast);
}

.rvod-search-input:focus {
    border-color: var(--rvod-accent);
    box-shadow: 0 0 0 3px rgba(240, 136, 4, 0.15);
}

.rvod-search-input::placeholder {
    color: var(--rvod-text-muted);
}

.rvod-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--rvod-text-muted);
    font-size: 0.85rem;
    pointer-events: none;
}

/* Theme Toggle */
.rvod-theme-toggle {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--rvod-radius-full);
    background: var(--rvod-bg-input);
    border: 1px solid var(--rvod-border-color);
    color: var(--rvod-text-secondary);
    font-size: 1rem;
    transition: all var(--rvod-transition-fast);
}

.rvod-theme-toggle:hover {
    color: var(--rvod-accent);
    border-color: var(--rvod-accent);
}

/* Notification Bell */
/* Shopping Cart Button & Dropdown */
.rvod-cart-wrapper {
    position: relative;
}

.rvod-cart-btn {
    position: relative;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--rvod-radius-full);
    color: var(--rvod-text-secondary);
    font-size: 1rem;
    transition: color var(--rvod-transition-fast);
    cursor: pointer;
    background: none;
    border: none;
}

.rvod-cart-btn:hover {
    color: var(--rvod-text-primary);
}

.rvod-cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--rvod-accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: var(--rvod-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.rvod-cart-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 300px;
    background: var(--rvod-bg-secondary);
    border: 1px solid var(--rvod-border-color);
    border-radius: var(--rvod-radius-md);
    box-shadow: var(--rvod-shadow-lg);
    z-index: 1000;
    overflow: hidden;
}

.rvod-cart-wrapper.open .rvod-cart-dropdown {
    display: block;
}

.rvod-cart-dropdown-header {
    padding: 12px 16px;
    border-bottom: 1px solid var(--rvod-border-color);
    font-size: 0.85rem;
    color: var(--rvod-text-primary);
}

.rvod-cart-dropdown-items {
    padding: 12px 16px;
    max-height: 260px;
    overflow-y: auto;
}

.rvod-cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--rvod-border-color);
    font-size: 0.8rem;
}

.rvod-cart-item:last-child {
    border-bottom: none;
}

.rvod-cart-item-name {
    color: var(--rvod-text-primary);
    flex: 1;
    margin-right: 8px;
}

.rvod-cart-item-price {
    color: var(--rvod-accent);
    font-weight: 600;
    white-space: nowrap;
}

.rvod-cart-total {
    display: flex;
    justify-content: space-between;
    padding: 10px 0 4px;
    border-top: 1px solid var(--rvod-border-color);
    margin-top: 4px;
    font-size: 0.85rem;
    color: var(--rvod-text-primary);
}

.rvod-cart-empty {
    color: var(--rvod-text-muted);
    font-size: 0.8rem;
    text-align: center;
    padding: 16px 0;
    margin: 0;
}

/* User Avatar in Header */
.rvod-header-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--rvod-border-color);
    transition: border-color var(--rvod-transition-fast);
    flex-shrink: 0;
}

.rvod-header-avatar:hover {
    border-color: var(--rvod-accent);
}

.rvod-header-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile Menu Toggle */
.rvod-mobile-menu-btn {
    display: none;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--rvod-text-primary);
}

/* ═══════════════════════════════════════════════════════
   5. HERO SECTION
   ═══════════════════════════════════════════════════════ */

.rvod-hero {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: flex-end;
    padding-top: var(--rvod-nav-height);
    overflow: hidden;
}

.rvod-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.rvod-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rvod-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        var(--rvod-bg-primary) 0%,
        rgba(10,10,11,0.85) 30%,
        rgba(10,10,11,0.4) 60%,
        rgba(10,10,11,0.2) 100%
    );
    z-index: 1;
}

.rvod-hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--rvod-max-width);
    margin: 0 auto;
    padding: var(--rvod-space-3xl) var(--rvod-space-xl) var(--rvod-space-2xl);
    width: 100%;
}

.rvod-hero-badge {
    display: inline-block;
    padding: var(--rvod-space-xs) var(--rvod-space-md);
    background: var(--rvod-badge-bg);
    color: var(--rvod-badge-text);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: var(--rvod-radius-sm);
    margin-bottom: var(--rvod-space-md);
}

.rvod-hero-meta {
    display: flex;
    align-items: center;
    gap: var(--rvod-space-md);
    margin-bottom: var(--rvod-space-md);
    flex-wrap: wrap;
}

.rvod-hero-meta-item {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--rvod-text-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.rvod-hero-meta-dot {
    width: 4px;
    height: 4px;
    background: var(--rvod-text-muted);
    border-radius: 50%;
}

.rvod-hero-quality-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    background: var(--rvod-accent);
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    border-radius: 3px;
}

.rvod-hero-title {
    font-family: var(--rvod-font-display);
    font-size: 4rem;
    font-weight: 900;
    font-style: italic;
    line-height: 1.05;
    color: var(--rvod-text-primary);
    margin-bottom: var(--rvod-space-md);
    max-width: 700px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.rvod-hero-synopsis {
    font-size: 1rem;
    color: var(--rvod-text-secondary);
    line-height: 1.7;
    max-width: 550px;
    margin-bottom: var(--rvod-space-xl);
}

.rvod-hero-actions {
    display: flex;
    gap: var(--rvod-space-md);
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════
   6. BUTTONS
   ═══════════════════════════════════════════════════════ */

.rvod-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--rvod-space-sm);
    padding: 12px 28px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--rvod-radius-md);
    transition: all var(--rvod-transition);
    white-space: nowrap;
    border: 2px solid transparent;
}

.rvod-btn i {
    font-size: 0.9em;
}

.rvod-btn-primary {
    background: var(--rvod-cta-primary);
    color: var(--rvod-cta-text);
    border-color: transparent;
}

.rvod-btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(240, 136, 4, 0.4);
    color: var(--rvod-cta-text);
}

.rvod-btn-secondary {
    background: var(--rvod-bg-card);
    color: var(--rvod-text-primary);
    border-color: var(--rvod-border-color);
}

.rvod-btn-secondary:hover {
    background: var(--rvod-bg-card-hover);
    border-color: var(--rvod-border-hover);
    color: var(--rvod-text-primary);
}

.rvod-btn-outline {
    background: transparent;
    color: var(--rvod-text-primary);
    border-color: var(--rvod-border-hover);
    backdrop-filter: blur(10px);
}

.rvod-btn-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--rvod-text-secondary);
    color: var(--rvod-text-primary);
}

.rvod-btn-accent {
    background: var(--rvod-cta-secondary);
    color: #fff;
}

.rvod-btn-accent:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    color: #fff;
}

.rvod-btn-sm {
    padding: 8px 18px;
    font-size: 0.72rem;
}

.rvod-btn-lg {
    padding: 16px 36px;
    font-size: 0.9rem;
}

.rvod-btn-icon {
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: var(--rvod-radius-full);
    font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════
   7. CARDS — Poster (Portrait)
   ═══════════════════════════════════════════════════════ */

.rvod-card-poster {
    position: relative;
    border-radius: var(--rvod-radius-md);
    overflow: hidden;
    background: var(--rvod-bg-card);
    transition: transform var(--rvod-transition), box-shadow var(--rvod-transition);
    flex-shrink: 0;
}

.rvod-card-poster:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--rvod-shadow-xl);
}

.rvod-card-poster-img {
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
}

.rvod-card-poster-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--rvod-transition);
}

.rvod-card-poster:hover .rvod-card-poster-img img {
    transform: scale(1.05);
}

.rvod-card-poster-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--rvod-transition);
    display: flex;
    align-items: flex-end;
    padding: var(--rvod-space-md);
}

.rvod-card-poster:hover .rvod-card-poster-overlay {
    opacity: 1;
}

.rvod-card-poster-bookmark {
    position: absolute;
    top: var(--rvod-space-sm);
    right: var(--rvod-space-sm);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    border-radius: var(--rvod-radius-full);
    color: #fff;
    font-size: 0.8rem;
    z-index: 2;
    opacity: 0;
    transition: opacity var(--rvod-transition-fast);
}

.rvod-card-poster:hover .rvod-card-poster-bookmark {
    opacity: 1;
}

.rvod-card-poster-bookmark.active {
    color: var(--rvod-accent);
    opacity: 1;
}

.rvod-card-poster-badge {
    position: absolute;
    top: var(--rvod-space-sm);
    left: var(--rvod-space-sm);
    padding: 3px 8px;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 3px;
    z-index: 2;
}

.rvod-badge-4k { background: var(--rvod-accent); color: #000; }
.rvod-badge-free { background: var(--rvod-success); color: #fff; }
.rvod-badge-award { background: #FFD700; color: #000; }
.rvod-badge-exclusive { background: var(--rvod-cta-secondary); color: #fff; background-size: 200%; }
.rvod-badge-new { background: var(--rvod-info); color: #fff; }
.rvod-badge-trending { background: var(--rvod-error); color: #fff; }
.rvod-badge-expires { background: var(--rvod-warning); color: #000; }

.rvod-card-poster-info {
    padding: var(--rvod-space-md);
}

.rvod-card-poster-meta {
    display: flex;
    align-items: center;
    gap: var(--rvod-space-sm);
    font-size: 0.72rem;
    color: var(--rvod-text-tertiary);
    margin-bottom: var(--rvod-space-xs);
}

.rvod-card-poster-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--rvod-text-primary);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rvod-card-poster-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: var(--rvod-space-sm);
}

.rvod-card-poster-price {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--rvod-accent);
}

/* ═══════════════════════════════════════════════════════
   8. CARDS — Landscape
   ═══════════════════════════════════════════════════════ */

.rvod-card-landscape {
    position: relative;
    border-radius: var(--rvod-radius-md);
    overflow: hidden;
    background: var(--rvod-bg-card);
    transition: transform var(--rvod-transition), box-shadow var(--rvod-transition);
    flex-shrink: 0;
}

.rvod-card-landscape:hover {
    transform: translateY(-4px);
    box-shadow: var(--rvod-shadow-lg);
}

.rvod-card-landscape-img {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.rvod-card-landscape-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--rvod-transition);
}

.rvod-card-landscape:hover .rvod-card-landscape-img img {
    transform: scale(1.05);
}

.rvod-card-landscape-info {
    padding: var(--rvod-space-md);
}

.rvod-card-landscape-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: var(--rvod-space-xs);
}

.rvod-card-landscape-desc {
    font-size: 0.8rem;
    color: var(--rvod-text-secondary);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ═══════════════════════════════════════════════════════
   9. CAROUSELS
   ═══════════════════════════════════════════════════════ */

.rvod-carousel-wrapper {
    position: relative;
}

.rvod-carousel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--rvod-space-lg);
}

.rvod-carousel-track {
    display: flex;
    gap: var(--rvod-space-md);
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: var(--rvod-space-md);
    scroll-snap-type: x mandatory;
}

.rvod-carousel-track > * {
    scroll-snap-align: start;
}

.rvod-carousel-track.poster-track > * {
    width: 200px;
    min-width: 200px;
}

.rvod-carousel-track.landscape-track > * {
    width: 320px;
    min-width: 320px;
}

.rvod-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rvod-bg-glass-strong);
    border: 1px solid var(--rvod-border-color);
    border-radius: var(--rvod-radius-full);
    color: var(--rvod-text-primary);
    font-size: 1rem;
    z-index: 5;
    transition: all var(--rvod-transition-fast);
    box-shadow: var(--rvod-shadow-md);
}

.rvod-carousel-btn:hover {
    background: var(--rvod-accent);
    color: #000;
    border-color: var(--rvod-accent);
}

.rvod-carousel-btn-prev { left: -22px; }
.rvod-carousel-btn-next { right: -22px; }

/* ═══════════════════════════════════════════════════════
   10. VIDEO PLAYER
   ═══════════════════════════════════════════════════════ */

.rvod-player-wrapper {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: var(--rvod-radius-lg);
    overflow: hidden;
}

.rvod-player-aspect {
    position: relative;
    padding-top: 56.25%;
}

.rvod-player-aspect iframe,
.rvod-player-aspect video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.rvod-bunny-player {
    width: 100%;
}

.rvod-local-player {
    width: 100%;
}

.rvod-local-player video {
    width: 100%;
    display: block;
    background: #000;
}

.rvod-html5-video {
    max-height: 80vh;
}

/* ═══════════════════════════════════════════
 * CAST BAR (Chromecast / AirPlay)
 * ═══════════════════════════════════════════ */
.rvod-cast-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 8px 12px;
    background: var(--rvod-bg-card, #1a1a2e);
    border-top: 1px solid var(--rvod-border-color, rgba(255,255,255,0.08));
    border-radius: 0 0 var(--rvod-radius-lg, 12px) var(--rvod-radius-lg, 12px);
    gap: 12px;
}

.rvod-cast-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border: 1px solid var(--rvod-border-color, rgba(255,255,255,0.15));
    border-radius: 20px;
    background: transparent;
    color: var(--rvod-text-secondary, #a0a0b0);
    cursor: pointer;
    font-size: 0.8rem;
    font-family: inherit;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.rvod-cast-btn:hover {
    background: var(--rvod-accent, #e87c03);
    color: #fff;
    border-color: var(--rvod-accent, #e87c03);
}

.rvod-cast-btn:hover .rvod-cast-icon {
    fill: #fff;
}

.rvod-cast-icon {
    width: 20px;
    height: 20px;
    fill: var(--rvod-text-secondary, #a0a0b0);
    transition: fill 0.2s ease;
}

.rvod-cast-connected {
    fill: var(--rvod-accent, #e87c03);
    animation: rvod-cast-pulse 2s ease-in-out infinite;
}

@keyframes rvod-cast-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.rvod-cast-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(232, 124, 3, 0.1);
    border: 1px solid var(--rvod-accent, #e87c03);
    border-radius: 20px;
    color: var(--rvod-accent, #e87c03);
    font-size: 0.8rem;
}

.rvod-cast-device-name {
    font-weight: 600;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rvod-cast-stop {
    background: transparent;
    border: none;
    color: var(--rvod-text-secondary, #a0a0b0);
    cursor: pointer;
    font-size: 0.75rem;
    text-decoration: underline;
    padding: 0;
    font-family: inherit;
}

.rvod-cast-stop:hover {
    color: #ff4444;
}

/* Casting overlay on video when casting */
.rvod-casting-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 15;
    color: #fff;
    pointer-events: none;
}

.rvod-casting-overlay svg {
    width: 64px;
    height: 64px;
    fill: var(--rvod-accent, #e87c03);
    animation: rvod-cast-pulse 2s ease-in-out infinite;
}

.rvod-casting-overlay .rvod-casting-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.rvod-casting-overlay .rvod-casting-device {
    font-size: 0.85rem;
    color: var(--rvod-accent, #e87c03);
}

/* Responsive cast bar */
@media (max-width: 480px) {
    .rvod-cast-bar {
        padding: 6px 8px;
    }
    .rvod-cast-label {
        display: none;
    }
    .rvod-cast-btn {
        padding: 6px 10px;
    }
    .rvod-cast-device-name {
        max-width: 80px;
    }
}

/* Watermark */
.rvod-watermark {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 10;
    pointer-events: none;
}

.rvod-watermark img {
    width: 100%;
    height: auto;
}

/* Ad Container */
.rvod-ad-container {
    position: absolute;
    inset: 0;
    z-index: 20;
    background: #000;
}

.rvod-ad-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rvod-ad-skip {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 8px 20px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--rvod-radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.rvod-ad-label {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    background: rgba(0,0,0,0.7);
    color: #FFD700;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 3px;
}

/* Player Error */
.rvod-player-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--rvod-space-3xl);
    background: var(--rvod-bg-tertiary);
    color: var(--rvod-text-tertiary);
    text-align: center;
    border-radius: var(--rvod-radius-lg);
    min-height: 300px;
}

.rvod-player-error i {
    font-size: 3rem;
    margin-bottom: var(--rvod-space-md);
    color: var(--rvod-warning);
}

/* Player Poster */
.rvod-player-poster {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background-size: cover;
    background-position: center;
    border-radius: var(--rvod-radius-lg);
    overflow: hidden;
}

.rvod-poster-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    color: #fff;
}

.rvod-poster-overlay i {
    font-size: 4rem;
    margin-bottom: var(--rvod-space-md);
    opacity: 0.8;
}

/* Floating Mini Player (YouTube-style PiP) */
.rvod-mini-player {
    position: fixed;
    bottom: 24px;
    right: 12px;
    width: 400px;
    max-width: calc(100vw - 24px);
    z-index: 9999;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 2px 8px rgba(0,0,0,0.3);
    background: #000;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(120%) scale(0.95);
    opacity: 0;
    pointer-events: none;
    cursor: grab;
    /* Prevent overflow on any screen */
    contain: layout;
}

.rvod-mini-player:active {
    cursor: grabbing;
}

.rvod-mini-player.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
    animation: rvod-slide-in 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.rvod-mini-player-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.7);
    color: #fff;
    border-radius: 50%;
    font-size: 0.75rem;
    z-index: 10;
    cursor: pointer;
}

.rvod-mini-player-title {
    padding: 8px 12px;
    background: var(--rvod-bg-card);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--rvod-text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@keyframes rvod-slide-in {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ═══════════════════════════════════════════════════════
   11. SINGLE VIDEO PAGE
   ═══════════════════════════════════════════════════════ */

.rvod-single-content {
    padding-top: var(--rvod-space-xl);
}

.rvod-single-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: var(--rvod-space-2xl);
    max-width: var(--rvod-max-width);
    margin: 0 auto;
    padding: 0 var(--rvod-space-xl);
}

/* Left Column */
.rvod-single-main {
    min-width: 0;
    overflow: hidden;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.rvod-single-badge {
    display: inline-block;
    padding: var(--rvod-space-xs) var(--rvod-space-md);
    background: var(--rvod-badge-bg);
    color: var(--rvod-badge-text);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: var(--rvod-radius-sm);
    margin-bottom: var(--rvod-space-md);
}

.rvod-single-stats {
    display: flex;
    gap: var(--rvod-space-lg);
    margin-bottom: var(--rvod-space-md);
}

.rvod-single-stat {
    display: flex;
    align-items: center;
    gap: var(--rvod-space-xs);
    font-size: 0.8rem;
    color: var(--rvod-text-secondary);
}

.rvod-single-stat i {
    color: var(--rvod-accent);
}

.rvod-single-title {
    font-family: var(--rvod-font-display);
    font-size: 2.5rem;
    font-weight: 900;
    font-style: italic;
    line-height: 1.1;
    margin-bottom: var(--rvod-space-md);
    color: var(--rvod-text-primary);
}

.rvod-single-meta {
    display: flex;
    align-items: center;
    gap: var(--rvod-space-md);
    flex-wrap: wrap;
    margin-bottom: var(--rvod-space-lg);
}

.rvod-single-meta-item {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--rvod-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rvod-genre-tags {
    display: flex;
    gap: var(--rvod-space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--rvod-space-md);
}

.rvod-genre-tag {
    padding: 6px 16px;
    background: var(--rvod-bg-tertiary);
    color: var(--rvod-text-secondary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--rvod-radius-full);
    border: 1px solid var(--rvod-border-color);
    transition: all var(--rvod-transition-fast);
}

.rvod-genre-tag:hover {
    border-color: var(--rvod-accent);
    color: var(--rvod-accent);
}

.rvod-hashtags {
    display: flex;
    gap: var(--rvod-space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--rvod-space-lg);
}

.rvod-hashtag {
    font-size: 0.8rem;
    color: var(--rvod-accent);
    font-weight: 600;
}

.rvod-credits {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--rvod-space-lg);
    margin-bottom: var(--rvod-space-xl);
    padding: var(--rvod-space-lg);
    background: var(--rvod-bg-tertiary);
    border-radius: var(--rvod-radius-md);
    border: 1px solid var(--rvod-border-color);
}

.rvod-credit-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rvod-text-muted);
    margin-bottom: 4px;
}

.rvod-credit-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--rvod-text-primary);
}

.rvod-synopsis {
    font-size: 0.95rem;
    color: var(--rvod-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--rvod-space-md);
    /* Prevent long URLs from causing horizontal scroll */
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.rvod-synopsis a,
.rvod-synopsis-full a {
    word-break: break-all;
}

.rvod-synopsis-full {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

.rvod-synopsis-toggle {
    display: inline-flex;
    align-items: center;
    gap: var(--rvod-space-xs);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--rvod-accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity var(--rvod-transition-fast);
}

.rvod-synopsis-toggle:hover {
    opacity: 0.8;
}

/* Right Column / Sidebar */
.rvod-single-sidebar {
    position: sticky;
    top: calc(var(--rvod-nav-height) + var(--rvod-space-xl));
    align-self: start;
}

.rvod-purchase-card {
    background: var(--rvod-bg-card);
    border: 1px solid var(--rvod-border-color);
    border-radius: var(--rvod-radius-lg);
    padding: var(--rvod-space-xl);
}

.rvod-purchase-card .rvod-btn {
    width: 100%;
    margin-bottom: var(--rvod-space-md);
}

.rvod-purchase-card .rvod-btn:last-child {
    margin-bottom: 0;
}

.rvod-purchase-divider {
    display: flex;
    align-items: center;
    gap: var(--rvod-space-md);
    margin: var(--rvod-space-md) 0;
    color: var(--rvod-text-muted);
    font-size: 0.75rem;
}

.rvod-purchase-divider::before,
.rvod-purchase-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--rvod-border-color);
}

.rvod-sidebar-actions {
    margin-top: var(--rvod-space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--rvod-space-sm);
}

.rvod-sidebar-action {
    display: flex;
    align-items: center;
    gap: var(--rvod-space-md);
    padding: var(--rvod-space-md);
    border-radius: var(--rvod-radius-md);
    color: var(--rvod-text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    transition: all var(--rvod-transition-fast);
    cursor: pointer;
}

.rvod-sidebar-action:hover {
    background: var(--rvod-bg-tertiary);
    color: var(--rvod-text-primary);
}

.rvod-sidebar-action i {
    width: 20px;
    text-align: center;
    color: var(--rvod-accent);
}

/* ═══════════════════════════════════════════════════════
   12. REVIEWS / COMMENTS
   ═══════════════════════════════════════════════════════ */

.rvod-reviews-section {
    margin-top: var(--rvod-space-3xl);
    padding-top: var(--rvod-space-2xl);
    border-top: 1px solid var(--rvod-border-color);
}

.rvod-reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--rvod-space-xl);
}

.rvod-reviews-count {
    font-size: 0.75rem;
    color: var(--rvod-text-tertiary);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.rvod-review-card {
    display: flex;
    gap: var(--rvod-space-md);
    padding: var(--rvod-space-lg);
    background: var(--rvod-bg-card);
    border: 1px solid var(--rvod-border-color);
    border-radius: var(--rvod-radius-md);
    margin-bottom: var(--rvod-space-md);
}

.rvod-review-avatar {
    flex-shrink: 0;
}

.rvod-review-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.rvod-review-body {
    flex: 1;
    min-width: 0;
}

.rvod-review-header {
    display: flex;
    align-items: center;
    gap: var(--rvod-space-md);
    margin-bottom: var(--rvod-space-sm);
    flex-wrap: wrap;
}

.rvod-review-author {
    font-weight: 700;
    font-size: 0.85rem;
}

.rvod-review-stars {
    display: flex;
    gap: 2px;
    color: var(--rvod-accent);
    font-size: 0.7rem;
}

.rvod-review-date {
    font-size: 0.75rem;
    color: var(--rvod-text-muted);
}

.rvod-review-text {
    font-size: 0.88rem;
    color: var(--rvod-text-secondary);
    line-height: 1.7;
}

/* Review Form */
.rvod-review-form {
    padding: var(--rvod-space-xl);
    background: var(--rvod-bg-card);
    border: 1px solid var(--rvod-border-color);
    border-radius: var(--rvod-radius-md);
    margin-top: var(--rvod-space-lg);
}

.rvod-review-form-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: var(--rvod-space-md);
}

.rvod-star-rating {
    display: flex;
    gap: 4px;
    margin-bottom: var(--rvod-space-md);
}

.rvod-star-rating i {
    font-size: 1.25rem;
    color: var(--rvod-text-muted);
    cursor: pointer;
    transition: color var(--rvod-transition-fast);
}

.rvod-star-rating i.active,
.rvod-star-rating i:hover {
    color: var(--rvod-accent);
}

.rvod-review-textarea {
    width: 100%;
    min-height: 100px;
    padding: var(--rvod-space-md);
    background: var(--rvod-bg-input);
    border: 1px solid var(--rvod-border-color);
    border-radius: var(--rvod-radius-md);
    color: var(--rvod-text-primary);
    font-family: var(--rvod-font-primary);
    font-size: 0.9rem;
    resize: vertical;
    outline: none;
    transition: border-color var(--rvod-transition-fast);
}

.rvod-review-textarea:focus {
    border-color: var(--rvod-accent);
}

/* ═══════════════════════════════════════════════════════
   13. ARCHIVE / CATEGORY PAGE
   ═══════════════════════════════════════════════════════ */

.rvod-archive-header {
    padding-top: calc(var(--rvod-nav-height) + var(--rvod-space-2xl));
    padding-bottom: var(--rvod-space-xl);
}

.rvod-archive-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rvod-accent);
    margin-bottom: var(--rvod-space-sm);
}

.rvod-archive-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: var(--rvod-space-lg);
}

/* Filters */
.rvod-filters {
    display: flex;
    align-items: center;
    gap: var(--rvod-space-md);
    flex-wrap: wrap;
    margin-bottom: var(--rvod-space-xl);
}

.rvod-filter-select {
    padding: 10px 36px 10px 16px;
    background: var(--rvod-bg-input);
    border: 1px solid var(--rvod-border-color);
    border-radius: var(--rvod-radius-md);
    color: var(--rvod-text-primary);
    font-size: 0.8rem;
    font-weight: 600;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer;
    outline: none;
    transition: border-color var(--rvod-transition-fast);
}

.rvod-filter-select:focus {
    border-color: var(--rvod-accent);
}

.rvod-view-toggle {
    display: flex;
    gap: 4px;
    margin-left: auto;
}

.rvod-view-toggle-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rvod-bg-input);
    border: 1px solid var(--rvod-border-color);
    border-radius: var(--rvod-radius-sm);
    color: var(--rvod-text-tertiary);
    font-size: 0.9rem;
    transition: all var(--rvod-transition-fast);
}

.rvod-view-toggle-btn.active {
    background: var(--rvod-accent);
    color: #000;
    border-color: var(--rvod-accent);
}

/* Video Grid */
.rvod-video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--rvod-space-lg);
}

.rvod-video-grid.list-view {
    grid-template-columns: 1fr;
}

.rvod-video-grid.list-view .rvod-card-poster {
    display: grid;
    grid-template-columns: 180px 1fr;
}

.rvod-video-grid.list-view .rvod-card-poster-img {
    aspect-ratio: 2/3;
}

/* Curator's Choice Spotlight */
.rvod-spotlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--rvod-space-xl);
    padding: var(--rvod-space-xl);
    background: var(--rvod-bg-card);
    border: 1px solid var(--rvod-border-color);
    border-radius: var(--rvod-radius-lg);
    margin: var(--rvod-space-2xl) 0;
}

.rvod-spotlight-img {
    border-radius: var(--rvod-radius-md);
    overflow: hidden;
    aspect-ratio: 16/9;
}

.rvod-spotlight-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rvod-spotlight-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rvod-spotlight-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rvod-accent);
    margin-bottom: var(--rvod-space-sm);
}

.rvod-spotlight-title {
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: var(--rvod-space-md);
}

.rvod-spotlight-desc {
    font-size: 0.9rem;
    color: var(--rvod-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--rvod-space-lg);
}

/* Pagination */
.rvod-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: var(--rvod-space-md);
    margin-top: var(--rvod-space-2xl);
}

.rvod-pagination-count {
    font-size: 0.75rem;
    color: var(--rvod-text-muted);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════
   14. DASHBOARD
   ═══════════════════════════════════════════════════════ */

.rvod-dashboard-layout {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.rvod-sidebar {
    position: fixed;
    top: var(--rvod-nav-height);
    left: 0;
    width: var(--rvod-sidebar-width);
    height: calc(100vh - var(--rvod-nav-height));
    background: var(--rvod-bg-secondary);
    border-right: 1px solid var(--rvod-border-color);
    display: flex;
    flex-direction: column;
    z-index: 100;
    overflow-y: auto;
}

.admin-bar .rvod-sidebar {
    top: calc(var(--rvod-nav-height) + 32px);
    height: calc(100vh - var(--rvod-nav-height) - 32px);
}

.rvod-sidebar-header {
    padding: var(--rvod-space-xl);
    border-bottom: 1px solid var(--rvod-border-color);
}

.rvod-sidebar-subtitle {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rvod-text-muted);
    margin-top: var(--rvod-space-xs);
}

.rvod-sidebar-nav {
    flex: 1;
    padding: var(--rvod-space-md);
}

.rvod-sidebar-nav-list {
    list-style: none;
}

.rvod-sidebar-nav-item {
    margin-bottom: 4px;
}

.rvod-sidebar-nav-link {
    display: flex;
    align-items: center;
    gap: var(--rvod-space-md);
    padding: 12px var(--rvod-space-md);
    border-radius: var(--rvod-radius-md);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--rvod-text-secondary);
    transition: all var(--rvod-transition-fast);
}

.rvod-sidebar-nav-link:hover {
    background: var(--rvod-bg-tertiary);
    color: var(--rvod-text-primary);
}

.rvod-sidebar-nav-link.active {
    background: rgba(240, 136, 4, 0.1);
    color: var(--rvod-accent);
}

.rvod-sidebar-nav-link i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.rvod-sidebar-footer {
    padding: var(--rvod-space-md);
    border-top: 1px solid var(--rvod-border-color);
}

/* Dashboard Main */
.rvod-dashboard-main {
    margin-left: var(--rvod-sidebar-width);
    padding: var(--rvod-space-xl);
    flex: 1;
    min-width: 0;
}

.rvod-dashboard-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--rvod-space-xl);
}

.rvod-dashboard-welcome {
    font-size: 1.1rem;
    font-weight: 600;
}

.rvod-dashboard-welcome span {
    color: var(--rvod-accent);
}

.rvod-dashboard-topbar-actions {
    display: flex;
    align-items: center;
    gap: var(--rvod-space-md);
}

/* Dashboard Hero */
.rvod-dash-hero {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: var(--rvod-space-xl);
    margin-bottom: var(--rvod-space-2xl);
}

.rvod-dash-hero-main {
    position: relative;
    border-radius: var(--rvod-radius-lg);
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: flex-end;
    padding: var(--rvod-space-xl);
}

.rvod-dash-hero-main .rvod-hero-bg {
    position: absolute;
    inset: 0;
}

.rvod-dash-hero-main .rvod-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rvod-dash-hero-main .rvod-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 100%);
}

.rvod-dash-hero-content {
    position: relative;
    z-index: 2;
}

.rvod-dash-hero-sidebar {
    background: var(--rvod-bg-card);
    border: 1px solid var(--rvod-border-color);
    border-radius: var(--rvod-radius-lg);
    padding: var(--rvod-space-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ═══════════════════════════════════════════════════════
   15. FOOTER
   ═══════════════════════════════════════════════════════ */

.rvod-footer {
    padding: var(--rvod-space-2xl) 0;
    border-top: 1px solid var(--rvod-border-color);
    margin-top: var(--rvod-space-3xl);
}

.rvod-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--rvod-space-lg);
}

.rvod-footer-links {
    display: flex;
    gap: var(--rvod-space-lg);
    flex-wrap: wrap;
}

.rvod-footer-link {
    font-size: 0.8rem;
    color: var(--rvod-text-tertiary);
    font-weight: 500;
    transition: color var(--rvod-transition-fast);
}

.rvod-footer-link:hover {
    color: var(--rvod-text-primary);
}

.rvod-footer-social {
    display: flex;
    gap: var(--rvod-space-md);
}

.rvod-footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--rvod-radius-full);
    background: var(--rvod-bg-tertiary);
    color: var(--rvod-text-tertiary);
    font-size: 0.9rem;
    transition: all var(--rvod-transition-fast);
}

.rvod-footer-social a:hover {
    background: var(--rvod-accent);
    color: #000;
}

.rvod-footer-copyright {
    width: 100%;
    text-align: center;
    font-size: 0.75rem;
    color: var(--rvod-text-muted);
    margin-top: var(--rvod-space-lg);
    padding-top: var(--rvod-space-lg);
    border-top: 1px solid var(--rvod-border-color);
}

/* ═══════════════════════════════════════════════════════
   16. MOBILE BOTTOM NAV
   ═══════════════════════════════════════════════════════ */

.rvod-mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--rvod-mobile-nav-height);
    background: var(--rvod-bg-glass-strong);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--rvod-border-color);
    z-index: 1000;
}

.rvod-mobile-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100%;
    padding: 0 var(--rvod-space-md);
}

.rvod-mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--rvod-text-tertiary);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color var(--rvod-transition-fast);
}

.rvod-mobile-nav-item i {
    font-size: 1.2rem;
}

.rvod-mobile-nav-item.active {
    color: var(--rvod-accent);
}

/* ═══════════════════════════════════════════════════════
   17. UTILITIES
   ═══════════════════════════════════════════════════════ */

.rvod-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.rvod-text-accent { color: var(--rvod-accent); }
.rvod-text-muted { color: var(--rvod-text-muted); }
.rvod-text-center { text-align: center; }

.rvod-mt-sm { margin-top: var(--rvod-space-sm); }
.rvod-mt-md { margin-top: var(--rvod-space-md); }
.rvod-mt-lg { margin-top: var(--rvod-space-lg); }
.rvod-mt-xl { margin-top: var(--rvod-space-xl); }

.rvod-mb-sm { margin-bottom: var(--rvod-space-sm); }
.rvod-mb-md { margin-bottom: var(--rvod-space-md); }
.rvod-mb-lg { margin-bottom: var(--rvod-space-lg); }
.rvod-mb-xl { margin-bottom: var(--rvod-space-xl); }

.rvod-flex { display: flex; }
.rvod-flex-center { align-items: center; justify-content: center; }
.rvod-flex-between { justify-content: space-between; }
.rvod-flex-wrap { flex-wrap: wrap; }
.rvod-gap-sm { gap: var(--rvod-space-sm); }
.rvod-gap-md { gap: var(--rvod-space-md); }

/* Toast Notification */
.rvod-toast {
    position: fixed;
    bottom: 90px;
    right: 24px;
    padding: 14px 24px;
    background: var(--rvod-bg-card);
    border: 1px solid var(--rvod-border-color);
    border-radius: var(--rvod-radius-md);
    box-shadow: var(--rvod-shadow-lg);
    color: var(--rvod-text-primary);
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10000;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.rvod-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.rvod-toast.success { border-left: 4px solid var(--rvod-success); }
.rvod-toast.error { border-left: 4px solid var(--rvod-error); }

/* Loading Spinner */
.rvod-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--rvod-border-color);
    border-top-color: var(--rvod-accent);
    border-radius: 50%;
    animation: rvod-spin 0.8s linear infinite;
}

@keyframes rvod-spin {
    to { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════════════════
   18. RESPONSIVE — TABLET (max-width: 1024px)
   ═══════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .rvod-container,
    .rvod-container-fluid {
        padding: 0 var(--rvod-space-md);
    }

    .rvod-hero-title {
        font-size: 2.8rem;
    }

    .rvod-single-layout {
        grid-template-columns: 1fr;
    }

    .rvod-single-sidebar {
        position: static;
    }

    .rvod-video-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .rvod-spotlight {
        grid-template-columns: 1fr;
    }

    .rvod-dash-hero {
        grid-template-columns: 1fr;
    }

    .rvod-carousel-track.poster-track > * {
        width: 170px;
        min-width: 170px;
    }

    .rvod-carousel-track.landscape-track > * {
        width: 280px;
        min-width: 280px;
    }

    .rvod-carousel-btn {
        display: none;
    }

    /* Dashboard sidebar becomes collapsible */
    .rvod-sidebar {
        transform: translateX(-100%);
        transition: transform var(--rvod-transition);
    }

    .rvod-sidebar.open {
        transform: translateX(0);
    }

    .rvod-dashboard-main {
        margin-left: 0;
    }

    .rvod-mini-player {
        width: 280px;
        max-width: calc(100vw - 24px);
        right: 12px;
    }
}

/* ═══════════════════════════════════════════════════════
   19. RESPONSIVE — MOBILE (max-width: 768px)
   ═══════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .rvod-header-inner {
        padding: 0 var(--rvod-space-md);
    }

    .rvod-main-nav {
        display: none;
    }

    .rvod-mobile-menu-btn {
        display: flex;
    }

    .rvod-search-bar {
        width: 160px;
    }

    .rvod-search-bar.expanded {
        width: 200px;
    }

    .rvod-hero {
        min-height: 70vh;
    }

    .rvod-hero-title {
        font-size: 2rem;
    }

    .rvod-hero-synopsis {
        font-size: 0.88rem;
    }

    .rvod-hero-actions {
        flex-direction: column;
    }

    .rvod-hero-actions .rvod-btn {
        width: 100%;
    }

    .rvod-single-title {
        font-size: 1.75rem;
    }

    .rvod-video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--rvod-space-md);
    }

    .rvod-archive-title {
        font-size: 1.75rem;
    }

    .rvod-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .rvod-view-toggle {
        margin-left: 0;
    }

    .rvod-credits {
        grid-template-columns: 1fr;
    }

    .rvod-mobile-nav {
        display: block;
    }

    .rvod-page {
        padding-bottom: var(--rvod-mobile-nav-height);
    }

    .rvod-carousel-track.poster-track > * {
        width: 150px;
        min-width: 150px;
    }

    .rvod-carousel-track.landscape-track > * {
        width: 260px;
        min-width: 260px;
    }

    .rvod-mini-player {
        width: 220px;
        max-width: calc(100vw - 24px);
        bottom: calc(var(--rvod-mobile-nav-height) + 12px);
        right: 12px;
    }

    .rvod-footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .rvod-footer-links {
        justify-content: center;
    }

    .rvod-footer-social {
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════════════════
   20. RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ═══════════════════════════════════════════════════════ */

@media (max-width: 480px) {
    .rvod-hero-title {
        font-size: 1.6rem;
    }

    .rvod-video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--rvod-space-sm);
    }

    .rvod-card-poster-info {
        padding: var(--rvod-space-sm);
    }

    .rvod-card-poster-title {
        font-size: 0.78rem;
    }

    .rvod-section-heading {
        font-size: 1.3rem;
    }

    .rvod-single-title {
        font-size: 1.4rem;
    }

    .rvod-mini-player {
        width: 180px;
        max-width: calc(100vw - 16px);
        right: 8px;
        bottom: calc(var(--rvod-mobile-nav-height) + 8px);
        border-radius: 8px;
    }
}

/* ═══════════════════════════════════════════════════════
   21. PRINT STYLES
   ═══════════════════════════════════════════════════════ */

@media print {
    .rvod-header,
    .rvod-footer,
    .rvod-mobile-nav,
    .rvod-mini-player,
    .rvod-toast {
        display: none !important;
    }
}


/* ═══════════════════════════════════════════════════════
   22. ADMIN BAR FIX
   ═══════════════════════════════════════════════════════ */

body.admin-bar .rvod-header {
    top: 32px;
}

body.admin-bar .rvod-hero {
    padding-top: calc(var(--rvod-nav-height) + 32px);
}

body.admin-bar .rvod-page-content {
    padding-top: calc(var(--rvod-nav-height) + 32px);
}

@media screen and (max-width: 782px) {
    body.admin-bar .rvod-header {
        top: 46px;
    }
    body.admin-bar .rvod-hero {
        padding-top: calc(var(--rvod-nav-height) + 46px);
    }
    body.admin-bar .rvod-page-content {
        padding-top: calc(var(--rvod-nav-height) + 46px);
    }
}

@media screen and (max-width: 600px) {
    body.admin-bar .rvod-header {
        top: 0;
    }
}

/* ═══════════════════════════════════════════════════════
   23. SECTION LABELS & OVERLAP
   ═══════════════════════════════════════════════════════ */

.rvod-section-label {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--rvod-accent);
    margin-bottom: var(--rvod-space-sm);
    display: block;
}

.rvod-section-overlap {
    margin-top: -64px;
    position: relative;
    z-index: 20;
}

/* ═══════════════════════════════════════════════════════
   24. BENTO GRID (Community Favorites)
   ═══════════════════════════════════════════════════════ */

.rvod-bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--rvod-space-lg);
    margin-top: var(--rvod-space-lg);
}

.rvod-bento-featured {
    position: relative;
    border-radius: var(--rvod-radius-lg);
    overflow: hidden;
    background: var(--rvod-bg-card);
    min-height: 500px;
}

.rvod-bento-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.rvod-bento-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 40%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--rvod-space-xl);
}

.rvod-bento-featured-title {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #fff;
    margin: var(--rvod-space-md) 0 var(--rvod-space-sm);
}

.rvod-bento-featured-desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    max-width: 400px;
    margin-bottom: var(--rvod-space-lg);
}

.rvod-bento-featured-actions {
    display: flex;
    gap: var(--rvod-space-md);
}

.rvod-play-circle,
.rvod-add-circle {
    width: 48px;
    height: 48px;
    border-radius: var(--rvod-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform var(--rvod-transition);
    border: none;
}

.rvod-play-circle {
    background: #fff;
    color: #000;
}

.rvod-play-circle:hover {
    transform: scale(1.1);
}

.rvod-add-circle {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    color: #fff;
}

.rvod-add-circle:hover {
    background: rgba(255,255,255,0.1);
}

.rvod-bento-small-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: var(--rvod-space-lg);
}

.rvod-bento-small-card {
    position: relative;
    border-radius: var(--rvod-radius-md);
    overflow: hidden;
    background: var(--rvod-bg-card);
    cursor: pointer;
    transition: transform var(--rvod-transition);
}

.rvod-bento-small-card:hover {
    transform: scale(1.02);
}

.rvod-bento-small-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rvod-bento-small-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--rvod-space-md);
}

.rvod-bento-small-overlay h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.rvod-bento-small-overlay span {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════
   25. CTA BANNER
   ═══════════════════════════════════════════════════════ */

.rvod-cta-banner {
    text-align: center;
    padding: var(--rvod-space-3xl) var(--rvod-space-xl);
    background: var(--rvod-bg-tertiary);
    border-radius: var(--rvod-radius-xl);
    border: 1px solid var(--rvod-border-color);
}

.rvod-cta-heading {
    font-size: 2rem;
    font-weight: 900;
    color: var(--rvod-text-primary);
    margin: var(--rvod-space-md) 0;
}

.rvod-cta-desc {
    font-size: 1rem;
    color: var(--rvod-text-secondary);
    max-width: 500px;
    margin: 0 auto var(--rvod-space-xl);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   26. GLASS BUTTON VARIANT
   ═══════════════════════════════════════════════════════ */

.rvod-btn-glass {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--rvod-text-primary);
    padding: 14px 28px;
    border-radius: var(--rvod-radius-md);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background var(--rvod-transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.rvod-btn-glass:hover {
    background: rgba(255,255,255,0.15);
}

/* ═══════════════════════════════════════════════════════
   27. DEMO CARD OVERLAY ELEMENTS
   ═══════════════════════════════════════════════════════ */

.rvod-card-genre {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rvod-accent);
}

.rvod-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 4px 0;
}

.rvod-card-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.rvod-card-bookmark {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: var(--rvod-radius-full);
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--rvod-transition);
    z-index: 3;
}

.rvod-card-bookmark:hover {
    background: var(--rvod-accent);
    color: #000;
}

/* ═══════════════════════════════════════════════════════
   28. LANDSCAPE CARD EXTRAS
   ═══════════════════════════════════════════════════════ */

.rvod-card-landscape-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: opacity var(--rvod-transition);
}

.rvod-card-landscape:hover .rvod-card-landscape-play {
    opacity: 1;
}

.rvod-card-landscape-play i {
    font-size: 3rem;
    color: #fff;
}

.rvod-card-landscape-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.rvod-card-landscape-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--rvod-text-primary);
}

.rvod-card-landscape-synopsis {
    font-size: 0.8rem;
    color: var(--rvod-text-secondary);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 4px;
}

.rvod-card-bookmark-sm {
    background: none;
    border: none;
    color: var(--rvod-text-tertiary);
    cursor: pointer;
    font-size: 0.9rem;
    transition: color var(--rvod-transition);
    padding: 0;
}

.rvod-card-bookmark-sm:hover {
    color: var(--rvod-accent);
}

/* ═══════════════════════════════════════════════════════
   29. BENTO GRID RESPONSIVE
   ═══════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .rvod-bento-grid {
        grid-template-columns: 1fr;
    }

    .rvod-bento-featured {
        min-height: 400px;
    }

    .rvod-bento-small-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }
}

@media (max-width: 640px) {
    .rvod-bento-featured {
        min-height: 300px;
    }

    .rvod-bento-featured-title {
        font-size: 1.4rem;
    }

    .rvod-bento-small-grid {
        grid-template-columns: 1fr;
    }

    .rvod-cta-heading {
        font-size: 1.4rem;
    }
}

/* ═══════════════════════════════════════════════════════
   30. HIDE SCROLLBAR UTILITY
   ═══════════════════════════════════════════════════════ */

.rvod-hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.rvod-hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}


/* ═══════════════════════════════════════════════════════
   31. EMPTY SECTION STATE
   ═══════════════════════════════════════════════════════ */

.rvod-empty-section {
    text-align: center;
    padding: var(--rvod-space-3xl) var(--rvod-space-xl);
    color: var(--rvod-text-muted);
}

.rvod-empty-section i {
    font-size: 3rem;
    margin-bottom: var(--rvod-space-lg);
    opacity: 0.4;
    display: block;
}

.rvod-empty-section p {
    font-size: 0.9rem;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   32. SETTINGS PAGE STYLES
   ═══════════════════════════════════════════════════════ */

.rvod-settings-card {
    background: var(--rvod-bg-card);
    border: 1px solid var(--rvod-border-color);
    border-radius: var(--rvod-radius-lg);
    padding: var(--rvod-space-xl);
}

.rvod-settings-card-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--rvod-space-xl);
    padding-bottom: var(--rvod-space-md);
    border-bottom: 1px solid var(--rvod-border-color);
    display: flex;
    align-items: center;
    gap: var(--rvod-space-sm);
    color: var(--rvod-text-primary);
}

.rvod-settings-card-title i {
    color: var(--rvod-accent);
}

.rvod-settings-avatar-section {
    display: flex;
    align-items: center;
    gap: var(--rvod-space-xl);
    margin-bottom: var(--rvod-space-xl);
    padding-bottom: var(--rvod-space-xl);
    border-bottom: 1px solid var(--rvod-border-color);
}

.rvod-settings-avatar-preview {
    flex-shrink: 0;
}

.rvod-settings-avatar-preview img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--rvod-accent);
}

.rvod-settings-avatar-controls {
    display: flex;
    flex-direction: column;
    gap: var(--rvod-space-sm);
}

.rvod-settings-help {
    font-size: 0.75rem;
    color: var(--rvod-text-muted);
    margin-top: 4px;
}

.rvod-settings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--rvod-space-lg);
}

.rvod-settings-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rvod-settings-field label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--rvod-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rvod-input {
    width: 100%;
    padding: 10px 14px;
    background: var(--rvod-bg-tertiary);
    border: 1px solid var(--rvod-border-color);
    border-radius: var(--rvod-radius-md);
    color: var(--rvod-text-primary);
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color var(--rvod-transition-fast);
}

.rvod-input:focus {
    outline: none;
    border-color: var(--rvod-accent);
    box-shadow: 0 0 0 3px rgba(240, 136, 4, 0.15);
}

.rvod-input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

textarea.rvod-input {
    resize: vertical;
    min-height: 80px;
}

/* Stats Grid */
.rvod-settings-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--rvod-space-lg);
}

.rvod-settings-stat {
    text-align: center;
    padding: var(--rvod-space-lg);
    background: var(--rvod-bg-tertiary);
    border-radius: var(--rvod-radius-md);
}

.rvod-settings-stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--rvod-accent);
}

.rvod-settings-stat-label {
    font-size: 0.75rem;
    color: var(--rvod-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════
   33. ALERT MESSAGES
   ═══════════════════════════════════════════════════════ */

.rvod-alert {
    padding: 12px var(--rvod-space-lg);
    border-radius: var(--rvod-radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--rvod-space-lg);
    display: flex;
    align-items: center;
    gap: var(--rvod-space-sm);
}

.rvod-alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10B981;
}

.rvod-alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #EF4444;
}

/* ═══════════════════════════════════════════════════════
   34. DASHBOARD SIDEBAR MOBILE TOGGLE
   ═══════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .rvod-dash-sidebar-toggle {
        display: flex !important;
    }

    .rvod-settings-grid {
        grid-template-columns: 1fr;
    }

    .rvod-settings-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .rvod-settings-avatar-section {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .rvod-settings-stats-grid {
        grid-template-columns: 1fr;
    }

    .rvod-settings-card {
        padding: var(--rvod-space-lg);
    }
}


/* ═══════════════════════════════════════════════════════
   35. ALL-VIDEOS / ARCHIVE PAGE FIX
   ═══════════════════════════════════════════════════════ */

.rvod-archive-content {
    min-height: 100vh;
    background: var(--rvod-bg-primary);
}

.rvod-filters-bar {
    display: flex;
    align-items: center;
    gap: var(--rvod-space-md);
    flex-wrap: wrap;
    margin-bottom: var(--rvod-space-xl);
    padding: var(--rvod-space-md) var(--rvod-space-lg);
    background: var(--rvod-bg-card);
    border: 1px solid var(--rvod-border-color);
    border-radius: var(--rvod-radius-lg);
}

.rvod-filters-form {
    display: flex;
    align-items: center;
    gap: var(--rvod-space-sm);
    flex-wrap: wrap;
    flex: 1;
}

.rvod-filter-group {
    position: relative;
}

.rvod-filter-group .rvod-filter-select {
    min-width: 130px;
}

.rvod-filter-search {
    position: relative;
    display: flex;
    align-items: center;
}

.rvod-filter-search i {
    position: absolute;
    left: 12px;
    color: var(--rvod-text-muted);
    font-size: 0.8rem;
    pointer-events: none;
}

.rvod-filter-search-input {
    padding: 10px 16px 10px 34px;
    background: var(--rvod-bg-input);
    border: 1px solid var(--rvod-border-color);
    border-radius: var(--rvod-radius-md);
    color: var(--rvod-text-primary);
    font-size: 0.8rem;
    font-weight: 600;
    outline: none;
    transition: border-color var(--rvod-transition-fast);
    min-width: 160px;
}

.rvod-filter-search-input:focus {
    border-color: var(--rvod-accent);
}

.rvod-filter-search-input::placeholder {
    color: var(--rvod-text-muted);
}

.rvod-archive-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--rvod-space-lg);
}

.rvod-archive-grid.list-view {
    grid-template-columns: 1fr;
}

.rvod-archive-grid.list-view .rvod-card-poster {
    display: grid;
    grid-template-columns: 180px 1fr;
}

.rvod-view-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rvod-bg-input);
    border: 1px solid var(--rvod-border-color);
    border-radius: var(--rvod-radius-sm);
    color: var(--rvod-text-tertiary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--rvod-transition-fast);
}

.rvod-view-btn.active {
    background: var(--rvod-accent);
    color: #000;
    border-color: var(--rvod-accent);
}

.rvod-view-btn:hover:not(.active) {
    border-color: var(--rvod-border-hover);
    color: var(--rvod-text-primary);
}

.rvod-curators-choice {
    grid-column: 1 / -1;
}

.rvod-curators-choice-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--rvod-space-xl);
    padding: var(--rvod-space-xl);
    background: var(--rvod-bg-card);
    border: 1px solid var(--rvod-border-color);
    border-radius: var(--rvod-radius-lg);
}

.rvod-curators-choice-img {
    border-radius: var(--rvod-radius-md);
    overflow: hidden;
    aspect-ratio: 16/9;
}

.rvod-curators-choice-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rvod-curators-choice-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rvod-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--rvod-space-lg);
    margin-top: var(--rvod-space-2xl);
    padding: var(--rvod-space-lg) 0;
}

.rvod-pagination-info {
    font-size: 0.8rem;
    color: var(--rvod-text-muted);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .rvod-archive-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .rvod-curators-choice-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .rvod-archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rvod-filters-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .rvod-filters-form {
        flex-direction: column;
        align-items: stretch;
    }

    .rvod-filter-group .rvod-filter-select {
        width: 100%;
    }

    .rvod-filter-search-input {
        width: 100%;
    }

    .rvod-view-toggle {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .rvod-archive-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════
   36. BUTTON SPECIFICITY FIX (override theme styles)
   ═══════════════════════════════════════════════════════ */

.rvod-dashboard button.rvod-btn.rvod-btn-primary,
.rvod-dashboard .rvod-btn.rvod-btn-primary,
button.rvod-btn.rvod-btn-primary,
.rvod-btn.rvod-btn-primary {
    background: linear-gradient(135deg, #F08804 0%, #E07B00 100%) !important;
    background-color: #F08804 !important;
    color: #FFFFFF !important;
    border: 2px solid transparent !important;
    opacity: 1 !important;
    cursor: pointer;
}

.rvod-dashboard button.rvod-btn.rvod-btn-primary:hover,
.rvod-dashboard .rvod-btn.rvod-btn-primary:hover,
button.rvod-btn.rvod-btn-primary:hover,
.rvod-btn.rvod-btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(240, 136, 4, 0.4);
    color: #FFFFFF !important;
}

.rvod-dashboard button.rvod-btn.rvod-btn-outline,
.rvod-dashboard .rvod-btn.rvod-btn-outline,
button.rvod-btn.rvod-btn-outline,
.rvod-btn.rvod-btn-outline {
    background: transparent !important;
    color: var(--rvod-text-primary) !important;
    border: 2px solid var(--rvod-border-color) !important;
    opacity: 1 !important;
    cursor: pointer;
}

.rvod-dashboard button.rvod-btn.rvod-btn-outline:hover,
.rvod-dashboard .rvod-btn.rvod-btn-outline:hover,
button.rvod-btn.rvod-btn-outline:hover,
.rvod-btn.rvod-btn-outline:hover {
    background: var(--rvod-bg-card-hover) !important;
    border-color: var(--rvod-border-hover) !important;
}

/* ═══════════════════════════════════════════════════════
   37. HERO VIDEO BACKGROUND
   ═══════════════════════════════════════════════════════ */

.rvod-hero {
    position: relative;
    overflow: hidden;
}

.rvod-hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.rvod-hero-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* On mobile, show video background (muted autoplay supported on modern mobile browsers) */
@media (max-width: 768px) {
    .rvod-hero-video-bg {
        display: block !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        min-width: 100% !important;
        min-height: 100% !important;
        width: auto !important;
        height: auto !important;
        object-fit: cover !important;
    }
    .rvod-hero-img-bg {
        display: none !important;
    }
    /* If JS detects autoplay truly failed after retry, show image instead */
    .rvod-hero--video-failed .rvod-hero-video-bg {
        display: none !important;
    }
    .rvod-hero--video-failed .rvod-hero-img-bg {
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
}

/* When no video/image, use gradient fallback */
.rvod-hero--no-media {
    background: linear-gradient(135deg, #0a0a0b 0%, #1a1a2e 50%, #16213e 100%) !important;
}

.rvod-hero .rvod-hero-content {
    position: relative;
    z-index: 2;
}

.rvod-hero .rvod-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.rvod-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, var(--rvod-bg-primary) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
   38. BUDDYPRESS CUSTOM PROFILE TEMPLATE
   ═══════════════════════════════════════════════════════ */

.rvod-profile-page {
    min-height: 100vh;
    background: var(--rvod-bg-primary);
    color: var(--rvod-text-primary);
}

.rvod-profile-cover {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.rvod-profile-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.rvod-profile-cover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, var(--rvod-bg-primary) 0%, transparent 100%);
    pointer-events: none;
}

.rvod-profile-header {
    position: relative;
    max-width: 1200px;
    margin: -80px auto 0;
    padding: 0 var(--rvod-space-xl);
    z-index: 5;
}

.rvod-profile-header-inner {
    display: flex;
    align-items: flex-end;
    gap: var(--rvod-space-xl);
}

.rvod-profile-avatar-wrap {
    flex-shrink: 0;
}

.rvod-profile-avatar-wrap img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid var(--rvod-bg-primary);
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.rvod-profile-info {
    flex: 1;
    padding-bottom: var(--rvod-space-sm);
}

.rvod-profile-name {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: var(--rvod-space-xs);
}

.rvod-profile-handle {
    font-size: 0.85rem;
    color: var(--rvod-text-muted);
    margin-bottom: var(--rvod-space-sm);
}

.rvod-profile-bio {
    font-size: 0.9rem;
    color: var(--rvod-text-secondary);
    line-height: 1.6;
    max-width: 600px;
}

.rvod-profile-stats {
    display: flex;
    gap: var(--rvod-space-xl);
    margin-top: var(--rvod-space-lg);
}

.rvod-profile-stat {
    text-align: center;
}

.rvod-profile-stat-num {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--rvod-text-primary);
}

.rvod-profile-stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--rvod-text-muted);
}

.rvod-profile-actions {
    display: flex;
    gap: var(--rvod-space-sm);
    margin-left: auto;
    padding-bottom: var(--rvod-space-sm);
}

.rvod-profile-tabs {
    max-width: 1200px;
    margin: var(--rvod-space-2xl) auto 0;
    padding: 0 var(--rvod-space-xl);
}

.rvod-profile-tab-nav {
    display: flex;
    gap: var(--rvod-space-xs);
    border-bottom: 1px solid var(--rvod-border-color);
    margin-bottom: var(--rvod-space-xl);
    overflow-x: auto;
}

.rvod-profile-tab-link {
    padding: var(--rvod-space-md) var(--rvod-space-lg);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--rvod-text-muted);
    border-bottom: 2px solid transparent;
    transition: all var(--rvod-transition-fast);
    white-space: nowrap;
    text-decoration: none;
}

.rvod-profile-tab-link:hover {
    color: var(--rvod-text-primary);
}

.rvod-profile-tab-link.active {
    color: var(--rvod-accent);
    border-bottom-color: var(--rvod-accent);
}

.rvod-profile-tab-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--rvod-space-xl) var(--rvod-space-3xl);
}

.rvod-profile-section-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: var(--rvod-space-lg);
    padding-left: var(--rvod-space-md);
    border-left: 4px solid var(--rvod-accent);
}

.rvod-profile-watch-grid {
    display: flex;
    gap: var(--rvod-space-lg);
    overflow-x: auto;
    padding-bottom: var(--rvod-space-md);
    scrollbar-width: thin;
    scrollbar-color: var(--rvod-border-color) transparent;
}

.rvod-profile-watch-card {
    flex-shrink: 0;
    width: 192px;
}

.rvod-profile-watch-card-img {
    position: relative;
    aspect-ratio: 2/3;
    border-radius: var(--rvod-radius-lg);
    overflow: hidden;
    margin-bottom: var(--rvod-space-sm);
    background: var(--rvod-bg-card);
}

.rvod-profile-watch-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.rvod-profile-watch-card:hover .rvod-profile-watch-card-img img {
    transform: scale(1.05);
}

.rvod-profile-watch-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.5);
}

.rvod-profile-watch-progress-bar {
    height: 100%;
    background: var(--rvod-accent);
    box-shadow: 0 0 10px rgba(240, 136, 4, 0.5);
}

.rvod-profile-watch-card-title {
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rvod-profile-watch-card-meta {
    font-size: 0.75rem;
    color: var(--rvod-text-muted);
}

.rvod-profile-favorites-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--rvod-space-lg);
}

.rvod-profile-fav-card {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: var(--rvod-radius-lg);
    overflow: hidden;
    background: var(--rvod-bg-card);
    transition: all 0.3s ease;
}

.rvod-profile-fav-card:hover {
    box-shadow: 0 0 0 2px rgba(240, 136, 4, 0.5);
}

.rvod-profile-fav-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.rvod-profile-fav-card:hover img {
    transform: scale(1.1);
}

.rvod-profile-fav-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: var(--rvod-space-md);
}

.rvod-profile-fav-card:hover .rvod-profile-fav-overlay {
    opacity: 1;
}

.rvod-profile-fav-overlay span {
    font-size: 0.8rem;
    font-weight: 700;
}

.rvod-profile-review {
    padding: var(--rvod-space-lg);
    background: var(--rvod-bg-card);
    border-radius: var(--rvod-radius-lg);
    border-left: 4px solid rgba(240, 136, 4, 0.3);
    transition: border-color 0.3s ease;
}

.rvod-profile-review:hover {
    border-left-color: var(--rvod-accent);
}

.rvod-profile-review + .rvod-profile-review {
    margin-top: var(--rvod-space-lg);
}

.rvod-profile-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--rvod-space-md);
    margin-bottom: var(--rvod-space-md);
}

.rvod-profile-review-film {
    display: flex;
    align-items: center;
    gap: var(--rvod-space-md);
}

.rvod-profile-review-thumb {
    width: 48px;
    height: 64px;
    border-radius: var(--rvod-radius-sm);
    overflow: hidden;
}

.rvod-profile-review-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rvod-profile-review-title {
    font-weight: 700;
    font-size: 0.9rem;
}

.rvod-profile-review-stars {
    display: flex;
    gap: 2px;
    color: var(--rvod-accent);
    font-size: 0.85rem;
}

.rvod-profile-review-date {
    font-size: 0.75rem;
    color: var(--rvod-text-muted);
    opacity: 0.6;
}

.rvod-profile-review-text {
    font-size: 0.9rem;
    color: var(--rvod-text-secondary);
    line-height: 1.6;
    font-style: italic;
}

@media (max-width: 768px) {
    .rvod-profile-cover {
        height: 200px;
    }

    .rvod-profile-header-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .rvod-profile-avatar-wrap img {
        width: 100px;
        height: 100px;
    }

    .rvod-profile-name {
        font-size: 1.5rem;
    }

    .rvod-profile-stats {
        justify-content: center;
    }

    .rvod-profile-actions {
        margin-left: 0;
        justify-content: center;
    }

    .rvod-profile-favorites-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rvod-profile-review-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ═══════════════════════════════════════════════════════
   39. DASHBOARD SIDEBAR MOBILE CLOSE + BACKDROP
   ═══════════════════════════════════════════════════════ */

.rvod-sidebar-close-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.rvod-sidebar-close-btn:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.rvod-sidebar-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.rvod-sidebar-backdrop.active {
    display: block;
    opacity: 1;
}

@media (max-width: 1024px) {
    .rvod-sidebar-close-btn {
        display: flex;
    }
}
