/* ============================================
   9jaHotGist - Premium Entertainment Blog
   Vibrant, Lively, Entertainment-Focused Design
   ============================================ */

/* CSS Variables - Light Mode Default */
:root {
    --primary: #FF6B35;
    --primary-dark: #E85A2A;
    --primary-light: #FF8C5A;
    --secondary: #F7C948;
    --secondary-dark: #E5B730;
    --hot-red: #FF3366;
    --hot-pink: #FF69B4;
    --electric-blue: #00D4FF;
    --neon-green: #39FF14;
    --purple-pop: #9B59B6;
    --gold: #FFD700;
    --music-color: #9B59B6;
    --nollywood-color: #E74C3C;
    --relationship-color: #FF69B4;
    --viral-color: #FF6B35;
    
    /* Light Mode Colors - Softer, easier on the eyes */
    --bg-primary: #F5F5F0;
    --bg-secondary: #EAEAE5;
    --bg-card: #FAFAF8;
    --bg-header: rgba(245, 245, 240, 0.95);
    --text-primary: #1A1A2E;
    --text-secondary: #3D3D4A;
    --text-muted: #5A5A6A;
    --border-color: rgba(0, 0, 0, 0.12);
    --gradient-hot: linear-gradient(135deg, #FF6B35 0%, #FF3366 50%, #FF69B4 100%);
    --gradient-fire: linear-gradient(135deg, #FF6B35 0%, #F7C948 100%);
    --gradient-card: linear-gradient(145deg, #FAFAF8 0%, #F0F0EB 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 30px rgba(255, 107, 53, 0.25);
    --shadow-hot: 0 5px 25px rgba(255, 51, 102, 0.3);
    --overlay-gradient: linear-gradient(180deg, transparent 0%, rgba(26, 26, 46, 0.85) 100%);
    --card-overlay: linear-gradient(180deg, transparent 40%, rgba(26, 26, 46, 0.8) 100%);
}

/* Dark Mode */
[data-theme="dark"] {
    --bg-primary: #1A1A2E;
    --bg-secondary: #252542;
    --bg-card: #2D2D4A;
    --bg-header: rgba(26, 26, 46, 0.95);
    --text-primary: #FFFFFF;
    --text-secondary: #B8B8D0;
    --text-muted: #8888A0;
    --border-color: rgba(255, 255, 255, 0.05);
    --gradient-card: linear-gradient(145deg, rgba(45, 45, 74, 0.8) 0%, rgba(37, 37, 66, 0.9) 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 30px rgba(255, 107, 53, 0.3);
    --shadow-hot: 0 5px 25px rgba(255, 51, 102, 0.4);
    --overlay-gradient: linear-gradient(180deg, transparent 0%, rgba(26, 26, 46, 0.9) 100%);
    --card-overlay: linear-gradient(180deg, transparent 50%, rgba(26, 26, 46, 0.8) 100%);
}
    --font-display: 'Bebas Neue', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --section-padding: 80px;
    --container-padding: 20px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg-primary); color: var(--text-primary); line-height: 1.6; overflow-x: hidden; position: relative; transition: background 0.3s ease, color 0.3s ease; }
body::before { content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 40%), radial-gradient(circle at 80% 80%, rgba(255, 51, 102, 0.06) 0%, transparent 40%), radial-gradient(circle at 50% 50%, rgba(155, 89, 182, 0.04) 0%, transparent 60%); pointer-events: none; z-index: 0; }
[data-theme="dark"] body::before { background: radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 40%), radial-gradient(circle at 80% 80%, rgba(255, 51, 102, 0.05) 0%, transparent 40%), radial-gradient(circle at 50% 50%, rgba(155, 89, 182, 0.03) 0%, transparent 60%); }
.container { max-width: 1400px; margin: 0 auto; padding: 0 var(--container-padding); position: relative; z-index: 1; }
a { text-decoration: none; color: inherit; transition: var(--transition-normal); }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.floating-emojis { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; overflow: hidden; }
.emoji { position: absolute; font-size: 30px; opacity: 0.1; animation: float 20s infinite ease-in-out; }
.emoji:nth-child(1) { left: 5%; top: 20%; animation-delay: 0s; }
.emoji:nth-child(2) { left: 15%; top: 60%; animation-delay: -3s; }
.emoji:nth-child(3) { left: 30%; top: 80%; animation-delay: -6s; }
.emoji:nth-child(4) { left: 50%; top: 30%; animation-delay: -9s; }
.emoji:nth-child(5) { left: 70%; top: 70%; animation-delay: -12s; }
.emoji:nth-child(6) { left: 85%; top: 40%; animation-delay: -15s; }
.emoji:nth-child(7) { left: 95%; top: 85%; animation-delay: -18s; }
.emoji:nth-child(8) { left: 40%; top: 10%; animation-delay: -21s; }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(0deg); } 25% { transform: translateY(-30px) rotate(10deg); } 50% { transform: translateY(0) rotate(0deg); } 75% { transform: translateY(30px) rotate(-10deg); } }

.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: var(--bg-header); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-color); transition: all 0.3s ease; }
.header.scrolled { background: var(--bg-header); box-shadow: var(--shadow-lg); }
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; gap: 30px; }

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { display: flex; align-items: center; }
.logo-9ja { font-family: var(--font-display); font-size: 28px; color: var(--primary); letter-spacing: 2px; text-shadow: 0 0 20px rgba(255, 107, 53, 0.5); }
.logo-flame { font-size: 24px; animation: flame 1s infinite alternate; margin-left: 2px; }
@keyframes flame { 0% { transform: scale(1) rotate(-5deg); } 100% { transform: scale(1.1) rotate(5deg); } }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-hot { font-family: var(--font-display); font-size: 18px; color: var(--hot-red); letter-spacing: 3px; }
.logo-gist { font-family: var(--font-display); font-size: 24px; color: var(--text-primary); letter-spacing: 4px; }

.nav-links { display: flex; align-items: center; gap: 5px; }
.nav-link { display: flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: var(--radius-lg); font-weight: 500; font-size: 14px; color: var(--text-secondary); transition: all 0.3s ease; }
.nav-link i { font-size: 14px; }
.nav-link:hover { color: var(--text-primary); background: var(--bg-secondary); }
.nav-link.active { color: var(--primary); background: rgba(255, 107, 53, 0.1); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.search-btn, .theme-toggle, .mobile-menu-btn { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-secondary); background: var(--bg-secondary); border: 1px solid var(--border-color); transition: all 0.3s ease; }
.search-btn:hover, .theme-toggle:hover { color: var(--primary); background: rgba(255, 107, 53, 0.1); transform: scale(1.05); }
.mobile-menu-btn { display: none; }

.hero { position: relative; padding: 140px 0 60px; min-height: 80vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(ellipse at 30% 0%, rgba(255, 107, 53, 0.15) 0%, transparent 50%), radial-gradient(ellipse at 70% 100%, rgba(255, 51, 102, 0.1) 0%, transparent 50%); z-index: 0; }
.hero .container { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.hero-content { position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--gradient-hot); padding: 8px 20px; border-radius: var(--radius-xl); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 25px; animation: pulse 2s infinite; color: #FFFFFF; }
.badge-fire { font-size: 16px; animation: flame 0.5s infinite alternate; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4); } 50% { box-shadow: 0 0 0 15px rgba(255, 107, 53, 0); } }
.hero-title { font-family: var(--font-display); font-size: clamp(60px, 10vw, 100px); line-height: 0.95; letter-spacing: 3px; margin-bottom: 25px; }
.title-line { display: block; }
.title-line.highlight { color: var(--primary); text-shadow: 0 0 40px rgba(255, 107, 53, 0.5); position: relative; }
.title-line.highlight::after { content: ''; position: absolute; bottom: 5px; left: 0; width: 100%; height: 8px; background: var(--gradient-hot); border-radius: 4px; opacity: 0.5; }
.hero-subtitle { font-size: 18px; color: var(--text-secondary); max-width: 500px; margin-bottom: 40px; line-height: 1.7; }
.hero-stats { display: flex; gap: 40px; }
.stat { display: flex; flex-direction: column; }
.stat-number { font-family: var(--font-display); font-size: 36px; color: var(--primary); letter-spacing: 1px; }
.stat-label { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

.hero-featured { position: relative; z-index: 1; }
.featured-card.main { background: var(--bg-card); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-color); box-shadow: var(--shadow-lg); transition: all 0.3s ease; }
.featured-card.main:hover { transform: translateY(-10px); box-shadow: var(--shadow-glow); }
.card-image { position: relative; height: 300px; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.featured-card:hover .card-image img { transform: scale(1.1); }
.card-overlay { position: absolute; inset: 0; background: var(--overlay-gradient); }
.card-category { position: absolute; top: 20px; left: 20px; padding: 8px 16px; border-radius: var(--radius-sm); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; gap: 6px; color: #FFFFFF; }
.card-category.hot { background: var(--gradient-hot); animation: pulse 2s infinite; }
.card-content { padding: 25px; }
.card-time { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.card-title { font-family: var(--font-heading); font-size: 24px; font-weight: 700; line-height: 1.3; margin-bottom: 12px; transition: var(--transition-normal); color: var(--text-primary); }
.featured-card:hover .card-title { color: var(--primary); }
.card-excerpt { font-size: 15px; color: var(--text-secondary); margin-bottom: 20px; line-height: 1.6; }
.card-meta { display: flex; align-items: center; gap: 20px; font-size: 13px; color: var(--text-muted); }
.card-author { display: flex; align-items: center; gap: 8px; }
.card-author img { width: 28px; height: 28px; border-radius: 50%; }
.card-views, .card-comments { display: flex; align-items: center; gap: 5px; }

.news-ticker { background: var(--bg-secondary); border-top: 1px solid rgba(255, 107, 53, 0.3); border-bottom: 1px solid rgba(255, 107, 53, 0.3); display: flex; align-items: stretch; overflow: hidden; }
.ticker-label { background: var(--gradient-hot); padding: 15px 25px; font-weight: 700; font-size: 12px; letter-spacing: 2px; display: flex; align-items: center; gap: 8px; white-space: nowrap; animation: labelPulse 2s infinite; color: #FFFFFF; }
@keyframes labelPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.8; } }
.ticker-content { flex: 1; overflow: hidden; display: flex; align-items: center; padding: 0 20px; }
.ticker-track { display: flex; gap: 30px; animation: ticker 30s linear infinite; white-space: nowrap; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker-item { font-size: 14px; color: var(--text-secondary); }
.ticker-separator { color: var(--primary); }

.main-content { padding: var(--section-padding) 0; }
.content-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; }

.category-tabs { display: flex; gap: 10px; margin-bottom: 30px; flex-wrap: wrap; }
.tab-btn { display: flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: var(--radius-xl); font-size: 14px; font-weight: 600; color: var(--text-secondary); background: var(--bg-card); border: 1px solid var(--border-color); transition: all 0.3s ease; }
.tab-btn:hover { color: var(--text-primary); border-color: var(--primary); transform: translateY(-2px); }
.tab-btn.active { color: #FFFFFF; background: var(--gradient-hot); border-color: transparent; box-shadow: var(--shadow-hot); }

.posts-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
.post-card { background: var(--bg-card); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-color); transition: all 0.3s ease; box-shadow: var(--shadow-sm); }
.post-card:hover { transform: translateY(-8px); border-color: rgba(255, 107, 53, 0.3); box-shadow: var(--shadow-glow); }
.post-card.featured { border-color: rgba(255, 107, 53, 0.5); }
.post-image { position: relative; height: 180px; overflow: hidden; }
.post-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.post-card:hover .post-image img { transform: scale(1.1); }
.post-overlay { position: absolute; inset: 0; background: var(--card-overlay); }
.post-category { position: absolute; top: 15px; left: 15px; padding: 6px 12px; border-radius: var(--radius-sm); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; gap: 5px; color: #FFFFFF; }
.post-category.music { background: var(--music-color); }
.post-category.nollywood { background: var(--nollywood-color); }
.post-category.relationship { background: var(--relationship-color); }
.post-category.viral { background: var(--gradient-hot); }
.post-trending { position: absolute; top: 15px; right: 50px; padding: 6px 12px; border-radius: var(--radius-sm); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; background: var(--gold); color: var(--dark); display: flex; align-items: center; gap: 5px; animation: pulse 2s infinite; }
.post-bookmark { position: absolute; top: 15px; right: 15px; width: 32px; height: 32px; border-radius: 50%; background: var(--bg-card); color: var(--text-secondary); display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; box-shadow: var(--shadow-sm); }
.post-bookmark:hover { background: var(--primary); color: white; transform: scale(1.1); }
.post-content { padding: 20px; }
.post-meta { display: flex; gap: 15px; margin-bottom: 12px; }
.post-time, .post-reading { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.post-title { font-family: var(--font-heading); font-size: 17px; font-weight: 700; line-height: 1.4; margin-bottom: 10px; transition: all 0.3s ease; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; color: var(--text-primary); }
.post-card:hover .post-title { color: var(--primary); }
.post-excerpt { font-size: 14px; color: var(--text-secondary); line-height: 1.5; margin-bottom: 15px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.post-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 15px; border-top: 1px solid var(--border-color); }
.post-author { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-secondary); }
.post-author img { width: 24px; height: 24px; border-radius: 50%; }
.post-stats { display: flex; gap: 12px; font-size: 12px; color: var(--text-muted); }
.post-stats span { display: flex; align-items: center; gap: 4px; }

.load-more { text-align: center; margin-top: 40px; }
.load-more-btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 40px; background: var(--bg-card); border: 2px solid var(--primary); border-radius: var(--radius-xl); font-size: 15px; font-weight: 600; color: var(--primary); transition: all 0.3s ease; }
.load-more-btn:hover { background: var(--primary); color: white; transform: translateY(-3px); box-shadow: var(--shadow-hot); }
.load-more-btn i { animation: bounce 1.5s infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

.sidebar { display: flex; flex-direction: column; gap: 30px; }
.sidebar-widget { background: var(--bg-card); border-radius: var(--radius-lg); border: 1px solid var(--border-color); overflow: hidden; box-shadow: var(--shadow-sm); }
.widget-header { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 1px solid var(--border-color); }
.widget-header h3 { font-family: var(--font-display); font-size: 20px; letter-spacing: 1px; display: flex; align-items: center; gap: 10px; }
.widget-header h3 i { color: var(--primary); }
.widget-badge { background: var(--gradient-hot); padding: 4px 12px; border-radius: var(--radius-xl); font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #FFFFFF; }

.trending-list { padding: 10px; }
.trending-item { display: flex; align-items: flex-start; gap: 15px; padding: 15px; border-radius: var(--radius-md); transition: var(--transition-normal); }
.trending-item:hover { background: rgba(0, 0, 0, 0.05); }
.trending-number { font-family: var(--font-display); font-size: 28px; color: var(--primary); opacity: 0.5; line-height: 1; }
.trending-item:hover .trending-number { opacity: 1; }
.trending-content h4 { font-size: 14px; font-weight: 600; line-height: 1.4; margin-bottom: 5px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: var(--transition-normal); }
.trending-item:hover .trending-content h4 { color: var(--primary); }
.trending-meta { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.trending-meta i { color: var(--hot-red); }

.newsletter-widget { padding: 30px; text-align: center; background: linear-gradient(145deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 51, 102, 0.08) 100%); }
[data-theme="dark"] .newsletter-widget { background: linear-gradient(145deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 51, 102, 0.1) 100%), var(--gradient-card); }
.newsletter-icon { width: 70px; height: 70px; margin: 0 auto 20px; background: var(--gradient-hot); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; box-shadow: var(--shadow-hot); color: white; }
.newsletter-widget h3 { font-family: var(--font-display); font-size: 24px; letter-spacing: 1px; margin-bottom: 10px; }
.newsletter-widget p { font-size: 14px; color: var(--text-secondary); margin-bottom: 20px; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input { flex: 1; padding: 12px 18px; background: var(--bg-primary); border: 1px solid var(--border-color); border-radius: var(--radius-md); color: var(--text-primary); font-size: 14px; transition: all 0.3s ease; }
.newsletter-form input:focus { outline: none; border-color: var(--primary); }
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form button { width: 50px; height: 50px; background: var(--gradient-hot); border-radius: var(--radius-md); color: white; font-size: 18px; transition: var(--transition-normal); }
.newsletter-form button:hover { transform: scale(1.05); box-shadow: var(--shadow-hot); }
.newsletter-count { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 15px; font-size: 13px; color: var(--text-muted); }
.newsletter-count i { color: var(--primary); }

.social-widget { padding: 20px; }
.social-widget h3 { font-family: var(--font-display); font-size: 18px; letter-spacing: 1px; display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.social-widget h3 i { color: var(--primary); }
.social-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.social-link { display: flex; flex-direction: column; align-items: center; gap: 5px; padding: 15px 10px; border-radius: var(--radius-md); transition: var(--transition-normal); color: #FFFFFF; }
.social-link i { font-size: 22px; }
.social-link span { font-size: 11px; font-weight: 600; color: #FFFFFF; }
.social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); background-size: 200% 200%; }
.social-link.twitter { background: #1DA1F2; }
.social-link.facebook { background: #4267B2; }
.social-link.tiktok { background: linear-gradient(45deg, #00f2ea, #ff0050); }
.social-link.youtube { background: #FF0000; }
.social-link.whatsapp { background: #25D366; }
.social-link:hover { transform: translateY(-3px) scale(1.05); box-shadow: var(--shadow-md); }

.poll-widget { padding: 20px; }
.poll-question { font-size: 16px; font-weight: 600; margin-bottom: 20px; padding: 0 10px; }
.poll-options { display: flex; flex-direction: column; gap: 12px; padding: 0 10px; }
.poll-option { position: relative; display: flex; align-items: center; padding: 12px 15px; background: var(--bg-secondary); border-radius: var(--radius-md); cursor: pointer; overflow: hidden; transition: all 0.3s ease; }
.poll-option:hover { background: var(--bg-primary); box-shadow: var(--shadow-sm); }
.poll-option input { margin-right: 12px; accent-color: var(--primary); }
.option-text { font-size: 14px; font-weight: 500; z-index: 1; }
.option-bar { position: absolute; left: 0; top: 0; height: 100%; width: var(--percent); background: linear-gradient(90deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 51, 102, 0.1) 100%); border-radius: var(--radius-md); }
.option-percent { margin-left: auto; font-size: 13px; font-weight: 600; color: var(--primary); z-index: 1; }
.poll-votes { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 20px; padding-top: 15px; border-top: 1px solid var(--border-color); font-size: 13px; color: var(--text-muted); }
.poll-votes i { color: var(--primary); }

.ad-widget { padding: 20px; text-align: center; }
.ad-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.ad-placeholder { margin-top: 15px; padding: 60px 20px; background: var(--bg-secondary); border-radius: var(--radius-md); border: 2px dashed var(--border-color); display: flex; flex-direction: column; align-items: center; gap: 10px; }
.ad-placeholder i { font-size: 40px; color: var(--text-muted); opacity: 0.5; }
.ad-placeholder span { font-size: 14px; color: var(--text-muted); }
.ad-placeholder a { font-size: 13px; color: var(--primary); font-weight: 600; }
.ad-placeholder a:hover { text-decoration: underline; }

.video-section { padding: var(--section-padding) 0; background: var(--bg-secondary); }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
.section-header h2 { font-family: var(--font-display); font-size: 32px; letter-spacing: 2px; display: flex; align-items: center; gap: 15px; }
.section-header h2 i { color: var(--primary); }
.see-all { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--primary); }
.see-all:hover { gap: 12px; }
.video-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 20px; }
.video-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-card); transition: all 0.3s ease; box-shadow: var(--shadow-sm); }
.video-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.video-card.main { grid-row: span 2; }
.video-thumbnail { position: relative; height: 100%; min-height: 180px; overflow: hidden; }
.video-card.main .video-thumbnail { min-height: 400px; }
.video-thumbnail img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.video-card:hover .video-thumbnail img { transform: scale(1.1); }
.video-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.7) 100%); }
.play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 70px; height: 70px; background: var(--gradient-hot); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; color: white; transition: var(--transition-normal); box-shadow: var(--shadow-hot); }
.play-btn.small { width: 50px; height: 50px; font-size: 18px; }
.video-card:hover .play-btn { transform: translate(-50%, -50%) scale(1.1); }
.video-duration { position: absolute; bottom: 15px; right: 15px; padding: 5px 10px; background: rgba(0, 0, 0, 0.8); border-radius: var(--radius-sm); font-size: 12px; font-weight: 600; }
.video-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; }
.video-info h3 { font-size: 16px; font-weight: 600; line-height: 1.4; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; color: #FFFFFF; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5); }
.video-card.main .video-info h3 { font-size: 20px; }
.video-meta { display: flex; gap: 15px; font-size: 12px; color: rgba(255, 255, 255, 0.8); }
.video-meta span { display: flex; align-items: center; gap: 5px; }

.footer { position: relative; background: #E0E0DB; padding-top: 60px; }
.footer-wave { position: absolute; top: -1px; left: 0; width: 100%; overflow: hidden; line-height: 0; }
.footer-wave svg { width: 100%; height: 80px; fill: var(--bg-primary); }
[data-theme="dark"] .footer { background: #16162B; }
[data-theme="dark"] .footer-wave svg { fill: var(--bg-secondary); }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 50px; padding-bottom: 50px; border-bottom: 1px solid var(--border-color); }
.footer-brand { padding-right: 30px; }
.footer-logo { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer-logo .logo-icon { display: flex; align-items: center; flex-shrink: 0; }
.footer-logo .logo-text { display: flex; flex-direction: column; line-height: 1; }
.footer-brand p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 25px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; background: var(--bg-card); border: 1px solid var(--border-color); display: flex; align-items: center; justify-content: center; color: var(--text-secondary); transition: all 0.3s ease; }
.footer-social a:hover { background: var(--primary); color: white; transform: translateY(-3px); border-color: var(--primary); }
.footer-links h4 { font-family: var(--font-display); font-size: 18px; letter-spacing: 1px; margin-bottom: 25px; color: var(--text-primary); }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: var(--text-secondary); transition: var(--transition-normal); }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 30px 0; }
.footer-bottom p { font-size: 14px; color: var(--text-muted); }
.footer-badges { display: flex; gap: 20px; }
.footer-badges span { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-muted); }
.footer-badges i { color: var(--primary); }

.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: var(--gradient-hot); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 18px; box-shadow: var(--shadow-hot); opacity: 0; visibility: hidden; transition: var(--transition-normal); z-index: 999; }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-5px) scale(1.1); }

.mobile-menu-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.5); z-index: 2000; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }
.mobile-menu { position: absolute; right: 0; top: 0; width: 300px; height: 100%; background: var(--bg-primary); padding: 30px; transform: translateX(100%); transition: all 0.3s ease; box-shadow: var(--shadow-lg); }
.mobile-menu-overlay.active .mobile-menu { transform: translateX(0); }
.mobile-close { position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; border-radius: 50%; background: var(--bg-secondary); color: var(--text-secondary); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.mobile-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 40px; }
.mobile-nav { display: flex; flex-direction: column; gap: 5px; }
.mobile-nav a { display: flex; align-items: center; gap: 15px; padding: 15px; border-radius: var(--radius-md); font-size: 16px; color: var(--text-secondary); transition: all 0.3s ease; }
.mobile-nav a:hover { background: var(--bg-secondary); color: var(--primary); }
.mobile-nav a i { width: 20px; }
.mobile-social { display: flex; gap: 12px; margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--border-color); }
.mobile-social a { width: 42px; height: 42px; border-radius: 50%; background: var(--bg-secondary); display: flex; align-items: center; justify-content: center; color: var(--text-secondary); transition: all 0.3s ease; }
.mobile-social a:hover { background: var(--primary); color: white; }

@media (max-width: 1200px) {
    .content-grid { grid-template-columns: 1fr 320px; }
    .video-grid { grid-template-columns: repeat(2, 1fr); }
    .video-card.main { grid-column: span 2; grid-row: auto; }
    .video-card.main .video-thumbnail { min-height: 300px; }
}

@media (max-width: 1024px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .hero .container { grid-template-columns: 1fr; gap: 40px; }
    .hero-content { text-align: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-stats { justify-content: center; }
    .content-grid { grid-template-columns: 1fr; }
    .sidebar { display: grid; grid-template-columns: repeat(2, 1fr); }
    .newsletter-widget { grid-column: span 2; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --section-padding: 50px; }
    .hero { min-height: auto; padding: 120px 0 50px; }
    .hero-title { font-size: 50px; }
    .hero-stats { flex-wrap: wrap; gap: 25px; }
    .card-image { height: 220px; }
    .category-tabs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 10px; -webkit-overflow-scrolling: touch; }
    .tab-btn { flex-shrink: 0; }
    .posts-grid { grid-template-columns: 1fr; }
    .sidebar { grid-template-columns: 1fr; }
    .newsletter-widget { grid-column: auto; }
    .video-grid { grid-template-columns: 1fr; }
    .video-card.main { grid-column: auto; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-brand { padding-right: 0; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}

@media (max-width: 480px) {
    .logo-9ja { font-size: 22px; }
    .logo-hot { font-size: 14px; }
    .logo-gist { font-size: 18px; }
    .hero-title { font-size: 40px; }
    .hero-badge { font-size: 10px; padding: 6px 14px; }
    .hero-subtitle { font-size: 15px; }
    .stat-number { font-size: 28px; }
    .section-header h2 { font-size: 24px; }
    .social-links { grid-template-columns: repeat(2, 1fr); }
    .back-to-top { bottom: 20px; right: 20px; width: 44px; height: 44px; }
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, 0.2); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }
[data-theme="dark"] ::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.2); }
::selection { background: var(--primary); color: white; }
