/* ============================================================
   ZambianMuziki — Complete Stylesheet
   Zambia Flag Colors:
     Green   #198A00  (main accent, CTAs, player)
     Red     #DE2010  (energy, badges)
     Black   #111111  (dark tones)
     Orange  #EF7D00  (highlights, gold)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;700;800&family=DM+Sans:wght@300;400;500&display=swap');

/* ── RESET ─────────────────────────────────────────────────── */

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


/* GLOBAL LINK RESET — kills ALL underlines across the whole site */

a {
    text-decoration: none !important;
    color: inherit;
    cursor: pointer;
}

a:hover {
    text-decoration: none !important;
}

button {
    cursor: pointer;
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul,
ol {
    list-style: none;
}


/* ── CSS VARIABLES — Zambia Flag Palette ───────────────────── */

:root {
    /* Zambia flag */
    --zam-green: #198A00;
    --zam-green-dk: #116600;
    --zam-green-lt: #22B800;
    --zam-red: #DE2010;
    --zam-red-dk: #B01800;
    --zam-orange: #EF7D00;
    --zam-orange-dk: #C46500;
    --zam-black: #111111;
    /* Mapped tokens */
    --red: var(--zam-red);
    --gold: var(--zam-orange);
    --green: var(--zam-green);
    /* Backgrounds (black-toned) */
    --bg: #0A0A0A;
    --bg2: #131313;
    --bg3: #1A1A1A;
    --bg4: #232323;
    --bg5: #2C2C2C;
    /* Text */
    --txt: #F2EFE8;
    --txt2: #A8A09A;
    --txt3: #6B6560;
    --txt4: #3A3530;
    /* Borders */
    --border: rgba(255, 255, 255, 0.07);
    --border2: rgba(255, 255, 255, 0.13);
    /* Glows */
    --glow-green: rgba(25, 138, 0, 0.18);
    --glow-red: rgba(222, 32, 16, 0.15);
    --glow-orange: rgba(239, 125, 0, 0.15);
    --blue: #2980B9;
    --purple: #8E44AD;
    --font-head: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --radius: 10px;
    --radius-lg: 16px;
    --transition: 0.2s ease;
    --shadow: 0 4px 28px rgba(0, 0, 0, .5);
}


/* ── BASE ──────────────────────────────────────────────────── */

body {
    background: var(--bg);
    color: var(--txt);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    padding-top: 184px;
}


/* ── SCROLLBAR ─────────────────────────────────────────────── */

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--bg2);
}

::-webkit-scrollbar-thumb {
    background: var(--zam-green);
    border-radius: 2px;
}


/* ══════════════════════════════════════════════════════════════
   TICKER
══════════════════════════════════════════════════════════════ */

.ticker-wrap {
    background: var(--zam-green);
    overflow: hidden;
    padding: 7px 0;
}

.ticker-inner {
    display: flex;
    align-items: stretch;
}

.ticker-label {
    background: var(--zam-green-dk);
    color: #fff;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0 18px;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    position: relative;
}

.ticker-label::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 0;
    bottom: 0;
    width: 10px;
    background: var(--zam-green-dk);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.ticker-scroll {
    display: flex;
    animation: ticker 32s linear infinite;
    gap: 60px;
    padding-left: 40px;
    align-items: center;
}

.ticker-item {
    white-space: nowrap;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
}

.ticker-item::before {
    content: '♦';
    margin-right: 14px;
    opacity: .6;
    font-size: 9px;
}

@keyframes ticker {
    from {
        transform: translateX(0)
    }
    to {
        transform: translateX(-50%)
    }
}


/* ══════════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════════ */

.topbar {
    background: rgba(10, 10, 10, 0.97);
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 90;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}

.topbar-brand {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 22px 40px 18px;
    border-bottom: 1px solid var(--border);
    max-height: 160px;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding-top 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding-bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.25s ease,
                border-color 0.4s ease;
}

.topbar--compact .topbar-brand {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    border-color: transparent;
}

.topbar-nav {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 40px;
    min-height: 54px;
}

.topbar-nav .nav-links {
    flex: 1;
    justify-content: center;
    gap: 8px;
}

.topbar-nav .hamburger {
    margin-right: 12px;
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none !important;
    color: inherit;
}

.logo-img {
    height: 88px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo span:first-child {
    color: var(--txt);
}

.logo span:last-child {
    color: var(--zam-red);
}

.logo-dot {
    width: 7px;
    height: 7px;
    background: var(--zam-orange);
    border-radius: 50%;
    display: inline-block;
    margin: 0 1px 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}


/* NAV LINKS — full reset, no underlines, no browser defaults */

.nav-link {
    display: inline-block;
    text-decoration: none !important;
    color: var(--txt2);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 7px 13px;
    border-radius: 7px;
    transition: var(--transition);
    border: none;
    background: none;
    outline: none;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
}

.nav-link:hover {
    color: var(--txt);
    background: var(--bg3);
    text-decoration: none !important;
}


/* Active state — orange underline bar (Zambia flag colour) */

.nav-link.active {
    color: var(--zam-orange);
    background: rgba(239, 125, 0, 0.09);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 13px;
    right: 13px;
    height: 2px;
    background: var(--zam-orange);
    border-radius: 2px 2px 0 0;
}


/* Search form in nav */

.search-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-input-nav {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 7px;
    color: var(--txt);
    font-family: var(--font-body);
    font-size: 13px;
    padding: 6px 12px;
    width: 160px;
    outline: none;
    transition: border-color .2s, width .3s;
}

.search-input-nav:focus {
    border-color: var(--zam-green);
    width: 220px;
}

.search-input-nav::placeholder {
    color: var(--txt3);
}

.search-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--txt2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 15px;
    text-decoration: none !important;
}

.search-btn:hover {
    border-color: var(--zam-green);
    color: var(--zam-green);
}


/* ══════════════════════════════════════════════════════════════
   PLAYER BAR
══════════════════════════════════════════════════════════════ */

.player-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    box-shadow: 0 -2px 0 var(--zam-green);
    padding: 10px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 100;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 180px;
    flex: 1;
}

.player-art {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    background: var(--bg3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    border: 1px solid var(--border);
    overflow: hidden;
}

.player-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--txt);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 160px;
}

.player-artist {
    font-size: 11px;
    color: var(--txt3);
}

.player-controls {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8px;
    flex: 2;
    justify-content: center;
}

.ctrl-btns {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ctrl-btn {
    background: none;
    border: none;
    color: var(--txt3);
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
    padding: 4px;
}

.ctrl-btn:hover {
    color: var(--txt);
}

.ctrl-play {
    width: 38px;
    height: 38px;
    background: var(--zam-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    border: none;
    transition: var(--transition);
    flex-shrink: 0;
    box-shadow: 0 0 16px var(--glow-green);
}

.ctrl-play:hover {
    background: var(--zam-green-lt);
    transform: scale(1.07);
}

.progress-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 440px;
}

.progress-bar {
    flex: 1;
    height: 3px;
    background: var(--bg4);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
}

.progress-fill {
    height: 100%;
    background: var(--zam-green);
    border-radius: 2px;
    transition: width .2s linear;
}

.progress-time {
    font-size: 10px;
    color: var(--txt3);
    white-space: nowrap;
    min-width: 28px;
}

.vol-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: flex-end;
    min-width: 120px;
}

.vol-icon {
    font-size: 14px;
    color: var(--txt3);
}

.vol-bar {
    width: 72px;
    height: 3px;
    background: var(--bg4);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
}

.vol-fill {
    height: 100%;
    background: var(--txt3);
    border-radius: 2px;
}


/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */

.footer {
    background: var(--bg2);
    border-top: 4px solid var(--zam-green);
    padding: 36px 24px 96px;
    margin-top: 52px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 36px;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 12px;
    text-decoration: none !important;
}

.footer-logo-img {
    height: 46px;
    width: auto;
    display: block;
    object-fit: contain;
    opacity: 0.92;
}

.footer-logo-img:hover {
    opacity: 1;
}

.footer-desc {
    font-size: 12px;
    color: var(--txt3);
    line-height: 1.8;
    max-width: 210px;
}

.footer-head {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--zam-orange);
    margin-bottom: 14px;
}


/* Footer links — NO underlines, proper colors */

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a,
.footer-links a {
    font-size: 13px;
    color: var(--txt3);
    text-decoration: none !important;
    transition: var(--transition);
    display: inline-block;
}

.footer-links li a:hover,
.footer-links a:hover {
    color: var(--zam-green);
    text-decoration: none !important;
    padding-left: 4px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 24px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.footer-copy {
    font-size: 11px;
    color: var(--txt3);
}

.footer-made {
    font-size: 11px;
    color: var(--txt3);
}

.socials {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.social {
    width: 32px;
    height: 32px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    transition: var(--transition);
    color: var(--txt3);
    text-decoration: none !important;
}

.social:hover {
    border-color: var(--zam-green);
    color: var(--zam-green);
    background: var(--glow-green);
}


/* ══════════════════════════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════════════════════════ */

.page-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 24px 80px;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
}

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

.section-title {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--txt);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title::before {
    content: '';
    display: block;
    width: 3px;
    height: 18px;
    background: var(--zam-green);
    border-radius: 2px;
}

.see-all {
    font-size: 11px;
    color: var(--txt3);
    letter-spacing: .5px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    background: none;
    border: none;
    text-decoration: none !important;
    display: inline-block;
}

.see-all:hover {
    color: var(--zam-green);
    text-decoration: none !important;
}

.divider {
    height: 1px;
    background: var(--border);
    margin: 28px 0;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--txt3);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    transition: var(--transition);
    margin-bottom: 16px;
    text-decoration: none !important;
}

.back-btn:hover {
    color: var(--zam-green);
    text-decoration: none !important;
}


/* ══════════════════════════════════════════════════════════════
   PAGE HERO
══════════════════════════════════════════════════════════════ */

.page-hero {
    background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 1px solid var(--border);
    padding: 60px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* dark overlay so text stays readable over hero images */
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
}

/* Zambian flag colour strip at the bottom */
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--zam-green) 0%, var(--zam-red) 33%, #111 66%, var(--zam-orange) 100%);
    z-index: 1;
}

.page-hero-inner {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-hero-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.page-hero-title {
    font-family: var(--font-head);
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.page-hero-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    margin: 0;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}


/* ══════════════════════════════════════════════════════════════
   CARDS
══════════════════════════════════════════════════════════════ */

.cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cards-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.cards-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none !important;
    color: inherit;
    display: block;
}

.card:hover {
    border-color: rgba(25, 138, 0, .45);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(25, 138, 0, .1);
}

.card-thumb {
    aspect-ratio: 16/9;
    background: var(--bg3);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-thumb-sq {
    aspect-ratio: 1;
    background: var(--bg3);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-thumb img,
.card-thumb-sq img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-thumb-icon {
    font-size: 42px;
    opacity: .3;
}

.card-body {
    padding: 14px;
}

.card-cat {
    font-size: 10px;
    font-weight: 600;
    color: var(--zam-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.card-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--txt);
    margin-bottom: 8px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    color: var(--txt3);
}

.card-actions {
    display: flex;
    gap: 6px;
    align-items: center;
}

.card-feat {
    grid-column: span 2;
}

.card-feat .card-thumb {
    aspect-ratio: 21/9;
}

.card-feat .card-title {
    font-size: 17px;
    font-weight: 600;
}

.card-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .35);
    opacity: 0;
    transition: opacity .2s;
    font-size: 30px;
    color: #fff;
}

.card:hover .card-play-overlay {
    opacity: 1;
}

.video-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, .75);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.video-badge::before {
    content: '▶';
    font-size: 7px;
}

.new-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--zam-orange);
    color: #000;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
}


/* ══════════════════════════════════════════════════════════════
   BADGES
══════════════════════════════════════════════════════════════ */

.badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 4px;
}

.badge-red {
    background: rgba(222, 32, 16, .15);
    color: var(--zam-red);
}

.badge-gold {
    background: rgba(239, 125, 0, .15);
    color: var(--zam-orange);
}

.badge-green {
    background: rgba(25, 138, 0, .15);
    color: var(--zam-green-lt);
}

.badge-blue {
    background: rgba(41, 128, 185, .15);
    color: var(--blue);
}

.badge-purple {
    background: rgba(142, 68, 173, .15);
    color: var(--purple);
}

.badge-gray {
    background: rgba(255, 255, 255, .06);
    color: var(--txt2);
}


/* ══════════════════════════════════════════════════════════════
   FILTERS
══════════════════════════════════════════════════════════════ */

.filters {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--txt2);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none !important;
    display: inline-block;
}

.filter-btn:hover {
    border-color: var(--zam-green);
    color: var(--zam-green);
    text-decoration: none !important;
}

.filter-btn.active {
    background: var(--zam-green);
    border-color: var(--zam-green);
    color: #fff;
}


/* ══════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════ */

.play-btn {
    width: 30px;
    height: 30px;
    background: var(--zam-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    flex-shrink: 0;
    box-shadow: 0 0 10px var(--glow-green);
}

.play-btn:hover {
    background: var(--zam-green-lt);
    transform: scale(1.12);
}

.btn-primary {
    background: var(--zam-green);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    box-shadow: 0 0 16px var(--glow-green);
}

.btn-primary:hover {
    background: var(--zam-green-lt);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--bg3);
    color: var(--txt);
    border: 1px solid var(--border2);
    padding: 10px 22px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
}

.btn-secondary:hover {
    border-color: var(--zam-green);
    color: var(--zam-green);
}

.btn-icon {
    width: 30px;
    height: 30px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--txt2);
    font-size: 13px;
    text-decoration: none !important;
    transition: var(--transition);
    flex-shrink: 0;
    cursor: pointer;
}

.btn-icon:hover {
    border-color: var(--zam-orange);
    color: var(--zam-orange);
}


/* ══════════════════════════════════════════════════════════════
   LIVE DOT
══════════════════════════════════════════════════════════════ */

.live-dot {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(25, 138, 0, .12);
    border: 1px solid rgba(25, 138, 0, .35);
    color: var(--zam-green-lt);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
}

.live-dot::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: var(--zam-green-lt);
    border-radius: 50%;
    animation: pulse 1.2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: .4;
        transform: scale(1.3)
    }
}


/* ══════════════════════════════════════════════════════════════
   SIDEBAR
══════════════════════════════════════════════════════════════ */

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-box {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    border-left: 3px solid var(--zam-green);
}

.trending-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    text-decoration: none !important;
    color: inherit;
}

.trend-item:hover {
    background: var(--bg3);
    border-color: var(--border);
}

.trend-num {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 800;
    color: var(--bg5);
    min-width: 26px;
    line-height: 1;
    transition: var(--transition);
}

.trend-item:hover .trend-num {
    color: var(--zam-orange);
}

.trend-info {
    flex: 1;
    min-width: 0;
}

.trend-title {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
    color: var(--txt);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.trend-meta {
    font-size: 11px;
    color: var(--txt3);
    margin-top: 3px;
}

.trend-thumb {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    background: var(--bg3);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: .6;
    border: 1px solid var(--border);
    overflow: hidden;
}

.trend-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.artist-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.artist-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px 5px 6px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none !important;
    color: inherit;
}

.artist-chip:hover {
    border-color: var(--zam-green);
    background: var(--glow-green);
}

.artist-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--bg4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    overflow: hidden;
}

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

.artist-name {
    font-size: 12px;
    font-weight: 500;
    color: var(--txt);
}


/* ══════════════════════════════════════════════════════════════
   SONG ROW
══════════════════════════════════════════════════════════════ */

.song-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.song-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    text-decoration: none !important;
    color: inherit;
}

.song-row:hover {
    background: var(--bg2);
    border-color: var(--border);
}

.song-num {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: var(--txt4);
    min-width: 20px;
    text-align: center;
}

.song-art {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    background: var(--bg3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    border: 1px solid var(--border);
    overflow: hidden;
}

.song-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.song-info {
    flex: 1;
    min-width: 0;
    text-decoration: none !important;
    color: inherit;
}

.song-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--txt);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.song-artist {
    font-size: 12px;
    color: var(--txt3);
}

.song-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.song-dur {
    font-size: 12px;
    color: var(--txt3);
}

.song-plays {
    font-size: 11px;
    color: var(--txt3);
}


/* ══════════════════════════════════════════════════════════════
   DETAIL HERO
══════════════════════════════════════════════════════════════ */

.detail-hero {
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.detail-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--zam-green) 0%, var(--zam-orange) 50%, var(--zam-red) 100%);
}

.detail-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 36px 24px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: start;
}

.detail-art {
    width: 210px;
    height: 210px;
    border-radius: var(--radius-lg);
    background: var(--bg3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    flex-shrink: 0;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 0 32px rgba(25, 138, 0, .15);
}

.detail-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-cat {
    font-size: 11px;
    font-weight: 600;
    color: var(--txt3);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-title {
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--txt);
    margin-bottom: 8px;
}

.detail-artist {
    font-size: 17px;
    color: var(--txt2);
    margin-bottom: 16px;
    text-decoration: none !important;
    display: inline-block;
    transition: var(--transition);
}

.detail-artist:hover {
    color: var(--zam-green);
}

.detail-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.detail-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.detail-stat-val {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--txt);
}

.detail-stat-lbl {
    font-size: 10px;
    color: var(--txt3);
    text-transform: uppercase;
    letter-spacing: .8px;
}

.detail-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}


/* ══════════════════════════════════════════════════════════════
   TRACKLIST
══════════════════════════════════════════════════════════════ */

.tracklist-box {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 24px;
}

.tracklist-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    cursor: pointer;
    transition: var(--transition);
}

.tracklist-row:hover {
    background: var(--bg3);
}

.tracklist-num {
    font-size: 13px;
    color: var(--txt3);
    min-width: 24px;
    text-align: center;
}

.tracklist-title {
    flex: 1;
    font-size: 14px;
    color: var(--txt);
}

.tracklist-dur {
    font-size: 12px;
    color: var(--txt3);
}


/* ══════════════════════════════════════════════════════════════
   ARTIST CARD
══════════════════════════════════════════════════════════════ */

.artist-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    padding: 24px 16px;
    text-decoration: none !important;
    color: inherit;
    display: block;
}

.artist-card:hover {
    border-color: rgba(25, 138, 0, .5);
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(25, 138, 0, .12);
}

.artist-card-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 12px;
    border: 2px solid var(--border);
    overflow: hidden;
}

.artist-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-card-name {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--txt);
    margin-bottom: 4px;
}

.artist-card-genre {
    font-size: 12px;
    color: var(--txt3);
    margin-bottom: 10px;
}

.artist-card-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.artist-card-stat {
    font-size: 12px;
    color: var(--txt2);
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
}

.artist-card-stat strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--txt);
}


/* ══════════════════════════════════════════════════════════════
   ARTIST HERO (detail page)
══════════════════════════════════════════════════════════════ */

.artist-hero {
    background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 100%);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.artist-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(25, 138, 0, .1) 0%, transparent 60%);
}

.artist-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 44px 24px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 36px;
    align-items: center;
    position: relative;
}

.artist-hero-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--bg3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    border: 3px solid var(--zam-green);
    box-shadow: 0 0 40px rgba(25, 138, 0, .25);
    overflow: hidden;
}

.artist-hero-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-profile-mini {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    text-decoration: none !important;
    color: inherit;
    transition: background .2s;
}

.artist-profile-mini:hover {
    background: var(--bg3);
}

.artist-avatar-lg {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    border: 2px solid var(--zam-green);
    overflow: hidden;
}

.artist-avatar-lg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ══════════════════════════════════════════════════════════════
   NEWS
══════════════════════════════════════════════════════════════ */

.news-row {
    display: flex;
    gap: 14px;
    padding: 16px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none !important;
    color: inherit;
}

.news-row:hover {
    border-color: rgba(25, 138, 0, .35);
    transform: translateX(4px);
}

.news-thumb {
    width: 80px;
    min-height: 70px;
    border-radius: 8px;
    background: var(--bg3);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    opacity: .6;
    overflow: hidden;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

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

.news-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--txt);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-meta {
    font-size: 11px;
    color: var(--txt3);
    display: flex;
    gap: 8px;
    margin-top: 5px;
}

.news-mini {
    display: block;
    padding: 10px 8px;
    border-radius: 8px;
    text-decoration: none !important;
    color: inherit;
    transition: background .2s;
    border-bottom: 1px solid var(--border);
}

.news-mini:last-child {
    border-bottom: none;
}

.news-mini:hover {
    background: var(--bg3);
}

.news-mini-cat {
    font-size: 10px;
    font-weight: 600;
    color: var(--zam-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.news-mini-title {
    font-size: 13px;
    color: var(--txt);
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-mini-meta {
    font-size: 11px;
    color: var(--txt3);
    margin-top: 4px;
}


/* ══════════════════════════════════════════════════════════════
   FEATURED CARDS
══════════════════════════════════════════════════════════════ */

.featured-video-card {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg2);
    border: 1px solid var(--border);
    text-decoration: none !important;
    color: inherit;
    transition: var(--transition);
}

.featured-video-card:hover {
    border-color: rgba(25, 138, 0, .45);
}

.featured-video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #050510, #101020);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.featured-play-btn {
    position: absolute;
    width: 72px;
    height: 72px;
    background: rgba(25, 138, 0, .9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    transition: transform .2s;
    box-shadow: 0 0 32px rgba(25, 138, 0, .4);
    z-index: 1;
}

.featured-video-card:hover .featured-play-btn {
    transform: scale(1.1);
}

.featured-video-info {
    padding: 20px;
}

.featured-video-title {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--txt);
    margin-bottom: 6px;
}

.featured-video-meta {
    font-size: 13px;
    color: var(--txt2);
}

.featured-news-card {
    display: grid;
    grid-template-columns: 260px 1fr;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg2);
    border: 1px solid var(--border);
    text-decoration: none !important;
    color: inherit;
    transition: var(--transition);
}

.featured-news-card:hover {
    border-color: rgba(25, 138, 0, .4);
}

.featured-news-img {
    background: var(--bg3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    opacity: .5;
    overflow: hidden;
    min-height: 180px;
}

.featured-news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.featured-news-body {
    padding: 24px;
}

.featured-news-title {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--txt);
    line-height: 1.3;
    margin-bottom: 10px;
}

.featured-news-excerpt {
    font-size: 14px;
    color: var(--txt2);
    line-height: 1.7;
}

.featured-news-meta {
    font-size: 12px;
    color: var(--txt3);
    margin-top: 12px;
}


/* ══════════════════════════════════════════════════════════════
   ALBUM ROW CARD
══════════════════════════════════════════════════════════════ */

.album-row-card {
    display: grid;
    grid-template-columns: 130px 1fr auto;
    gap: 0;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none !important;
    color: inherit;
    transition: var(--transition);
}

.album-row-card:hover {
    border-color: rgba(25, 138, 0, .45);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(25, 138, 0, .1);
}

.album-row-art {
    background: linear-gradient(135deg, var(--bg3), var(--bg4));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    opacity: .5;
    overflow: hidden;
}

.album-row-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.album-row-info {
    padding: 20px;
}

.album-row-title {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--txt);
    margin-bottom: 4px;
}

.album-row-artist {
    font-size: 14px;
    color: var(--txt2);
    margin-bottom: 8px;
}

.album-row-desc {
    font-size: 13px;
    color: var(--txt3);
    line-height: 1.6;
}

.album-row-stats {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    border-left: 1px solid var(--border);
    min-width: 130px;
}

.album-mini {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 8px;
    border-radius: 8px;
    text-decoration: none !important;
    color: inherit;
    transition: background .2s;
}

.album-mini:hover {
    background: var(--bg3);
}

.album-mini-art {
    width: 46px;
    height: 46px;
    border-radius: 6px;
    background: var(--bg3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    overflow: hidden;
}

.album-mini-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-mini-info {
    flex: 1;
    min-width: 0;
}

.album-mini-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--txt);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.album-mini-meta {
    font-size: 11px;
    color: var(--txt3);
    margin-top: 2px;
}


/* ══════════════════════════════════════════════════════════════
   HERO (home page)
══════════════════════════════════════════════════════════════ */

.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 24px 0;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 20px;
}

.hero-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg2);
    border: 1px solid var(--border);
}

.hero-link {
    display: block;
    text-decoration: none !important;
    color: inherit;
}

.hero-img-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

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

.hero-img-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #0a1a0a, #1a2a0a, #0a0a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    opacity: .15;
}

.hero-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--zam-green);
    color: #fff;
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    background: linear-gradient(to top, rgba(0, 0, 0, .95) 0%, transparent 100%);
}

.hero-cat {
    font-size: 11px;
    font-weight: 600;
    color: var(--zam-orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.hero-title {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 10px;
}

.hero-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.side-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    text-decoration: none !important;
    color: inherit;
}

.side-card:hover {
    border-color: rgba(25, 138, 0, .45);
    transform: translateX(3px);
}

.side-thumb {
    width: 88px;
    flex-shrink: 0;
    background: var(--bg3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    opacity: .5;
    overflow: hidden;
}

.side-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.side-info {
    padding: 12px 14px;
    flex: 1;
    min-width: 0;
}

.side-cat {
    font-size: 10px;
    font-weight: 600;
    color: var(--zam-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.side-title {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
    color: var(--txt);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.side-date {
    font-size: 11px;
    color: var(--txt3);
    margin-top: 5px;
}


/* ══════════════════════════════════════════════════════════════
   VIDEO PLAYER
══════════════════════════════════════════════════════════════ */

.video-player-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: #000;
    margin-bottom: 20px;
}

.video-embed-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.video-placeholder {
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 48px;
    color: var(--txt3);
    background: var(--bg2);
}

.video-info-block {
    margin-bottom: 20px;
}

.video-meta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 12px;
}


/* ══════════════════════════════════════════════════════════════
   WAVEFORM
══════════════════════════════════════════════════════════════ */

.waveform {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 64px;
    cursor: pointer;
}

.wave-bar {
    flex: 1;
    background: var(--bg4);
    border-radius: 2px 2px 0 0;
    transition: background .15s;
    min-height: 4px;
}

.waveform:hover .wave-bar {
    background: var(--zam-green);
}

.waveform-times {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--txt3);
    margin-top: 8px;
}


/* ══════════════════════════════════════════════════════════════
   ARTICLE BODY
══════════════════════════════════════════════════════════════ */

.article-body {
    font-size: 15px;
    color: var(--txt2);
    line-height: 1.9;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.article-body p {
    margin: 0;
}


/* ══════════════════════════════════════════════════════════════
   SEARCH
══════════════════════════════════════════════════════════════ */

.search-input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg2);
    border: 1px solid var(--border2);
    border-radius: 12px;
    padding: 10px 16px;
    margin-bottom: 20px;
    transition: border-color .2s;
}

.search-input-wrap:focus-within {
    border-color: var(--zam-green);
}

.search-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--txt);
    font-size: 16px;
    font-family: var(--font-body);
}

.search-input::placeholder {
    color: var(--txt3);
}


/* ══════════════════════════════════════════════════════════════
   PAGINATION
══════════════════════════════════════════════════════════════ */

.pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

.page-btn {
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    background: var(--bg2);
    border: 1px solid var(--border);
    color: var(--txt2);
    text-decoration: none !important;
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
}

.page-btn:hover {
    border-color: var(--zam-green);
    color: var(--zam-green);
}

.page-btn--active {
    background: var(--zam-green);
    border-color: var(--zam-green);
    color: #fff;
}


/* ══════════════════════════════════════════════════════════════
   MISC
══════════════════════════════════════════════════════════════ */

.empty-state {
    text-align: center;
    padding: 48px 24px;
    color: var(--txt3);
}

.empty-icon {
    font-size: 48px;
    margin-bottom: 14px;
    opacity: .5;
}

.empty-state p {
    font-size: 14px;
    line-height: 1.6;
}

.empty-state a {
    color: var(--zam-green);
    text-decoration: none;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--txt2);
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.tag:hover {
    border-color: var(--zam-green);
    color: var(--zam-green);
}

.genre-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    border-radius: 8px;
    text-decoration: none !important;
    color: inherit;
    transition: background .2s;
}

.genre-row:hover {
    background: var(--bg3);
}

.genre-row--active {
    background: rgba(25, 138, 0, .08);
}

.genre-label {
    font-size: 13px;
    color: var(--txt2);
}

.genre-count {
    font-size: 11px;
    color: var(--txt3);
}


/* Zambia flag stripe — reusable decoration */

.flag-stripe {
    height: 3px;
    background: linear-gradient(90deg, var(--zam-green) 0% 25%, var(--zam-red) 25% 50%, #111111 50% 75%, var(--zam-orange) 75% 100%);
}