/*
Theme Name: KhabardarCG Premium
Version: 2.0
Description: Premium Hindi News Portal — KhabardarCG
Author: Custom
*/

/* ============================================================
   CSS VARIABLES & RESET
   ============================================================ */
:root {
    --red:        #d42b2b;
    --red-dark:   #a81f1f;
    --red-light:  #ff4444;
    --orange:     #f97316;
    --dark:       #111214;
    --dark-2:     #1c1e22;
    --dark-3:     #252830;
    --mid:        #3d4049;
    --gray:       #6b7280;
    --gray-lt:    #9ca3af;
    --border:     #e5e7eb;
    --bg-gray:    #f4f5f7;
    --bg-white:   #ffffff;
    --text:       #1a1d23;
    --text-lt:    #4b5563;
    --gold:       #f59e0b;
    --green:      #16a34a;

    --radius-sm:  6px;
    --radius:     10px;
    --radius-lg:  16px;
    --radius-xl:  24px;

    --shadow-sm:  0 1px 4px rgba(0,0,0,.07);
    --shadow:     0 4px 16px rgba(0,0,0,.09);
    --shadow-md:  0 8px 28px rgba(0,0,0,.12);
    --shadow-lg:  0 16px 48px rgba(0,0,0,.16);

    --transition: .25s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }

body {
    font-family: 'Noto Sans Devanagari', 'Barlow', 'Mangal', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg-gray);
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width:100%; height:auto; display:block; }
ul, ol { list-style:none; }
button { cursor:pointer; font-family:inherit; border:none; background:none; }
input, textarea { font-family:inherit; }

/* ============================================================
   LAYOUT
   ============================================================ */
.kb-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.site { min-height:100vh; }
#content { background: var(--bg-gray); }

/* ============================================================
   TOP BAR
   ============================================================ */
.kb-topbar {
    background: var(--dark);
    color: #adb5bd;
    font-size: 12px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.kb-topbar .kb-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.kb-topbar-left { display:flex; align-items:center; gap:12px; }

.kb-date-pill, .kb-temp-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #9ca3af;
}

.kb-topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.kb-epaper-btn, .kb-app-btn {
    font-size: 11.5px;
    font-weight: 600;
    color: #d1d5db;
    padding: 4px 10px;
    border-radius: 4px;
    background: rgba(255,255,255,.07);
    transition: background var(--transition);
}

.kb-epaper-btn { background: var(--red); color:#fff; }
.kb-epaper-btn:hover { background: var(--red-dark); }
.kb-app-btn:hover { background: rgba(255,255,255,.14); }

.kb-social-row { display:flex; gap:8px; align-items:center; }

.kb-soc {
    width: 26px; height: 26px;
    display: flex; align-items:center; justify-content:center;
    border-radius: 5px;
    color: #fff;
    transition: transform var(--transition), opacity var(--transition);
}
.kb-soc:hover { transform: translateY(-2px); opacity: .85; }
.kb-soc--fb { background:#1877f2; }
.kb-soc--tw { background:#1da1f2; }
.kb-soc--yt { background:#ff0000; }
.kb-soc--ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }

/* ============================================================
   HEADER
   ============================================================ */
.kb-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--transition);
}

.kb-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.kb-header .kb-container {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 14px;
    padding-bottom: 14px;
}

/* Logo */
.kb-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex: 1;
}

.kb-logo-icon {
    width: 44px; height: 44px;
    background: var(--red);
    color: #fff;
    font-family: 'Bebas Neue', 'Barlow', sans-serif;
    font-size: 28px;
    display: flex; align-items:center; justify-content:center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(212,43,43,.3);
}

.kb-logo-main {
    display: block;
    font-family: 'Barlow', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1;
}

.kb-logo-sub {
    display: block;
    font-size: 10px;
    color: #9ca3af;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Header center */
.kb-header-center { display:flex; align-items:center; gap:12px; }

.kb-live-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(212,43,43,.15);
    border: 1px solid rgba(212,43,43,.4);
    color: #ff6b6b;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.kb-live-dot {
    width: 8px; height: 8px;
    background: var(--red-light);
    border-radius: 50%;
    animation: kb-pulse 1.2s infinite;
}

@keyframes kb-pulse {
    0%,100% { opacity:1; transform:scale(1); box-shadow:0 0 0 0 rgba(255,68,68,.5); }
    50%      { opacity:.8; transform:scale(1.2); box-shadow:0 0 0 5px rgba(255,68,68,0); }
}

/* Header actions */
.kb-header-actions { display:flex; align-items:center; gap:6px; }

.kb-search-toggle, .kb-notify-btn {
    width: 40px; height: 40px;
    display: flex; align-items:center; justify-content:center;
    border-radius: var(--radius-sm);
    color: #d1d5db;
    background: rgba(255,255,255,.07);
    transition: background var(--transition), color var(--transition);
    position: relative;
}
.kb-search-toggle:hover, .kb-notify-btn:hover {
    background: rgba(255,255,255,.14);
    color: #fff;
}

.kb-notify-count {
    position: absolute;
    top: 6px; right: 6px;
    width: 16px; height: 16px;
    background: var(--red);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    border-radius: 50%;
    display: flex; align-items:center; justify-content:center;
}

/* Hamburger */
.kb-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: rgba(255,255,255,.07);
    border-radius: var(--radius-sm);
}
.kb-hamburger span {
    display: block;
    width: 20px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}
.kb-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.kb-hamburger.open span:nth-child(2) { opacity:0; }
.kb-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Search dropdown */
.kb-search-dropdown {
    max-height: 0;
    overflow: hidden;
    background: var(--dark-3);
    transition: max-height .35s ease, padding .35s ease;
}
.kb-search-dropdown.open {
    max-height: 80px;
    padding: 12px 0;
}

.kb-search-form {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,.07);
    border-radius: var(--radius);
    padding: 10px 16px;
    color: #9ca3af;
}
.kb-search-form input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 15px;
}
.kb-search-form input::placeholder { color:#6b7280; }
.kb-search-form button {
    background: var(--red);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}
.kb-search-form button:hover { background: var(--red-dark); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.kb-nav {
    background: var(--red);
    border-bottom: 3px solid var(--red-dark);
    position: sticky;
    top: 72px;
    z-index: 999;
}

.kb-nav-list {
    display: flex;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 0;
}
.kb-nav-list::-webkit-scrollbar { display:none; }

.kb-nav-item a {
    display: block;
    padding: 13px 16px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,.88);
    white-space: nowrap;
    transition: color var(--transition), background var(--transition);
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
}
.kb-nav-item a:hover {
    color: #fff;
    background: rgba(0,0,0,.15);
    border-bottom-color: #fff;
}
.kb-nav-home a {
    background: rgba(0,0,0,.2);
    color: #fff;
}

.kb-nav-overlay { display:none; }

/* ============================================================
   BREAKING TICKER
   ============================================================ */
.kb-ticker {
    background: var(--bg-white);
    border-bottom: 2px solid var(--border);
    padding: 0;
    overflow: hidden;
}

.kb-ticker .kb-container {
    display: flex;
    align-items: stretch;
    height: 42px;
    overflow: hidden;
}

.kb-ticker-label {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--dark);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 0 16px 0 0;
    flex-shrink: 0;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
    padding-right: 24px;
}

.kb-ticker-dot {
    width: 8px; height: 8px;
    background: var(--red-light);
    border-radius: 50%;
    animation: kb-pulse 1.2s infinite;
    margin-left: 16px;
}

.kb-ticker-track {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.kb-ticker-belt {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: kb-ticker 35s linear infinite;
    width: max-content;
}
.kb-ticker-belt:hover { animation-play-state:paused; }

@keyframes kb-ticker {
    from { transform:translateX(0); }
    to   { transform:translateX(-33.33%); }
}

.kb-ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 36px 0 0;
    font-size: 13px;
    color: var(--text);
    font-weight: 500;
    flex-shrink: 0;
}
.kb-ticker-item:hover { color:var(--red); }
.kb-ticker-item::after { content:'◆'; margin-left:36px; color:var(--red); font-size:8px; opacity:.4; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.kb-hero-section {
    background: var(--bg-white);
    padding: 24px 0 28px;
}

.kb-hero-grid {
    display: grid;
    grid-template-columns: 1fr 340px 220px;
    gap: 20px;
    align-items: start;
}

/* Main card */
.kb-main-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
}
.kb-main-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.kb-main-card__img-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    height: 360px;
}
.kb-main-card__img {
    width:100%; height:100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.kb-main-card:hover .kb-main-card__img { transform:scale(1.04); }

.kb-main-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,.55) 100%);
}

.kb-cat-pill {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: .5px;
    z-index: 2;
}

.kb-main-card__body {
    padding: 20px 22px 22px;
}
.kb-main-card__title {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 10px;
    color: var(--text);
}
.kb-main-card__title a:hover { color:var(--red); }
.kb-main-card__excerpt { color:var(--text-lt); font-size:14px; line-height:1.6; margin-bottom:14px; }
.kb-main-card__meta { display:flex; align-items:center; justify-content:space-between; }

.kb-meta-time {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--gray);
}
.kb-read-more {
    font-size: 13px;
    font-weight: 700;
    color: var(--red);
    padding: 7px 16px;
    border: 2px solid var(--red);
    border-radius: 20px;
    transition: background var(--transition), color var(--transition);
}
.kb-read-more:hover { background:var(--red); color:#fff; }

/* Side cards */
.kb-hero-side {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.kb-side-card {
    display: flex;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}
.kb-side-card:last-child { border-bottom:none; }
.kb-side-card:hover { background:#fafafa; }

.kb-side-card__thumb {
    flex-shrink: 0;
    width: 100px; height: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.kb-side-card__thumb img {
    width:100%; height:100%;
    object-fit:cover;
    transition:transform var(--transition);
}
.kb-side-card:hover .kb-side-card__thumb img { transform:scale(1.06); }

.kb-side-card__body { flex:1; min-width:0; }
.kb-cat-label {
    display: inline-block;
    background: rgba(212,43,43,.1);
    color: var(--red);
    font-size: 10px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 3px;
    margin-bottom: 5px;
    letter-spacing: .3px;
}
.kb-side-card__body h4 {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    color: var(--text);
    margin-bottom: 5px;
}
.kb-side-card__body h4 a:hover { color:var(--red); }
.kb-meta-time-sm { font-size:11px; color:var(--gray-lt); }

/* Trending sidebar */
.kb-hero-trending {
    background: var(--dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.kb-trending-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 16px 12px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.kb-trending-header h3 {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}
.kb-trending-icon { font-size:18px; }

.kb-trending-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: background var(--transition);
    text-decoration: none;
}
.kb-trending-item:last-child { border-bottom:none; }
.kb-trending-item:hover { background:rgba(255,255,255,.05); }

.kb-trending-num {
    flex-shrink: 0;
    width: 28px; height: 28px;
    background: rgba(212,43,43,.25);
    color: var(--red-light);
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 900;
    border-radius: 6px;
    display: flex; align-items:center; justify-content:center;
}
.kb-trending-item:nth-child(-n+4) .kb-trending-num { background:var(--red); color:#fff; }

.kb-trending-title {
    font-size: 12.5px;
    font-weight: 600;
    color: #d1d5db;
    line-height: 1.4;
}
.kb-trending-item:hover .kb-trending-title { color:#fff; }

/* Fallback images */
.kb-img-fallback {
    width:100%; height:100%;
    background: linear-gradient(135deg, #1c1e22, #2c2f38);
}
.kb-img-fallback--sm { height:100%; }

/* ============================================================
   AD STRIP
   ============================================================ */
.kb-ad-strip { padding: 12px 0; background: var(--bg-white); }
.kb-ad-placeholder {
    height: 70px;
    background: linear-gradient(135deg, #f0f2f5, #e8eaed);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 12px;
    font-weight: 600;
    border: 1px dashed var(--border);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.kb-section { padding: 28px 0; }
.kb-section--gray { background: var(--bg-gray); }
.kb-section--white { background: var(--bg-white); }

.kb-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.kb-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.kb-sh-accent {
    width: 5px;
    height: 28px;
    background: linear-gradient(to bottom, var(--red), var(--orange));
    border-radius: 4px;
    flex-shrink: 0;
}

.kb-section-title h2 {
    font-size: 20px;
    font-weight: 900;
    color: var(--text);
    letter-spacing: -.3px;
}

.kb-view-all {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 700;
    color: var(--red);
    padding: 7px 16px;
    border: 2px solid var(--red);
    border-radius: 20px;
    transition: all var(--transition);
    white-space: nowrap;
}
.kb-view-all:hover { background:var(--red); color:#fff; }

/* ============================================================
   NEWS CARD GRID
   ============================================================ */
.kb-news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.kb-news-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}
.kb-news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.kb-news-card__img {
    display: block;
    position: relative;
    height: 160px;
    overflow: hidden;
}
.kb-news-card__img img {
    width:100%; height:100%;
    object-fit:cover;
    transition:transform .4s ease;
}
.kb-news-card:hover .kb-news-card__img img { transform:scale(1.07); }

.kb-news-cat {
    position: absolute;
    bottom: 8px; left: 8px;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 3px;
    letter-spacing: .3px;
}
.kb-news-cat--inline {
    position: static;
    display: inline-block;
    margin-bottom: 6px;
}

.kb-news-card__body {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.kb-news-card__body h4 {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    color: var(--text);
    flex: 1;
}
.kb-news-card__body h4 a:hover { color:var(--red); }

/* ============================================================
   VIDEO HERO SECTION
   ============================================================ */
.db-video-hero {
    background: linear-gradient(180deg, #0b0d10 0%, #141619 100%);
    padding: 24px 0 20px;
}

.video-hero-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.video-hero-header .section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    font-family: 'Barlow', sans-serif;
}

.live-pulse {
    display: inline-block;
    width: 10px; height:10px;
    background: var(--red-light);
    border-radius: 50%;
    animation: kb-pulse 1.2s infinite;
}

.video-hero-header .badge {
    background: rgba(212,43,43,.2);
    border: 1px solid rgba(212,43,43,.4);
    color: #ff8080;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 4px;
}

.channel-info { display:flex; align-items:center; gap:14px; }
.channel-logo { color:#e2e8f0; font-weight:600; font-size:13px; }
.viewers { color:#9ca3af; font-size:12px; }

.video-hero-grid {
    display: grid;
    grid-template-columns: 1fr 290px;
    gap: 18px;
    align-items: start;
}

/* Player */
.player-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #000;
    box-shadow: 0 12px 40px rgba(0,0,0,.5);
}

.video-embed-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}
.video-embed-wrapper iframe,
.video-embed-wrapper video {
    position: absolute;
    top:0; left:0;
    width:100%; height:100%;
    border:none;
}

.video-placeholder {
    position: relative;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
    background: #0d0f12;
}
.video-placeholder img {
    position:absolute; inset:0;
    width:100%; height:100%;
    object-fit:cover; opacity:.75;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.25);
    transition: background var(--transition);
}
.play-overlay:hover { background:rgba(0,0,0,.45); }

.play-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
.play-icon {
    width: 64px; height: 64px;
    background: var(--red);
    border-radius: 50%;
    display: flex; align-items:center; justify-content:center;
    font-size: 22px;
    color: #fff;
    box-shadow: 0 0 30px rgba(212,43,43,.5);
    transition: transform var(--transition), box-shadow var(--transition);
}
.play-btn:hover .play-icon {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(212,43,43,.7);
}
.play-text { color:#fff; font-weight:700; font-size:13px; }

.live-indicator {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: .5px;
    animation: kb-pulse 2s infinite;
}
.live-dot { width:7px; height:7px; background:#fff; border-radius:50%; }
.video-quality {
    position: absolute;
    bottom: 10px; right: 10px;
    background: rgba(0,0,0,.7);
    color: #fff; font-size:11px; font-weight:700;
    padding: 3px 7px; border-radius: 3px;
}

.video-info-bar {
    background: #181a1f;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.video-headline { font-size:14px; font-weight:700; color:#e2e8f0; flex:1; line-height:1.4; }
.video-headline a { color:inherit; }
.video-headline a:hover { color:#ff8080; }

.video-actions { display:flex; gap:6px; flex-shrink:0; }

.action-btn {
    background: rgba(255,255,255,.08);
    color: #cbd5e1;
    padding: 7px 11px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background var(--transition);
}
.action-btn:hover { background:rgba(255,255,255,.15); color:#fff; }
.action-btn.save { background:rgba(212,43,43,.2); color:#ff8080; }

.video-progress { background:#101214; padding:10px 16px; }
.progress-bar { height:3px; background:#2a2d33; border-radius:3px; overflow:hidden; margin-bottom:8px; }
.progress-fill { height:100%; background:linear-gradient(90deg, var(--red), var(--orange)); border-radius:3px; }
.time-display { display:flex; justify-content:space-between; font-size:11px; color:#6b7280; }

/* Playlist */
.playlist-sidebar {
    background: #141619;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,.4);
}
.playlist-header {
    padding: 13px 15px;
    background: #1c1e24;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.playlist-header h4 { color:#fff; font-size:13px; font-weight:700; }
.up-next { background:var(--orange); color:#fff; font-size:10px; font-weight:700; padding:2px 7px; border-radius:3px; }

.playlist-items { max-height:400px; overflow-y:auto; scrollbar-width:thin; scrollbar-color:#333 transparent; }
.playlist-item { border-bottom:1px solid rgba(255,255,255,.05); }
.playlist-item.active { background:rgba(212,43,43,.1); }
.playlist-item:hover { background:rgba(255,255,255,.04); }
.playlist-item a {
    display:flex; gap:10px; padding:10px 12px;
    text-decoration:none; color:inherit;
}

.item-thumb {
    flex-shrink:0; width:105px; height:62px;
    border-radius:6px; overflow:hidden;
    position:relative; background:#222;
}
.item-thumb img { width:100%; height:100%; object-fit:cover; }
.now-playing {
    position:absolute; bottom:4px; left:4px;
    background:var(--red); color:#fff;
    font-size:9px; font-weight:700;
    padding:2px 5px; border-radius:3px;
}
.duration {
    position:absolute; bottom:4px; right:4px;
    background:rgba(0,0,0,.75); color:#fff;
    font-size:10px; padding:2px 5px; border-radius:3px;
}

.item-info { flex:1; min-width:0; }
.item-info h5 {
    color:#cbd5e1; font-size:12.5px; font-weight:600;
    line-height:1.4; margin-bottom:4px;
    white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.item-info .meta { color:#6b7280; font-size:11px; }

.playlist-footer { padding:11px 15px; background:#1c1e24; border-top:1px solid rgba(255,255,255,.07); text-align:center; }
.view-schedule { color:var(--orange); font-size:12px; font-weight:600; }

/* Video cat tabs */
.video-cat-tabs {
    display:flex; gap:8px; margin-top:18px;
    overflow-x:auto; padding-bottom:4px; scrollbar-width:none;
}
.video-cat-tabs::-webkit-scrollbar { display:none; }

.cat-tab {
    display:inline-flex; align-items:center; gap:5px;
    background:rgba(255,255,255,.08); color:#9ca3af;
    padding: 8px 16px; border-radius:20px;
    font-size:12.5px; font-weight:600; white-space:nowrap;
    text-decoration:none; border:1px solid transparent;
    transition:all var(--transition);
}
.cat-tab:hover, .cat-tab.active {
    background:var(--red); color:#fff; border-color:var(--red);
}

/* Quick video grid */
.quick-video-grid {
    display:grid; grid-template-columns:repeat(4,1fr);
    gap:12px; margin-top:14px;
}

.qv-card {
    background:#1a1d22; border-radius:var(--radius);
    overflow:hidden; cursor:pointer;
    transition:transform var(--transition), box-shadow var(--transition);
}
.qv-card:hover { transform:translateY(-3px); box-shadow:0 10px 30px rgba(0,0,0,.5); }

.qv-thumb {
    position:relative; height:125px; overflow:hidden;
}
.qv-thumb img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.qv-card:hover .qv-thumb img { transform:scale(1.08); }

.qv-badge {
    position:absolute; top:7px; left:7px;
    background:var(--red); color:#fff;
    font-size:9px; font-weight:800;
    padding:2px 7px; border-radius:3px;
    letter-spacing:.3px;
}
.qv-badge.live { background:var(--green); animation:kb-pulse 1.5s infinite; }
.qv-duration {
    position:absolute; bottom:6px; right:6px;
    background:rgba(0,0,0,.8); color:#fff;
    font-size:10px; padding:2px 6px; border-radius:3px;
}

.qv-card h5 { padding:10px 11px 4px; color:#d1d5db; font-size:12.5px; font-weight:600; line-height:1.4; }
.qv-card h5 a { color:inherit; text-decoration:none; }
.qv-meta { display:block; padding:0 11px 10px; color:#6b7280; font-size:11px; }

/* ============================================================
   VIDEO SECTION (LOWER)
   ============================================================ */
.db-video-section { background:var(--bg-white); padding:28px 0; }

.db-section-header { margin-bottom:20px; }
.db-section-title {
    display:flex; align-items:center; gap:10px;
    font-size:20px; font-weight:900;
    padding-bottom:12px;
    border-bottom:3px solid var(--red);
    position:relative;
}
.db-section-title::after {
    content:'';
    position:absolute; bottom:-3px; left:0;
    width:55px; height:3px;
    background:var(--orange); border-radius:3px;
}
.db-section-title .view-all { margin-left:auto; font-size:12px; }

.db-video-grid {
    display:grid; grid-template-columns:1fr 320px;
    gap:20px; align-items:start; margin-bottom:24px;
}

.db-main-video {
    background:var(--bg-white);
    border-radius:var(--radius-lg); overflow:hidden;
    box-shadow:var(--shadow);
}

.video-embed-wrapper {
    position:relative; padding-bottom:56.25%;
    height:0; overflow:hidden; background:#000;
}
.video-embed-wrapper iframe,
.video-embed-wrapper video {
    position:absolute; inset:0;
    width:100%; height:100%; border:none;
}

.video-thumbnail {
    position:relative; height:350px;
    background:#111; overflow:hidden;
}
.video-thumbnail img { width:100%; height:100%; object-fit:cover; opacity:.85; transition:opacity .3s; }
.video-thumbnail:hover img { opacity:1; }

.play-button {
    width:62px; height:62px;
    background:var(--red); border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    font-size:20px; color:#fff;
    box-shadow:0 0 30px rgba(212,43,43,.5);
    transition:transform var(--transition);
}
.play-button:hover { transform:scale(1.12); }

.video-duration {
    position:absolute; bottom:10px; right:12px;
    background:rgba(0,0,0,.75); color:#fff;
    font-size:13px; padding:4px 10px; border-radius:4px;
}
.live-badge {
    position:absolute; top:12px; left:12px;
    background:var(--red); color:#fff;
    font-size:11px; font-weight:800;
    padding:4px 10px; border-radius:4px;
    letter-spacing:.5px; animation:kb-pulse 1.5s infinite;
}

.video-info { padding:16px 18px; }
.video-category {
    display:inline-block; background:var(--red); color:#fff;
    font-size:11px; font-weight:700;
    padding:3px 10px; border-radius:3px; margin-bottom:8px;
}
.video-title { font-size:18px; font-weight:800; line-height:1.4; margin-bottom:10px; }
.video-title a:hover { color:var(--red); }
.video-meta { display:flex; gap:16px; font-size:13px; color:var(--gray); flex-wrap:wrap; }

/* Video sidebar */
.db-video-sidebar {
    background:var(--bg-white); border-radius:var(--radius-lg);
    overflow:hidden; box-shadow:var(--shadow);
}
.sidebar-header {
    padding:14px 16px; background:#f9fafb;
    border-bottom:1px solid var(--border);
    display:flex; justify-content:space-between; align-items:center;
}
.sidebar-header h4 { font-size:15px; font-weight:800; }
.video-tabs .tab {
    background:var(--red); color:#fff; border:none;
    padding:5px 12px; border-radius:4px;
    font-size:12px; font-weight:700; cursor:pointer;
}

.video-list { padding:6px 0; }
.video-item { border-bottom:1px solid var(--border); }
.video-item:last-child { border-bottom:none; }

.video-link {
    display:flex; gap:10px; padding:12px 14px;
    text-decoration:none; color:inherit;
    transition:background var(--transition);
}
.video-link:hover { background:#f9fafb; }

.video-thumb {
    flex-shrink:0; width:112px; height:72px;
    border-radius:var(--radius-sm); overflow:hidden;
    position:relative; background:#e5e7eb;
}
.video-thumb img { width:100%; height:100%; object-fit:cover; }
.video-thumb .duration {
    position:absolute; bottom:4px; right:4px;
    background:rgba(0,0,0,.7); color:#fff;
    font-size:10px; padding:2px 5px; border-radius:3px;
}
.video-thumb .play-icon {
    position:absolute; inset:0;
    display:flex; align-items:center; justify-content:center;
    background:rgba(0,0,0,.15); color:#fff;
    font-size:16px; opacity:0; transition:opacity .2s;
}
.video-item:hover .play-icon { opacity:1; }

.video-details { flex:1; min-width:0; }
.video-details h5 { font-size:13px; font-weight:700; line-height:1.45; margin-bottom:5px; color:var(--text); }
.video-details h5 a { color:inherit; text-decoration:none; }
.video-details h5 a:hover { color:var(--red); }
.video-details .meta { font-size:11px; color:var(--gray-lt); }

/* Video categories */
.db-video-categories {
    display:grid; grid-template-columns:repeat(3,1fr);
    gap:18px; margin-bottom:24px;
}

.category-block {
    background:var(--bg-white); border-radius:var(--radius);
    overflow:hidden; box-shadow:var(--shadow-sm);
}
.category-title {
    padding:12px 15px; font-size:14px; font-weight:800;
    background:#f4f5f7; border-bottom:2px solid var(--red);
}
.category-videos { padding:12px; display:flex; flex-direction:column; gap:12px; }

.cat-video-item a { text-decoration:none; color:inherit; display:block; }
.cat-video-item .thumb {
    position:relative; height:140px;
    border-radius:var(--radius-sm); overflow:hidden;
    background:#e5e7eb; margin-bottom:8px;
}
.cat-video-item .thumb img { width:100%; height:100%; object-fit:cover; transition:transform .3s; }
.cat-video-item:hover .thumb img { transform:scale(1.05); }
.cat-video-item .thumb .duration {
    position:absolute; bottom:6px; right:6px;
    background:rgba(0,0,0,.75); color:#fff;
    font-size:10px; padding:2px 6px; border-radius:3px;
}
.cat-video-item h5 { font-size:13px; font-weight:700; color:var(--text); line-height:1.4; margin-bottom:4px; }
.cat-video-item h5 a { color:inherit; text-decoration:none; }
.cat-video-item h5 a:hover { color:var(--red); }
.cat-video-item .views { font-size:11px; color:var(--gray-lt); }

/* Shorts */
.db-shorts-section { padding-top:4px; }
.shorts-title {
    font-size:17px; font-weight:800; color:var(--text);
    margin-bottom:14px; display:flex; align-items:center; gap:8px;
}
.shorts-title small { font-size:12px; color:var(--gray-lt); font-weight:400; }
.shorts-scroll {
    display:flex; gap:12px;
    overflow-x:auto; padding-bottom:8px;
    scrollbar-width:thin; scrollbar-color:var(--red) #eee;
}

.short-item { flex-shrink:0; width:145px; }
.short-thumb {
    position:relative; height:258px;
    border-radius:var(--radius); overflow:hidden;
    margin-bottom:8px;
    box-shadow:var(--shadow-sm);
}
.short-thumb img { width:100%; height:100%; object-fit:cover; transition:transform .3s; }
.short-item:hover .short-thumb img { transform:scale(1.05); }
.short-play {
    position:absolute; inset:0;
    display:flex; align-items:center; justify-content:center;
    background:rgba(0,0,0,.15); color:#fff;
    font-size:28px; opacity:0; transition:opacity .2s;
}
.short-item:hover .short-play { opacity:1; }
.short-views {
    position:absolute; bottom:8px; left:0; right:0;
    text-align:center; color:#fff; font-size:13px;
    font-weight:700; text-shadow:0 1px 4px rgba(0,0,0,.6);
}
.short-title { font-size:12px; font-weight:600; color:var(--text); line-height:1.4; text-align:center; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.kb-newsletter-strip {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    padding: 24px 0;
}

.kb-newsletter-strip .kb-container {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.kb-nl-icon { font-size:30px; flex-shrink:0; }
.kb-nl-text { flex:1; min-width:200px; }
.kb-nl-text strong { display:block; color:#fff; font-size:16px; font-weight:800; }
.kb-nl-text span { color:#9ca3af; font-size:13px; }

.kb-nl-form {
    display:flex; gap:8px; flex-shrink:0;
}
.kb-nl-form input {
    padding: 10px 16px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius-sm);
    color: #fff; font-size:14px; width:240px;
    outline: none; transition: border var(--transition);
}
.kb-nl-form input::placeholder { color:#6b7280; }
.kb-nl-form input:focus { border-color:rgba(212,43,43,.6); }
.kb-nl-form button {
    background: var(--red);
    color: #fff; font-size:14px; font-weight:700;
    padding: 10px 20px; border-radius: var(--radius-sm);
    transition: background var(--transition);
    white-space: nowrap;
}
.kb-nl-form button:hover { background:var(--red-dark); }

/* ============================================================
   FOOTER
   ============================================================ */
.kb-footer {
    background: var(--dark);
    padding: 48px 0 32px;
    border-top: 3px solid var(--red);
}

.kb-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.4fr 1.4fr;
    gap: 40px;
}

.kb-footer-brand .kb-footer-logo {
    display:flex; align-items:center; gap:12px; margin-bottom:16px;
}
.kb-footer-logo-icon {
    width:40px; height:40px;
    background:var(--red); color:#fff;
    font-family:'Bebas Neue','Barlow',sans-serif; font-size:26px;
    display:flex; align-items:center; justify-content:center;
    border-radius:var(--radius-sm);
}
.kb-footer-logo-name { font-size:18px; font-weight:900; color:#fff; font-family:'Barlow',sans-serif; }
.kb-footer-logo-tag { font-size:10px; color:#6b7280; }

.kb-footer-about { color:#9ca3af; font-size:13px; line-height:1.7; margin-bottom:20px; }

.kb-footer-social { display:flex; gap:8px; margin-bottom:20px; }
.kb-fs {
    width:34px; height:34px;
    display:flex; align-items:center; justify-content:center;
    border-radius:var(--radius-sm); color:#fff;
    transition:transform var(--transition), opacity var(--transition);
}
.kb-fs:hover { transform:translateY(-2px); opacity:.85; }
.kb-fs--fb { background:#1877f2; }
.kb-fs--tw { background:#1da1f2; }
.kb-fs--yt { background:#ff0000; }
.kb-fs--wa { background:#25d366; }
.kb-fs--ig { background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }

.kb-store-badges { display:flex; gap:8px; flex-wrap:wrap; }
.kb-store-btn {
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    color:#d1d5db; font-size:12px; font-weight:600;
    padding:8px 14px; border-radius:var(--radius-sm);
    transition:background var(--transition);
}
.kb-store-btn:hover { background:rgba(255,255,255,.15); color:#fff; }

.kb-footer-heading {
    font-size:13px; font-weight:800; color:#fff;
    text-transform:uppercase; letter-spacing:1px;
    margin-bottom:14px; padding-bottom:10px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.kb-footer-links { display:flex; flex-direction:column; gap:9px; }
.kb-footer-links li a {
    color:#9ca3af; font-size:13px;
    transition:color var(--transition), padding var(--transition);
    display:block;
}
.kb-footer-links li a:hover { color:var(--red); padding-left:6px; }

/* Footer popular posts */
.kb-footer-posts { display:flex; flex-direction:column; gap:12px; }
.kb-fp-item {
    display:flex; gap:10px; text-decoration:none; color:inherit;
    transition:opacity var(--transition);
}
.kb-fp-item:hover { opacity:.8; }
.kb-fp-item img, .kb-fp-thumb-placeholder {
    flex-shrink:0; width:72px; height:50px;
    border-radius:var(--radius-sm); object-fit:cover;
    background:linear-gradient(135deg,#2a2d33,#1c1e22);
}
.kb-fp-info p { font-size:12.5px; font-weight:600; color:#d1d5db; line-height:1.4; margin-bottom:3px; }
.kb-fp-info span { font-size:11px; color:#6b7280; }

/* Footer tags */
.kb-footer-tags { display:flex; flex-wrap:wrap; gap:7px; margin-bottom:20px; }
.kb-ftag {
    background:rgba(255,255,255,.07);
    color:#9ca3af; font-size:11.5px;
    padding:5px 11px; border-radius:20px;
    border:1px solid rgba(255,255,255,.08);
    transition:all var(--transition);
}
.kb-ftag:hover { background:var(--red); color:#fff; border-color:var(--red); }

/* Contact */
.kb-contact-list { display:flex; flex-direction:column; gap:8px; }
.kb-contact-list li { color:#9ca3af; font-size:13px; }
.kb-contact-list li a { color:inherit; transition:color var(--transition); }
.kb-contact-list li a:hover { color:var(--red); }

/* Footer bottom */
.kb-footer-bottom {
    background: #0b0d0f;
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,.06);
}
.kb-footer-bottom .kb-container {
    display:flex; align-items:center; justify-content:space-between;
    flex-wrap:wrap; gap:10px;
}
.kb-footer-bottom span { font-size:12px; color:#6b7280; }
.kb-bottom-links { display:flex; gap:16px; flex-wrap:wrap; }
.kb-bottom-links a { font-size:12px; color:#6b7280; transition:color var(--transition); }
.kb-bottom-links a:hover { color:var(--red); }

/* Back to top */
.kb-back-top {
    position:fixed; bottom:24px; right:24px;
    width:42px; height:42px;
    background:var(--red); color:#fff;
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 4px 16px rgba(212,43,43,.4);
    opacity:0; pointer-events:none;
    transform:translateY(12px);
    transition:opacity .3s, transform .3s;
    z-index:500;
}
.kb-back-top.visible { opacity:1; pointer-events:auto; transform:translateY(0); }
.kb-back-top:hover { background:var(--red-dark); }

/* ============================================================
   SINGLE POST — inherited from existing but cleaned
   ============================================================ */
.kb-content-area { width:100%; }
.kb-site-main { width:100%; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1100px) {
    .kb-hero-grid { grid-template-columns: 1fr 300px; }
    .kb-hero-trending { display:none; }
    .kb-news-grid { grid-template-columns:repeat(3,1fr); }
    .quick-video-grid { grid-template-columns:repeat(2,1fr); }
    .db-video-categories { grid-template-columns:repeat(2,1fr); }
    .kb-footer-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width:900px) {
    .kb-hero-grid { grid-template-columns:1fr; }
    .kb-hero-side { display:none; }
    .video-hero-grid { grid-template-columns:1fr; }
    .playlist-sidebar { display:none; }
    .db-video-grid { grid-template-columns:1fr; }
    .db-video-sidebar { display:none; }
}

@media (max-width:768px) {
    .kb-topbar-right .kb-epaper-btn,
    .kb-topbar-right .kb-app-btn { display:none; }

    .kb-hamburger { display:flex; }
    .kb-header-center { display:none; }
    .kb-logo-main { font-size:19px; }

    .kb-nav {
        position:fixed; top:0; left:-100%;
        width:280px; height:100vh;
        overflow-y:auto; z-index:1100;
        transition:left .35s cubic-bezier(.4,0,.2,1);
        border-radius:0 var(--radius-lg) var(--radius-lg) 0;
    }
    .kb-nav.open { left:0; }
    .kb-nav-list { flex-direction:column; gap:0; padding:70px 0 20px; }
    .kb-nav-item a { padding:14px 20px; font-size:14px; border-bottom:none; border-bottom:1px solid rgba(255,255,255,.1); }
    .kb-nav-overlay {
        display:block; position:fixed; inset:0;
        background:rgba(0,0,0,.55); z-index:1099;
        opacity:0; pointer-events:none; transition:opacity .3s;
    }
    .kb-nav.open ~ .kb-nav-overlay,
    .kb-nav-overlay.open { opacity:1; pointer-events:auto; }

    .kb-news-grid { grid-template-columns:repeat(2,1fr); }
    .db-video-categories { grid-template-columns:1fr; }
    .kb-footer-grid { grid-template-columns:1fr; }
    .kb-nl-form { width:100%; }
    .kb-nl-form input { width:100%; flex:1; }

    .kb-ticker-label { padding:0 20px 0 12px; }
    .kb-hero-section { padding:16px 0; }
    .kb-main-card__img-wrap { height:240px; }
    .kb-main-card__title { font-size:18px; }
    .quick-video-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width:480px) {
    .kb-container { padding:0 14px; }
    .kb-news-grid { grid-template-columns:1fr; }
    .kb-topbar { display:none; }
    .kb-nl-form { flex-direction:column; }
    .quick-video-grid { grid-template-columns:1fr; }
    .kb-section { padding:20px 0; }
    .kb-section-title h2 { font-size:17px; }
    .video-thumbnail { height:220px; }
    .kb-main-card__title { font-size:16px; }
}

/* ============================================================
   FADE-IN ANIMATIONS
   ============================================================ */
.kb-hero-section,
.kb-section,
.db-video-hero,
.db-video-section {
    animation: kb-fadein .5s ease both;
}
@keyframes kb-fadein {
    from { opacity:0; transform:translateY(16px); }
    to   { opacity:1; transform:translateY(0); }
}

/* Stagger categories */
.kb-section:nth-child(2) { animation-delay:.1s; }
.kb-section:nth-child(3) { animation-delay:.2s; }
.kb-section:nth-child(4) { animation-delay:.3s; }

