/* =====================================================
   DesiDekho 2026 — Custom Desi Beast Mode CSS
   Color Palette: Midnight #0a0a0a | Saffron #ff9933 | Emerald #00b894 | Gold #ffd700
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
    --midnight: #0a0a0a;
    --midnight-light: #141414;
    --midnight-lighter: #1e1e1e;
    --midnight-card: #181818;
    --saffron: #ff9933;
    --saffron-dark: #e6851a;
    --saffron-glow: rgba(255, 153, 51, 0.3);
    --emerald: #00b894;
    --emerald-dark: #009d80;
    --emerald-glow: rgba(0, 184, 148, 0.3);
    --gold: #ffd700;
    --gold-glow: rgba(255, 215, 0, 0.2);
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --danger: #ef4444;
    --glass-bg: rgba(20, 20, 20, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', 'Inter', sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px var(--saffron-glow);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

/* ─── Reset & Base ───────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    background: var(--midnight);
    color: var(--gray-200);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

a {
    color: var(--saffron);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--gold);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

/* ─── Scrollbar ──────────────────────────────── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--midnight);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-700);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--saffron);
}

/* ─── Glassmorphism Utilities ────────────────── */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
}

.glass-card {
    background: rgba(24, 24, 24, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}

/* ─── Navbar ─────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 2rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: var(--shadow-md);
}

.navbar__brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--saffron), var(--gold), var(--emerald));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar__brand img {
    height: 32px;
    width: auto;
}

.navbar__nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
}

.navbar__nav a {
    color: var(--gray-300);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 0.5rem 0;
    position: relative;
}

.navbar__nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--saffron);
    transition: width 0.3s ease;
}

.navbar__nav a:hover {
    color: var(--white);
}

.navbar__nav a:hover::after,
.navbar__nav a.active::after {
    width: 100%;
}

.navbar__nav a.active {
    color: var(--saffron);
}

.navbar__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ─── Search Bar ─────────────────────────────── */
.search-bar {
    position: relative;
    display: flex;
    align-items: center;
}

.search-bar__input {
    width: 0;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--white);
    font-size: 0.875rem;
    outline: none;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s;
}

.search-bar.open .search-bar__input {
    width: 240px;
    padding: 0.5rem 1rem;
    background: var(--midnight-lighter);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}

/* Mobile: search bar expands as full-width overlay below navbar */
@media (max-width: 767px) {
    .search-bar.open {
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        z-index: 1002;
        background: rgba(10, 10, 10, 0.97);
        padding: 0.6rem 3%;
        backdrop-filter: blur(12px);
    }
    .search-bar.open .search-bar__input {
        width: 100%;
        flex: 1;
    }
    .search-dropdown {
        width: 94% !important;
        left: 3%;
        right: 3%;
    }
}

.search-bar__btn {
    background: none;
    border: none;
    color: var(--gray-400);
    padding: 0.5rem;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.search-bar__btn:hover {
    color: var(--saffron);
}

.search-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 400px;
    max-height: 480px;
    overflow-y: auto;
    border-radius: var(--radius);
    display: none;
    z-index: 1001;
    background: var(--midnight, #0a0a0f);
    border: 1px solid var(--glass-border, rgba(255,255,255,0.08));
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}

.search-dropdown.active {
    display: block;
}

.search-result-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem;
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-fast);
    cursor: pointer;
}

.search-result-item:hover {
    background: rgba(255, 153, 51, 0.08);
}

.search-result-item img {
    width: 80px;
    height: 48px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.search-result-item h4 {
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.search-result-item span {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* ─── Hero Section ───────────────────────────── */
.hero {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 500px;
    overflow: hidden;
    margin-top: 64px;
}

.hero__backdrop {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    transition: opacity 1s ease;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            var(--midnight) 0%,
            rgba(10, 10, 10, 0.85) 25%,
            rgba(10, 10, 10, 0.4) 60%,
            rgba(10, 10, 10, 0.6) 100%);
}

.hero__content {
    position: absolute;
    bottom: 15%;
    left: 4%;
    max-width: 600px;
    z-index: 5;
    animation: fadeSlideUp 0.8s ease forwards;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 153, 51, 0.2);
    border: 1px solid var(--saffron);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--saffron);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero__desc {
    font-size: 1rem;
    color: var(--gray-300);
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ─── Buttons ────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    color: var(--midnight);
    box-shadow: 0 4px 15px var(--saffron-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--saffron-glow);
    color: var(--midnight);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn-emerald {
    background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
    color: var(--white);
    box-shadow: 0 4px 15px var(--emerald-glow);
}

.btn-danger {
    background: var(--danger);
    color: var(--white);
}

.btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-icon {
    padding: 0.6rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

/* ─── Content Sections ───────────────────────── */
.section {
    padding: 2rem 4%;
    position: relative;
}

.section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.section__title {
    font-size: 1.35rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section__title .emoji {
    font-size: 1.5rem;
}

.section__more {
    color: var(--saffron);
    font-size: 0.85rem;
    font-weight: 500;
}

.section__more:hover {
    color: var(--gold);
}

/* ─── Video Carousel ─────────────────────────── */
.carousel {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel__item {
    flex: 0 0 auto;
    scroll-snap-align: start;
}

/* ─── Video Card ─────────────────────────────── */
.video-card {
    position: relative;
    width: 220px;
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    background: var(--midnight-card);
}

.video-card:hover {
    transform: scale(1.05) translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 20px var(--saffron-glow);
    z-index: 10;
}

.video-card__thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-card__thumb img {
    transform: scale(1.1);
}

.video-card__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .video-card__play {
    opacity: 1;
}

.video-card__play-icon {
    width: 48px;
    height: 48px;
    background: var(--saffron);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px var(--saffron-glow);
    transition: transform 0.2s ease;
}

.video-card__play-icon:hover {
    transform: scale(1.1);
}

.video-card__info {
    padding: 0.75rem;
}

.video-card__title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-card__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--gray-500);
}

.video-card__meta .dot {
    width: 3px;
    height: 3px;
    background: var(--gray-600);
    border-radius: 50%;
}

/* Continue Watching Progress Bar */
.video-card__progress {
    height: 3px;
    background: var(--gray-700);
    border-radius: 0 0 var(--radius) var(--radius);
    overflow: hidden;
}

.video-card__progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--saffron), var(--emerald));
    border-radius: 2px;
    transition: width 0.5s ease;
}

/* ─── Top 10 Card ────────────────────────────── */
.top10-card {
    position: relative;
    width: 200px;
    display: flex;
    align-items: flex-end;
}

.top10-card__number {
    font-size: 8rem;
    font-weight: 900;
    font-family: var(--font-heading);
    line-height: 0.8;
    color: transparent;
    -webkit-text-stroke: 3px var(--gray-600);
    margin-right: -2rem;
    z-index: 1;
    user-select: none;
}

.top10-card__poster {
    width: 140px;
    height: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.top10-card__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ─── Skeleton Loader ────────────────────────── */
.skeleton {
    background: linear-gradient(90deg, var(--midnight-lighter) 25%, var(--midnight-card) 50%, var(--midnight-lighter) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.skeleton-card {
    width: 220px;
    height: 180px;
}

.skeleton-text {
    height: 14px;
    margin-bottom: 8px;
}

.skeleton-text.short {
    width: 60%;
}

/* ─── Footer ─────────────────────────────────── */
.footer {
    background: var(--midnight-light);
    border-top: 1px solid var(--glass-border);
    padding: 3rem 4% 1.5rem;
    margin-top: 4rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer__brand {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--saffron), var(--emerald));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.footer__tagline {
    color: var(--gray-500);
    font-size: 0.85rem;
}

.footer h4 {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    color: var(--gray-300);
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 0.4rem;
}

.footer__links a {
    color: var(--gray-500);
    font-size: 0.85rem;
}

.footer__links a:hover {
    color: var(--saffron);
}

.footer__bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--gray-600);
}

/* ─── Auth Forms ─────────────────────────────── */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    margin-top: 64px;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
}

.auth-card h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.auth-card .subtitle {
    color: var(--gray-500);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-300);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--midnight-lighter);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--saffron);
    box-shadow: 0 0 0 3px var(--saffron-glow);
}

.form-control::placeholder {
    color: var(--gray-600);
}

/* ─── Flash Messages ─────────────────────────── */
.flash {
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    font-size: 0.875rem;
    animation: fadeSlideDown 0.3s ease;
}

.flash-success {
    background: rgba(0, 184, 148, 0.15);
    color: var(--emerald);
    border: 1px solid rgba(0, 184, 148, 0.3);
}

.flash-error {
    background: rgba(239, 68, 68, 0.15);
    color: var(--danger);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* ─── Video Player Page ──────────────────────── */
.watch-page {
    margin-top: 100px;
}

.watch-hero {
    position: relative;
    width: 100%;
    background: #000;
}

/* Video fills the hero properly */
.watch-hero video {
    width: 100%;
    max-height: 80vh;
    display: block;
}

/* Fullscreen: remove all constraints */
.watch-hero:fullscreen,
.watch-hero:-webkit-full-screen {
    margin-top: 0;
}
.watch-hero:fullscreen video,
.watch-hero:-webkit-full-screen video {
    max-height: 100vh;
    height: 100vh;
    object-fit: contain;
}

.watch-info {
    padding: 2rem 4%;
    max-width: 1400px;
}

.watch-info__title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.watch-info__meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--gray-400);
}

.watch-info__meta .badge {
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-rating {
    background: var(--saffron);
    color: var(--midnight);
}

.badge-premium {
    background: linear-gradient(135deg, var(--gold), var(--saffron));
    color: var(--midnight);
}

.badge-hd {
    background: var(--emerald);
    color: var(--white);
}

.watch-info__actions {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.watch-info__desc {
    font-size: 0.95rem;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Cast Carousel */
.cast-carousel {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
}

.cast-carousel::-webkit-scrollbar {
    display: none;
}

.cast-item {
    text-align: center;
    flex: 0 0 auto;
}

.cast-item__photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 0.5rem;
    border: 2px solid var(--glass-border);
}

.cast-item__name {
    font-size: 0.8rem;
    color: var(--gray-300);
}

.cast-item__role {
    font-size: 0.7rem;
    color: var(--gray-600);
}

/* Comments Section */
.comments {
    padding: 2rem 4%;
    max-width: 1400px;
}

.comments h3 {
    margin-bottom: 1.5rem;
}

.comment {
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    display: flex;
    gap: 1rem;
}

.comment__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--midnight-lighter);
    flex-shrink: 0;
}

.comment__body h4 {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.comment__body p {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.comment__time {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin-top: 0.3rem;
}

/* ─── Home Grid Page ─────────────────────────── */
.home-grid-page {
    padding: 0.5rem 3%;
    margin-top: 100px;
    /* navbar (64) + category bar (36) */
}

/* ─── Home Section ───────────────────────────── */
.home-section {
    margin-bottom: 2rem;
}

.home-section__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0 0.25rem;
}

.home-section__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.home-section__more {
    font-size: 0.8rem;
    color: var(--saffron);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

.home-section__more:hover {
    text-decoration: underline;
}

/* ─── Category Page ──────────────────────────── */
.category-page {
    margin-top: 100px;
    padding: 0 3%;
}

.category-page h1 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* ─── Video Grid (Mobile-First) ──────────────── */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
}

.video-grid .video-card {
    width: 100%;
}

.video-grid .video-card__thumb img,
.video-grid .video-card__thumb--placeholder {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
}

@media (min-width: 520px) {
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
}

@media (min-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .home-grid-page {
        padding: 1rem 4%;
    }

    .home-section__title {
        font-size: 1.3rem;
    }
}

@media (min-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 1400px) {
    .video-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* ─── Pagination ─────────────────────────────── */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 1rem 0;
}

.pagination a,
.pagination span {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
}

.pagination a {
    background: var(--midnight-lighter);
    color: var(--gray-300);
    border: 1px solid var(--glass-border);
}

.pagination a:hover {
    background: var(--saffron);
    color: var(--midnight);
}

.pagination .current {
    background: var(--saffron);
    color: var(--midnight);
    font-weight: 700;
}

/* ─── Category Bar ───────────────────────────── */
.category-bar {
    position: relative;
    /* fixed */
    top: 62px;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.06);
    padding: 4px 3%;
}

.category-bar__inner {
    display: flex;
    gap: 0.3rem;
    overflow-x: auto;
    padding: 0.4rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-bar__inner::-webkit-scrollbar {
    display: none;
}

.category-pill {
    white-space: nowrap;
    padding: 0.3rem 0.75rem;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #f9f9f9;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.2s ease;
    text-decoration: none;
}

.category-pill:hover,
.category-pill.active {
    background: var(--saffron);
    color: var(--midnight);
    border-color: var(--saffron);
}

@media (min-width: 768px) {
    .category-bar {
        padding: 0 4%;
    }

    .category-bar__inner {
        gap: 0.5rem;
        padding: 0.5rem 0;
    }

    .category-pill {
        padding: 0.4rem 1rem;
        font-size: 0.82rem;
        border-radius: 20px;
    }
}

/* ─── Navbar More Dropdown ───────────────────── */
.nav-more-wrap {
    position: relative;
}

.nav-more-btn {
    cursor: pointer;
}

.nav-more-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.4rem 0;
    list-style: none;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.nav-more-wrap.open .nav-more-dropdown,
.nav-more-wrap:hover .nav-more-dropdown {
    display: block;
}

.nav-more-dropdown li a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.85rem;
    transition: background 0.15s;
}

.nav-more-dropdown li a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--saffron);
}

/* ─── Custom Buttons Bar ─────────────────────── */
.custom-buttons-bar {
    display: flex;
    gap: 0.6rem;
    padding: 0.75rem 0;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    margin-top: -1.5rem;
    justify-content: center;
}

.custom-btn-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.custom-btn-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    filter: brightness(1.1);
}

/* ─── Mobile Menu Toggle ─────────────────────── */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    padding: 0.5rem;
}

/* ─── Language Switcher ──────────────────────── */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.3rem;
    background: var(--midnight-lighter);
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
}

.lang-switch button {
    padding: 0.25rem 0.6rem;
    border: none;
    background: transparent;
    color: var(--gray-500);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.lang-switch button.active {
    background: var(--saffron);
    color: var(--midnight);
}

/* ─── Animations ─────────────────────────────── */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.animate-in {
    animation: fadeSlideUp 0.6s ease forwards;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — Mobile‑First Overhaul (2026)
   ═══════════════════════════════════════════════ */

/* ── Tablet (≤1024px) ───────────────────────── */
@media (max-width: 1024px) {
    .section {
        padding: 1.5rem 3%;
    }

    .video-card {
        width: 180px;
    }

    .search-bar.open .search-bar__input {
        width: 200px;
    }
}

/* ── Mobile (≤768px) ────────────────────────── */
@media (max-width: 768px) {

    /* ── Navbar ─────────────────────────── */
    .navbar {
        padding: 0 0.75rem;
        height: 56px;
    }

    .navbar__brand {
        font-size: 1.2rem;
    }

    .navbar__nav {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 10, 0.97);
        backdrop-filter: blur(24px);
        padding: 1.5rem 1rem;
        gap: 0.25rem;
        overflow-y: auto;
        z-index: 9999;
        animation: mobileMenuIn 0.25s ease;
    }

    .navbar__nav.open {
        display: flex;
    }

    .navbar__nav a {
        font-size: 1rem;
        padding: 0.85rem 1rem;
        border-radius: var(--radius-sm);
        color: var(--gray-200);
    }

    .navbar__nav a:hover,
    .navbar__nav a.active {
        background: rgba(255, 153, 51, 0.1);
        color: var(--saffron);
    }

    .navbar__nav a::after {
        display: none;
    }

    .mobile-toggle {
        display: block;
        order: 10;
    }

    .navbar__actions {
        gap: 0.5rem;
    }

    .navbar__actions .btn-sm {
        display: none;
    }

    .lang-switch {
        display: none;
    }

    /* mobile search */
    .search-bar {
        position: static;
    }

    .search-bar.open {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 56px;
        background: var(--midnight);
        z-index: 10000;
        padding: 0 0.75rem;
        display: flex;
        align-items: center;
    }

    .search-bar.open .search-bar__input {
        width: 100%;
        flex: 1;
    }

    .search-dropdown {
        width: 100vw;
        left: 0;
        right: 0;
        border-radius: 0;
    }

    /* ── Hero ───────────────────────────── */
    .hero {
        height: 60vh;
        min-height: 320px;
        margin-top: 56px;
    }

    .hero__content {
        bottom: 8%;
        left: 4%;
        right: 4%;
        max-width: none;
    }

    .hero__title {
        font-size: 1.5rem;
    }

    .hero__desc {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
        margin-bottom: 1rem;
    }

    .hero__badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.6rem;
        margin-bottom: 0.5rem;
    }

    .hero__actions {
        gap: 0.5rem;
    }

    .hero__actions .btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    /* ── Section & Cards ───────────────── */
    .section {
        padding: 1rem 3%;
    }

    .section__title {
        font-size: 1.1rem;
    }

    .video-card {
        width: calc(50vw - 24px);
        min-width: 140px;
    }

    .carousel {
        gap: 0.5rem;
    }

    /* top‑10 */
    .top10-card {
        width: calc(45vw - 16px);
    }

    .top10-card__number {
        font-size: 5rem;
    }

    .top10-card__poster {
        width: 100px;
        height: 150px;
    }

    /* skeleton */
    .skeleton-card {
        width: calc(50vw - 24px);
        height: 140px;
    }

    /* ── Footer ─────────────────────────── */
    .footer {
        padding: 2rem 4% 1.5rem;
        margin-top: 2rem;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    /* ── Auth ───────────────────────────── */
    .auth-container {
        margin-top: 56px;
        padding: 1rem;
    }

    .auth-card {
        padding: 1.5rem;
    }

    .auth-card h1 {
        font-size: 1.4rem;
    }

    /* ── Watch Page ─────────────────────── */
    .watch-page {
        margin-top: 56px;
    }

    .watch-info {
        padding: 1.25rem 4%;
    }

    .watch-info__title {
        font-size: 1.25rem;
    }

    .watch-info__actions {
        gap: 0.5rem;
    }

    .watch-info__actions .btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }

    /* cast */
    .cast-item__photo {
        width: 48px;
        height: 48px;
    }

    /* comments */
    .comments {
        padding: 1.25rem 4%;
    }

    /* ── Category / Grid ───────────────── */
    .category-page {
        margin-top: 70px;
        padding: 0 3%;
    }

    .category-page h1 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.75rem;
    }

    /* ── Profile ────────────────────────── */
    .profile-page {
        margin-top: 70px;
        padding: 0 3%;
    }

    .profile-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .profile-avatar {
        width: 80px;
        height: 80px;
    }

    .profile-info h1 {
        font-size: 1.2rem;
    }

    .profile-stats {
        justify-content: center;
        gap: 1.5rem;
    }

    .profile-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .profile-tabs::-webkit-scrollbar {
        display: none;
    }

    .profile-tab {
        white-space: nowrap;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    /* ── Series ─────────────────────────── */
    .series-page {
        margin-top: 70px;
        padding: 0 3%;
    }

    .season-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .season-tabs::-webkit-scrollbar {
        display: none;
    }

    .season-tab {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .episode-card {
        flex-direction: column;
        gap: 0.5rem;
    }

    .episode-card__thumb {
        width: 100%;
    }

    .episode-card__title {
        font-size: 0.9rem;
    }

    .episode-card__desc {
        -webkit-line-clamp: 2;
        font-size: 0.8rem;
    }

    /* ── Ad Slots ───────────────────────── */
    .ad-slot-leaderboard {
        min-height: 50px;
    }
}

/* ── Small Phone (≤480px) ───────────────────── */
@media (max-width: 480px) {
    .hero {
        height: 50vh;
        min-height: 280px;
    }

    .hero__title {
        font-size: 1.25rem;
    }

    .hero__desc {
        display: none;
    }

    .hero__actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .btn {
        padding: 0.55rem 1rem;
        font-size: 0.8rem;
    }

    .video-card {
        width: calc(50vw - 16px);
        min-width: 130px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
    }

    .section__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .watch-info__meta {
        font-size: 0.75rem;
        gap: 0.5rem;
    }

    .watch-info__desc {
        font-size: 0.85rem;
    }

    .profile-stats {
        gap: 1rem;
    }

    .profile-stat__value {
        font-size: 1rem;
    }

    .episode-card {
        padding: 0.75rem;
    }
}

/* ── Mobile menu animation ──────────────────── */
@keyframes mobileMenuIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Body scroll lock when menu open ─────────── */
body.menu-open {
    overflow: hidden;
}

/* ─── Print ──────────────────────────────────── */
@media print {

    .navbar,
    .footer,
    .hero__actions,
    .search-bar {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }
}

/* ─── Theme Transition ──────────────────────── */
html {
    transition: background-color 0.4s ease, color 0.4s ease;
}

body {
    transition: background-color 0.4s ease, color 0.4s ease;
}

/* ─── Light Theme ────────────────────────────── */
[data-theme="light"] {
    --midnight: #f5f5f5;
    --midnight-light: #ffffff;
    --midnight-lighter: #e8e8e8;
    --midnight-card: #ffffff;
    --white: #1a1a1a;
    --gray-100: #1a1a1a;
    --gray-200: #262626;
    --gray-300: #404040;
    --gray-400: #525252;
    --gray-500: #737373;
    --gray-600: #a3a3a3;
    --gray-700: #d4d4d4;
    --gray-800: #e5e5e5;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.08);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
}

[data-theme="light"] .navbar__nav {
    background: rgba(255, 255, 255, 0.97);
}

[data-theme="light"] .form-control {
    background: #f0f0f0;
    border-color: rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
}

[data-theme="light"] .form-control::placeholder {
    color: #a3a3a3;
}

[data-theme="light"] .footer {
    background: #ffffff;
    border-top-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .video-card {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .video-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 0 20px var(--saffron-glow);
}

[data-theme="light"] .hero__overlay {
    background: linear-gradient(to top, #f5f5f5 0%, rgba(245, 245, 245, 0.85) 25%, rgba(245, 245, 245, 0.4) 60%, rgba(245, 245, 245, 0.6) 100%);
}

[data-theme="light"] .skeleton {
    background: linear-gradient(90deg, #e5e5e5 25%, #f0f0f0 50%, #e5e5e5 75%);
}

[data-theme="light"] ::-webkit-scrollbar-track {
    background: #f5f5f5;
}

[data-theme="light"] ::-webkit-scrollbar-thumb {
    background: #d4d4d4;
}

/* ─── Theme Toggle Button ────────────────────── */
.theme-toggle-btn {
    background: none;
    border: 1px solid var(--glass-border);
    color: var(--gray-400);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.theme-toggle-btn:hover {
    border-color: var(--saffron);
    color: var(--saffron);
    box-shadow: 0 0 12px var(--saffron-glow);
}

/* ─── User Profile Page ──────────────────────── */
.profile-page {
    margin-top: 80px;
    padding: 0 4%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.profile-header {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--saffron);
}

.profile-info h1 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.profile-info p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.profile-stats {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.profile-stat {
    text-align: center;
}

.profile-stat__value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--saffron);
}

.profile-stat__label {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.profile-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 2rem;
}

.profile-tab {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-400);
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-fast);
}

.profile-tab:hover {
    color: var(--white);
}

.profile-tab.active {
    color: var(--saffron);
    border-bottom-color: var(--saffron);
}

/* ─── Series Page ────────────────────────────── */
.series-page {
    margin-top: 80px;
    padding: 0 4%;
}

.season-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.season-tab {
    padding: 0.5rem 1.25rem;
    background: var(--midnight-lighter);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    font-size: 0.85rem;
    color: var(--gray-300);
    cursor: pointer;
    transition: var(--transition-fast);
}

.season-tab:hover {
    border-color: var(--saffron);
    color: var(--saffron);
}

.season-tab.active {
    background: var(--saffron);
    color: var(--midnight);
    border-color: var(--saffron);
    font-weight: 600;
}

.episode-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.episode-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--midnight-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.episode-card:hover {
    border-color: var(--saffron);
    box-shadow: 0 0 15px var(--saffron-glow);
}

.episode-card__thumb {
    width: 200px;
    aspect-ratio: 16/9;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.episode-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.episode-card__info {
    flex: 1;
}

.episode-card__number {
    font-size: 0.75rem;
    color: var(--saffron);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.episode-card__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.episode-card__desc {
    font-size: 0.85rem;
    color: var(--gray-400);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}

.episode-card__duration {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
}

/* ─── Ad Banner Slots ────────────────────────── */
.ad-slot-leaderboard {
    max-width: 728px;
    margin: 1rem auto;
    min-height: 90px;
}

.ad-slot-sidebar {
    min-height: 250px;
}

.ad-slot-footer {
    max-width: 728px;
    margin: 1.5rem auto 0;
    min-height: 90px;
}

/* ─── Mobile Menu Glassmorphism ──────────────── */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    z-index: 1100;
    line-height: 1;
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .navbar__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 1.5rem 2rem;
        gap: 0;
        background: rgba(10, 10, 10, 0.92);
        backdrop-filter: blur(24px) saturate(180%);
        -webkit-backdrop-filter: blur(24px) saturate(180%);
        border-left: 1px solid rgba(255, 153, 51, 0.15);
        box-shadow: -8px 0 40px rgba(0, 0, 0, 0.6);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1050;
        overflow-y: auto;
    }

    .navbar__nav.open {
        right: 0;
    }

    .navbar__nav li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .navbar__nav a {
        display: block;
        padding: 0.9rem 0.5rem;
        font-size: 1rem;
        font-weight: 500;
        color: var(--gray-300);
        transition: all 0.2s ease;
    }

    .navbar__nav a:hover,
    .navbar__nav a.active {
        color: var(--saffron);
        padding-left: 1rem;
    }

    .navbar__nav a::after {
        display: none;
    }

    /* Mobile menu backdrop overlay */
    .mobile-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1040;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mobile-backdrop.active {
        display: block;
        opacity: 1;
    }

    /* Navbar actions on mobile */
    .navbar__actions {
        gap: 0.4rem;
    }

    .lang-switch {
        display: none;
    }

    .search-bar__input {
        display: none;
    }

    .search-bar.open .search-bar__input {
        display: block !important;
    }

    .navbar__actions .btn-sm {
        padding: 0.35rem 0.6rem;
        font-size: 0.75rem;
    }
}

/* ─── Placeholder Thumbnails ─────────────────── */
.video-card__thumb--placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.video-card__thumb--placeholder .placeholder-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.08);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.video-card__thumb--placeholder .placeholder-icon {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 153, 51, 0.2);
    border: 2px solid rgba(255, 153, 51, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-card__thumb--placeholder .placeholder-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--saffron);
}

/* Gradient palette for placeholder thumbnails */
.thumb-grad-1 {
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
}

.thumb-grad-2 {
    background: linear-gradient(135deg, #2d1b36, #1a1a2e, #44318d);
}

.thumb-grad-3 {
    background: linear-gradient(135deg, #1b2a1b, #1a2e1a, #0e4429);
}

.thumb-grad-4 {
    background: linear-gradient(135deg, #2e1a1a, #3e1616, #600f0f);
}

.thumb-grad-5 {
    background: linear-gradient(135deg, #1a2e2e, #163e3e, #0f5060);
}

.thumb-grad-6 {
    background: linear-gradient(135deg, #2e2e1a, #3e3e16, #60600f);
}