/* ========================================================================
   FILE 2: COMPONENTS.CSS (Kartalar, Slayder, Paginatsiya, Modal, Reklama)
   ======================================================================== */

/* 1. USER PROFILE & DROPDOWN */
.login-wrapper { position: relative; z-index: 1001; }
.login-btn-link { display: inline-flex; align-items: center; gap: 8px; background-color: var(--accent); color: #fff; padding: 10px 24px; border-radius: 30px; font-weight: 600; font-size: 14px; box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3); }
.login-btn-link:hover { background-color: var(--accent-hover); transform: translateY(-1px); }
.user-trigger { display: flex; align-items: center; gap: 12px; padding: 6px 16px 6px 6px; background-color: var(--bg-input); border: 1px solid var(--border); border-radius: 40px; cursor: pointer; transition: all 0.2s ease; }
.user-trigger:hover, .user-dropdown.active ~ .user-trigger { border-color: var(--accent); background-color: var(--bg-hover); }
.user-avatar { width: 36px; height: 36px; border-radius: 50%; overflow: hidden; background-color: var(--bg-card); border: 2px solid var(--bg-body); }
.user-avatar img { width: 100%; height: 100%; object-fit: cover; }
.user-name { font-weight: 600; font-size: 14px; color: var(--text-main); max-width: 120px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.arrow-icon { font-size: 12px; color: var(--text-muted); }
.user-dropdown { position: absolute; top: calc(100% + 15px); right: 0; width: 260px; background-color: var(--bg-dropdown); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1); z-index: 9999; overflow: hidden; }
.user-dropdown.active { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-header { padding: 12px 16px; background-color: var(--bg-input); border-radius: 8px; margin-bottom: 8px; }
.dropdown-header b { display: block; font-size: 15px; color: var(--text-main); }
.dropdown-header span { font-size: 12px; color: var(--text-muted); }
.dropdown-list li a { display: flex; align-items: center; gap: 12px; padding: 12px 16px; color: var(--text-muted); font-size: 14px; border-radius: 8px; transition: all 0.2s ease; text-decoration: none; }
.dropdown-list li a i { width: 20px; text-align: center; }
.dropdown-list li a:hover { background-color: var(--bg-hover); color: var(--text-main); }
.dropdown-list li a.logout-link:hover { background-color: rgba(229, 9, 20, 0.1); color: var(--danger); }
.divider { height: 1px; background-color: var(--border); margin: 8px 0; }
@media (max-width: 992px) { .user-name { display: none; } .user-dropdown { right: -50px; width: 220px; } }

/* 2. MOVIE CARDS (KINO KARTALARI) */
.movie-card { display: flex; flex-direction: column; background-color: var(--bg-card); border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: var(--shadow-card); transition: all 0.3s ease; border: 1px solid transparent; text-decoration: none; height: 100%; width: 100% !important; max-width: 100% !important; }
.movie-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.4); border-color: rgba(255,255,255,0.1); z-index: 2; }
.mc-poster { position: relative; width: 100%; padding-top: 150%; overflow: hidden; }
.mc-poster img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.movie-card:hover .mc-poster img { transform: scale(1.1); }
.mc-badge { position: absolute; top: 10px; left: 10px; background-color: rgba(0,0,0,0.7); color: #fff; padding: 3px 6px; border-radius: 4px; font-size: 10px; font-weight: 700; z-index: 5; text-transform: uppercase; }
.mc-badge.quality { background-color: var(--danger); }
/* Serial bo'lsa o'ng burchakda chiqadigan Badge */
.mc-badge.serial-badge {
    left: auto; /* Chap tomonni bekor qilamiz */
    right: 10px; /* O'ng tomonga yopishtiramiz */
    background-color: var(--accent); /* Olovrang premium rang */
    color: #fff;
    box-shadow: 0 4px 10px rgba(255, 153, 0, 0.4); /* Yaltiroq soya */
    display: flex;
    align-items: center;
    gap: 4px;
}
.mc-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; z-index: 3; }
.movie-card:hover .mc-overlay { opacity: 1; }
.mc-overlay i { font-size: 40px; color: var(--accent); }
.mc-info { padding: 12px; display: flex; flex-direction: column; flex-grow: 1; justify-content: space-between; }
.mc-title { font-size: 14px; font-weight: 600; color: var(--text-main); margin-bottom: 5px; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; height: 36px; }
.mc-meta { font-size: 11px; color: var(--text-muted); margin-top: 5px; display: flex; align-items: center; gap: 5px; }
.mc-age { font-size: 10px; padding: 2px 5px; border: 1px solid var(--border); border-radius: 3px; }
@media (max-width: 480px) { .mc-info { padding: 10px; } .mc-title { font-size: 13px; height: 34px; } }

/* 3. PREMIUM HERO SLIDER (TOP FILMLAR) */
.premium-hero-slider { margin-bottom: 20px; border-radius: 16px; }
.ph-slide { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: 16px; overflow: hidden; background: #000; }
.ph-link { display: block; width: 100%; height: 100%; }
.ph-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.ph-link:hover .ph-img { transform: scale(1.05); }
.ph-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 50%, transparent 100%); z-index: 1; transition: 0.3s; }
.ph-link:hover .ph-overlay { background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%); }
.ph-info { position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px; display: flex; flex-direction: column; gap: 10px; z-index: 2; }
.ph-badges { display: flex; gap: 10px; }
.ph-quality { background: var(--danger); color: #fff; padding: 4px 10px; border-radius: 6px; font-weight: 800; font-size: 12px; }
.ph-episode { background: var(--accent); color: #fff; padding: 4px 10px; border-radius: 6px; font-weight: 800; font-size: 12px; }
.ph-title { color: #fff; font-size: 24px; font-weight: 800; margin: 0; text-shadow: 0 4px 15px rgba(0,0,0,0.8); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ph-meta { display: flex; align-items: center; gap: 15px; color: #cbd5e1; font-size: 13px; font-weight: 600; }
.ph-play-btn { color: #fff; background: rgba(255,255,255,0.15); padding: 5px 12px; border-radius: 50px; backdrop-filter: blur(5px); transition: 0.3s; }
.ph-link:hover .ph-play-btn { background: var(--accent); }
.premium-hero-slider .owl-dots { position: absolute; bottom: 15px; right: 25px; display: flex; gap: 6px; z-index: 3; }
.premium-hero-slider .owl-dot span { width: 8px; height: 8px; background: rgba(255,255,255,0.3) !important; border-radius: 50%; transition: 0.3s; margin: 0 !important; }
.premium-hero-slider .owl-dot.active span { width: 20px; background: var(--accent) !important; border-radius: 4px; }
@media (max-width: 768px) { .ph-info { padding: 20px; } .ph-title { font-size: 18px; } .premium-hero-slider .owl-dots { bottom: 10px; right: 15px; } }
/* Top Filmlar slayderi uchun o'ng burchakdagi Serial yorlig'i */
.ph-serial-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent);
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 5px 15px rgba(255, 153, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
/* 4. INSTAGRAM STORIES (HOZIR TRENDDA - PERFECT CIRCLE) */
.stories-wrapper { margin-bottom: 30px; width: 100%; overflow: hidden; }
.story-item { display: flex; flex-direction: column; align-items: center; justify-content: flex-start; cursor: pointer; text-align: center; width: 84px !important; min-width: 84px !important; max-width: 84px !important; flex-shrink: 0 !important; margin: 0 auto; transition: transform 0.2s ease; gap: 8px; }
.story-item:hover { transform: scale(1.05); }
.story-img-ring { width: 74px !important; height: 74px !important; min-width: 74px !important; min-height: 74px !important; max-width: 74px !important; max-height: 74px !important; border-radius: 50% !important; padding: 2px !important; background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); display: flex; align-items: center; justify-content: center; box-shadow: 0 5px 15px rgba(0,0,0,0.3); flex-shrink: 0 !important; box-sizing: border-box !important; }
.istoriyimg { width: 100% !important; height: 100% !important; border-radius: 50% !important; object-fit: cover !important; border: 3px solid var(--bg-body, #141414) !important; box-sizing: border-box !important; background-color: var(--bg-card, #111); display: block; margin: 0 !important; }
.story-title { font-size: 12px; color: var(--text-muted); font-weight: 600; width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; transition: color 0.2s; line-height: 1.2; }
.story-item:hover .story-title { color: var(--text-main, #fff); }
#optimized-history .owl-stage-outer { padding-top: 5px; padding-bottom: 15px !important; }
#optimized-history .owl-stage { display: flex; align-items: flex-start; }

/* 5. TAVSIYALAR UCHUN SCROLL (FAQAT TAVSIYALAR YONGA SURILADI) */
.premium-scroll { display: flex !important; flex-wrap: nowrap !important; overflow-x: auto !important; gap: 15px !important; padding-bottom: 20px !important; align-items: stretch !important; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; }
.premium-scroll::-webkit-scrollbar { height: 8px !important; display: block !important; }
.premium-scroll::-webkit-scrollbar-track { background: rgba(255,255,255,0.02); border-radius: 10px; }
.premium-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 10px; border: 2px solid var(--bg-main); }
.premium-scroll::-webkit-scrollbar-thumb:hover { background: var(--accent); }
.movie-card.related-card { display: flex !important; flex-direction: column !important; justify-content: flex-start !important; flex: 0 0 160px !important; width: 160px !important; max-width: 160px !important; height: auto !important; background: var(--bg-card) !important; border-radius: 12px !important; overflow: hidden !important; border: 1px solid rgba(255,255,255,0.05) !important; box-shadow: 0 5px 15px rgba(0,0,0,0.4) !important; }
.movie-card.related-card .mc-poster { width: 100% !important; aspect-ratio: 2 / 3 !important; position: relative !important; flex-shrink: 0 !important; background: #0a0a0a !important; padding-top: 0 !important; }
.movie-card.related-card .mc-poster img { position: absolute !important; top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important; object-fit: cover !important; }
.movie-card.related-card .mc-info { padding: 12px !important; display: flex !important; flex-direction: column !important; width: 100% !important; box-sizing: border-box !important; text-align: left !important; }
.movie-card.related-card .mc-title { font-size: 14px !important; font-weight: 600 !important; color: var(--text-main, #fff) !important; margin: 0 0 5px 0 !important; display: -webkit-box !important; -webkit-line-clamp: 2 !important; -webkit-box-orient: vertical !important; overflow: hidden !important; white-space: normal !important; line-height: 1.3 !important; height: 36px !important; }
.drag-scroll { cursor: grab; } .drag-scroll.active { cursor: grabbing; }
@media (max-width: 768px) { .premium-scroll::-webkit-scrollbar { display: none !important; } .movie-card.related-card { flex: 0 0 130px !important; width: 130px !important; max-width: 130px !important; } }

/* 6. ZAMONAVIY PAGINATSIYA (FIX: QISILIB QOLMASLIGI UCHUN ORDER 999) */
.modern-pagination, #bottom-nav { margin-top: 40px !important; margin-bottom: 20px !important; display: flex !important; flex-direction: column !important; align-items: center !important; gap: 20px !important; width: 100% !important; grid-column: 1 / -1 !important; box-sizing: border-box !important; padding: 0 10px !important; order: 999 !important; }
.nav-load-more { width: 100%; max-width: 400px; }
.nav-load-more a { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; background: rgba(255,255,255,0.05); color: #fff; padding: 16px; border-radius: 14px; font-weight: 700; font-size: 15px; border: 1px solid rgba(255,255,255,0.1); transition: 0.3s; text-decoration: none; text-transform: uppercase; letter-spacing: 0.5px; }
.nav-load-more a:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.page-numbers-wrap { width: 100%; display: flex; justify-content: center; }
.page-numbers { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; background: rgba(0,0,0,0.4); padding: 10px 15px; border-radius: 25px; border: 1px solid rgba(255,255,255,0.05); max-width: 100%; box-sizing: border-box; }
.nav-items { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.page-numbers a, .page-numbers span { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; font-weight: 700; font-size: 14px; color: var(--text-muted); text-decoration: none; transition: 0.2s; }
.page-numbers a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.nav-items span { background: var(--accent); color: #fff; box-shadow: 0 0 15px var(--accent-glow); }
@media (max-width: 480px) { .page-numbers { padding: 8px 10px; gap: 5px; border-radius: 20px; } .page-numbers a, .page-numbers span { width: 32px !important; height: 32px !important; font-size: 13px !important; } .nav-items { gap: 4px; } }

/* 7. BANNERS & ADS */
.banner-place { width: 100%; min-height: 100px; background-color: var(--bg-card); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 30px; overflow: hidden; }
.ad-container { width: 100%; max-width: 900px; margin: 0 auto 40px auto; padding: 0 20px; box-sizing: border-box; }
.ad-placeholder { width: 100%; min-height: 100px; background: repeating-linear-gradient(45deg, rgba(255,255,255,0.02), rgba(255,255,255,0.02) 10px, transparent 10px, transparent 20px); border: 2px dashed rgba(255,255,255,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 14px; font-weight: 500; transition: 0.3s; }
.ad-placeholder:hover { border-color: rgba(255,255,255,0.2); color: #fff; }

/* 8. QUICK GENRES */
.quick-genres-block { padding: 0 60px 40px 60px; }
.quick-genres { display: flex; flex-wrap: wrap; gap: 12px; }
.qg-tag { background: rgba(255,255,255,0.05); color: #fff; padding: 12px 20px; border-radius: 50px; font-size: 14px; font-weight: 600; border: 1px solid rgba(255,255,255,0.05); transition: 0.3s ease; display: inline-flex; align-items: center; gap: 8px; }
.qg-tag:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.5); border-color: rgba(255,255,255,0.2); }
@media (max-width: 992px) { .quick-genres-block { padding: 0 20px 30px 20px; } .qg-tag { padding: 10px 16px; font-size: 13px; } }

/* 9. STORY VIDEO MODAL PLAYER */
.custom-modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.95); backdrop-filter: blur(10px); }
.custom-modal-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; max-width: 450px; height: 80vh; background: #000; border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 0 50px rgba(255, 153, 0, 0.2); border: 1px solid #333; }
.custom-video { width: 100%; height: 100%; object-fit: cover; }
.custom-progress-line { position: absolute; top: 0; left: 0; height: 4px; background: var(--accent); width: 0%; z-index: 10; box-shadow: 0 0 10px var(--accent); }
.custom-modal-title { position: absolute; top: 20px; left: 20px; z-index: 10; color: #fff; font-size: 16px; font-weight: 700; text-shadow: 0 2px 4px rgba(0,0,0,0.8); background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent); padding: 5px 10px; border-radius: 5px; margin: 0; }
.custom-close { position: absolute; top: 15px; right: 15px; width: 36px; height: 36px; background: rgba(255,255,255,0.2); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; cursor: pointer; z-index: 20; transition: 0.2s; backdrop-filter: blur(5px); border: none; }
.custom-close:hover { background: rgba(255,255,255,0.4); transform: rotate(90deg); }
.custom-nav-btn { position: absolute; top: 0; bottom: 0; width: 30%; z-index: 5; cursor: pointer; } .nav-prev { left: 0; } .nav-next { right: 0; }
.custom-watch-btn { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 15; background: #fff; color: #000; padding: 14px 35px; border-radius: 50px; font-weight: 800; font-size: 15px; box-shadow: 0 10px 20px rgba(0,0,0,0.5); transition: 0.3s; text-transform: uppercase; letter-spacing: 1px; text-decoration: none; white-space: nowrap; }
.custom-watch-btn:hover { transform: translateX(-50%) scale(1.05); background-color: var(--accent); color: #fff; }
@media (max-width: 992px) { .custom-modal-content { width: 100%; height: 100%; max-width: 100%; border-radius: 0; border: none; } .custom-watch-btn { bottom: 80px; width: 80%; text-align: center; } }

/* 10. HEADER DROPDOWN (Bootstrap-free) */
.header-profile .dropdown-menu { position: absolute; top: calc(100% + 10px); right: 0; min-width: 240px; background: var(--bg-card, #1a1a2e); border: 1px solid var(--border, #333); border-radius: 12px; box-shadow: 0 15px 50px rgba(0,0,0,0.5); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all 0.2s ease; z-index: 9999; list-style: none; margin: 0; }
.header-profile .dropdown-menu.show { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu .profile-header { display: flex; align-items: center; gap: 12px; padding: 12px; background: rgba(255,255,255,0.05); border-radius: 8px; margin-bottom: 8px; }
.dropdown-menu .profile-header .avatar-md { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.dropdown-menu .profile-header h6 { margin: 0; font-size: 14px; color: var(--text-main, #fff); }
.dropdown-menu .profile-header .text-muted { font-size: 12px; }
.dropdown-menu .dropdown-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; color: var(--text-muted, #aaa); font-size: 14px; border-radius: 8px; text-decoration: none; transition: all 0.2s; }
.dropdown-menu .dropdown-item:hover { background: rgba(255,255,255,0.08); color: var(--text-main, #fff); }
.dropdown-menu .dropdown-item i { width: 18px; text-align: center; }
.dropdown-menu .divider { height: 1px; background: var(--border, #333); margin: 6px 0; }
.dropdown-menu .badge { font-size: 10px; padding: 2px 6px; border-radius: 10px; }

/* ==========================================================================
   LIGHT MODE OVERRIDES (components.css)
   ========================================================================== */

/* Login Button */
body.light-mode .login-btn-link { color: #fff; box-shadow: 0 4px 15px rgba(0, 176, 80, 0.3); }

/* User Dropdown */
body.light-mode .user-trigger { background-color: #f3f4f6; border-color: #e5e7eb; }
body.light-mode .user-trigger:hover { border-color: var(--accent); background-color: #fff; }
body.light-mode .user-dropdown { background-color: #fff; border-color: #e5e7eb; box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
body.light-mode .dropdown-header { background-color: #f3f4f6; }
body.light-mode .dropdown-header b { color: #111827; }
body.light-mode .dropdown-list li a { color: #4b5563; }
body.light-mode .dropdown-list li a:hover { background-color: #f3f4f6; color: #111827; }
body.light-mode .divider { background-color: #e5e7eb; }
body.light-mode .dropdown-menu .profile-header { background: #f3f4f6; }
body.light-mode .dropdown-menu .profile-header h6 { color: #111827; }
body.light-mode .dropdown-menu .dropdown-item { color: #4b5563; }
body.light-mode .dropdown-menu .dropdown-item:hover { background: #f3f4f6; color: #111827; }

/* Movie Cards */
body.light-mode .movie-card { box-shadow: 0 2px 10px rgba(0,0,0,0.08); border-color: #e5e7eb; }
body.light-mode .movie-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.12); border-color: #d1d5db; }
body.light-mode .mc-title { color: #111827; }
body.light-mode .mc-badge { background-color: rgba(0,0,0,0.7); color: #fff; }
body.light-mode .mc-overlay i { color: var(--accent); }

/* Hero Slider — qoraytirilgan overlay saqlanadi, oq yozuvlar OK */
body.light-mode .ph-title { color: #fff; }
body.light-mode .ph-meta { color: #e5e7eb; }
body.light-mode .ph-quality,
body.light-mode .ph-episode { color: #fff; }

/* Stories */
body.light-mode .story-title { color: #6b7280; }
body.light-mode .story-item:hover .story-title { color: #111827; }
body.light-mode .stories-wrapper .section-title { color: #111827; }

/* Related Cards */
body.light-mode .movie-card.related-card { border-color: #e5e7eb !important; box-shadow: 0 2px 10px rgba(0,0,0,0.06) !important; }
body.light-mode .movie-card.related-card .mc-title { color: #111827 !important; }

/* Pagination */
body.light-mode .modern-pagination,
body.light-mode #bottom-nav { color: #111827; }
body.light-mode .page-numbers { background: #f3f4f6; border-color: #e5e7eb; }
body.light-mode .page-numbers a { color: #4b5563; }
body.light-mode .page-numbers a:hover { background: #e5e7eb; color: #111827; }
body.light-mode .nav-items span { background: var(--accent); color: #fff; }
body.light-mode .nav-load-more a { background: #f3f4f6; color: #111827; border-color: #e5e7eb; }
body.light-mode .nav-load-more a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Quick Genres */
body.light-mode .qg-tag { background: #f3f4f6; color: #111827; border-color: #e5e7eb; }
body.light-mode .qg-tag:hover { background: #e5e7eb; border-color: #d1d5db; }

/* Premium Scroll scrollbar */
body.light-mode .premium-scroll::-webkit-scrollbar-track { background: #f3f4f6; }
body.light-mode .premium-scroll::-webkit-scrollbar-thumb { background: #d1d5db; }
body.light-mode .premium-scroll::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* Ad Placeholder */
body.light-mode .ad-placeholder { border-color: #e5e7eb; color: #6b7280; background: repeating-linear-gradient(45deg, rgba(0,0,0,0.02), rgba(0,0,0,0.02) 10px, transparent 10px, transparent 20px); }
body.light-mode .ad-placeholder:hover { border-color: #d1d5db; color: #111827; }

/* Footer */
body.light-mode .footer { background-color: #fff; border-top-color: #e5e7eb; }
body.light-mode .footer a { color: #111827; }
body.light-mode .footer a:hover { color: var(--accent); }