/* ══════════════════════════════════════════════════════
   SINHALA SINDU — Main Stylesheet
   Colour Palette:
   Primary Teal  : #00A878
   Teal Dark     : #007a57
   Teal Light    : #e0f7ef
   Gold          : #F5A623
   Gold Dark     : #d48f1a
   Dark BG       : #0d1117
   Card BG       : #ffffff
   Body BG       : #f5f7fa
   Text Primary  : #1a1a2e
   Text Secondary: #666
   Border        : #e8e8e8
══════════════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --teal       : #00A878;
    --teal-dark  : #007a57;
    --teal-light : #e0f7ef;
    --gold       : #F5A623;
    --gold-dark  : #d48f1a;
    --dark       : #0d1117;
    --dark-2     : #161b22;
    --dark-3     : #21262d;
    --body-bg    : #f5f7fa;
    --card-bg    : #ffffff;
    --text-1     : #1a1a2e;
    --text-2     : #555;
    --text-3     : #999;
    --border     : #e8e8e8;
    --shadow-sm  : 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md  : 0 4px 20px rgba(0,0,0,0.09);
    --shadow-lg  : 0 8px 40px rgba(0,0,0,0.13);
    --radius-sm  : 6px;
    --radius-md  : 10px;
    --radius-lg  : 16px;
    --font       : 'Inter', 'Segoe UI', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--body-bg);
    color: var(--text-1);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

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

ul { list-style: none; }

/* ── Container ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ══════════════════════════════════════════════════════
   TOP BAR
══════════════════════════════════════════════════════ */
.topbar {
    background: var(--dark);
    border-bottom: 1px solid var(--dark-3);
    padding: 7px 0;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-text {
    font-size: 12px;
    color: #aaa;
    letter-spacing: 0.3px;
}

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

.topbar-date {
    font-size: 12px;
    color: #aaa;
}

/* ══════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════ */
.site-header {
    background: var(--dark-2);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 200;
    transition: box-shadow 0.3s, padding 0.3s;
}

.site-header.header-sticky {
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    padding: 10px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-icon {
    font-size: 28px;
    line-height: 1;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.3px;
}

.logo-sub {
    font-size: 11px;
    color: var(--teal);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Search */
.header-search {
    flex: 1;
    max-width: 480px;
    display: flex;
    margin-left: auto;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 10px 50px 10px 18px;
    background: var(--dark-3);
    border: 2px solid transparent;
    border-radius: 30px;
    font-size: 14px;
    color: #fff;
    font-family: var(--font);
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.search-input::placeholder { color: #666; }

.search-input:focus {
    border-color: var(--teal);
    background: var(--dark);
}

.search-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--teal);
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: background 0.2s;
}

.search-btn:hover { background: var(--teal-dark); }

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    margin-left: auto;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-btn.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.is-open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ══════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════ */
.main-nav {
    background: var(--teal);
    border-bottom: 3px solid var(--gold);
    position: sticky;
    top: 57px;
    z-index: 199;
}

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

.nav-list a {
    display: block;
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 13px 18px;
    transition: background 0.2s, color 0.2s;
    position: relative;
}

.nav-list a:hover,
.nav-list a.active {
    background: var(--gold);
    color: #fff;
}

/* ══════════════════════════════════════════════════════
   MAIN CONTENT
══════════════════════════════════════════════════════ */
.site-main {
    min-height: 60vh;
}

/* ══════════════════════════════════════════════════════
   HERO BANNER
══════════════════════════════════════════════════════ */
.hero-banner {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, #0a2a1e 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(0,168,120,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(0,168,120,0.15);
    border: 1px solid rgba(0,168,120,0.3);
    color: var(--teal);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.hero-title span { color: var(--teal); }

.hero-desc {
    font-size: 16px;
    color: #aaa;
    margin-bottom: 28px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    display: block;
}

.hero-stat .stat-label {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero featured video card */
.hero-video-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    aspect-ratio: 16/9;
}

.hero-video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.hero-video-card:hover img { transform: scale(1.04); }

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.hero-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: transform 0.2s, background 0.2s;
}

.hero-video-card:hover .hero-play-btn {
    transform: translate(-50%, -60%) scale(1.1);
    background: var(--gold);
}

.hero-video-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-top: 6px;
}

.hero-video-artist {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-top: 3px;
}

/* ══════════════════════════════════════════════════════
   SECTION HEADINGS
══════════════════════════════════════════════════════ */
.section {
    padding: 55px 0;
}

.section-alt {
    background: #fff;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 12px;
}

.section-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin-left: 4px;
}

.section-title .title-icon {
    font-size: 24px;
    line-height: 1;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--teal-light);
    color: var(--teal-dark);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 30px;
    transition: background 0.2s, color 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-all-btn:hover {
    background: var(--teal);
    color: #fff;
}

/* ══════════════════════════════════════════════════════
   ARTIST CARDS
══════════════════════════════════════════════════════ */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.artist-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    text-align: center;
}

.artist-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.artist-card-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    background: linear-gradient(135deg, var(--teal-light), #b2dfd0);
    transition: transform 0.3s;
}

.artist-card:hover .artist-card-img { transform: scale(1.05); }

.artist-card-img-wrap {
    overflow: hidden;
    position: relative;
}

.artist-card-img-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, var(--teal-light), #b2dfd0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
}

.artist-card-body {
    padding: 12px 10px;
}

.artist-card-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.artist-card-si {
    font-size: 11px;
    color: var(--text-3);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.artist-card-badge {
    display: inline-block;
    margin-top: 6px;
    background: var(--teal-light);
    color: var(--teal-dark);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════
   VIDEO CARDS
══════════════════════════════════════════════════════ */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
}

.video-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.video-thumb-wrap {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--dark-3);
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.video-card:hover .video-thumb { transform: scale(1.05); }

.video-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}

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

.video-play-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 4px;
}

.video-card-body {
    padding: 14px;
}

.video-card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-1);
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-card-title:hover { color: var(--teal); }

.video-card-artist {
    font-size: 12px;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.video-card-cat {
    background: var(--teal-light);
    color: var(--teal-dark);
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════
   SONG LIST (Latest Songs)
══════════════════════════════════════════════════════ */
.songs-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.song-item {
    background: var(--card-bg);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.15s, box-shadow 0.15s, border-color 0.2s;
    border: 1px solid transparent;
    text-decoration: none;
    color: inherit;
}

.song-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    border-color: var(--teal-light);
}

.song-num {
    width: 32px;
    height: 32px;
    background: var(--teal-light);
    color: var(--teal-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.song-item:hover .song-num {
    background: var(--teal);
    color: #fff;
}

.song-thumb {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
    background: var(--teal-light);
}

.song-thumb-placeholder {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--teal-light), #b2dfd0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

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


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

.song-item:hover .song-title { color: var(--teal); }

.song-title-si {
    font-size: 12px;
    color: var(--text-3);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.song-artists {
    font-size: 12px;
    color: var(--teal);
    font-weight: 600;
    margin-top: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.song-meta-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    flex-shrink: 0;
}

.song-year {
    font-size: 12px;
    color: var(--text-3);
    font-weight: 500;
}

.song-badge-yt {
    background: #ffebee;
    color: #c62828;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
}

.song-cat-badge {
    background: var(--teal-light);
    color: var(--teal-dark);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════
   NEWS CARDS
══════════════════════════════════════════════════════ */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}

.news-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.news-card-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: var(--teal-light);
    transition: transform 0.3s;
}

.news-card-thumb-wrap { overflow: hidden; }
.news-card:hover .news-card-thumb { transform: scale(1.04); }

.news-thumb-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--teal-light), #b2dfd0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.news-card-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-1);
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.news-card:hover .news-card-title { color: var(--teal); }

.news-card-excerpt {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.6;
    margin-bottom: 12px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-3);
    padding-top: 10px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.news-source-badge {
    background: #f5f5f5;
    color: #666;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
}

/* ══════════════════════════════════════════════════════
   TICKER / MARQUEE
══════════════════════════════════════════════════════ */
.ticker-wrap {
    background: var(--dark-2);
    border-top: 1px solid var(--dark-3);
    border-bottom: 1px solid var(--dark-3);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ticker-label {
    background: var(--gold);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 16px;
    flex-shrink: 0;
    white-space: nowrap;
}

.ticker-inner {
    display: flex;
    overflow: hidden;
    flex: 1;
}

.ticker-track {
    display: flex;
    gap: 0;
    animation: ticker-scroll 30s linear infinite;
    white-space: nowrap;
}

.ticker-track:hover { animation-play-state: paused; }

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px 10px 0;
    font-size: 13px;
    color: #ccc;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.ticker-item:hover { color: var(--gold); }

.ticker-dot {
    width: 4px;
    height: 4px;
    background: var(--teal);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════
   TWO COLUMN LAYOUT (Songs + News)
══════════════════════════════════════════════════════ */
.two-col-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ══════════════════════════════════════════════════════
   PAGINATION
══════════════════════════════════════════════════════ */
.pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 35px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.pagination a {
    background: #fff;
    color: var(--teal);
    border: 2px solid var(--border);
}

.pagination a:hover {
    background: var(--teal-light);
    border-color: var(--teal);
}

.pagination span {
    background: var(--teal);
    color: #fff;
    border: 2px solid var(--teal);
}

.pagination .dots {
    background: none;
    border: none;
    color: #aaa;
}

/* ══════════════════════════════════════════════════════
   BREADCRUMB
══════════════════════════════════════════════════════ */
.breadcrumb-bar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-3);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--teal);
    font-weight: 600;
    transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--teal-dark); }

.breadcrumb .sep { color: #ccc; }

/* ══════════════════════════════════════════════════════
   BADGES / TAGS
══════════════════════════════════════════════════════ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge-teal   { background: var(--teal-light); color: var(--teal-dark); }
.badge-gold   { background: #fff8e1; color: #7a5800; }
.badge-red    { background: #ffebee; color: #c62828; }
.badge-purple { background: #f3e5f5; color: #7b1fa2; }
.badge-blue   { background: #e3f2fd; color: #0077cc; }

/* ══════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.3px;
}

.btn-teal {
    background: var(--teal);
    color: #fff;
}

.btn-teal:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
}

.btn-outline:hover {
    background: var(--teal);
    color: #fff;
}

.btn-gold {
    background: var(--gold);
    color: #fff;
}

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.site-footer {
    background: var(--dark);
    color: #aaa;
    padding: 55px 0 0;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--dark-3);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.footer-about {
    font-size: 13px;
    line-height: 1.7;
    color: #888;
    margin-bottom: 18px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 36px;
    height: 36px;
    background: var(--dark-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    transition: background 0.2s, color 0.2s;
}

.social-btn:hover {
    background: var(--teal);
    color: #fff;
}

.footer-heading {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-links a {
    font-size: 13px;
    color: #888;
    transition: color 0.2s, padding-left 0.2s;
}

.footer-links a:hover {
    color: var(--teal);
    padding-left: 4px;
}

.footer-news {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-news li a {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
    display: block;
    transition: color 0.2s;
}

.footer-news li a:hover { color: var(--teal); }

.footer-news li span {
    font-size: 11px;
    color: #555;
    margin-top: 3px;
    display: block;
}

.footer-bottom {
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: #555;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom-links a {
    color: #555;
    transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--teal); }

.footer-bottom-links span { color: #333; }

/* ══════════════════════════════════════════════════════
   EMPTY STATE
══════════════════════════════════════════════════════ */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-3);
}

.empty-state .empty-icon { font-size: 50px; margin-bottom: 15px; }
.empty-state p { font-size: 15px; }

/* ══════════════════════════════════════════════════════
   LOADING SKELETON
══════════════════════════════════════════════════════ */
@keyframes shimmer {
    0%   { background-position: -600px 0; }
    100% { background-position: 600px 0; }
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 600px 100%;
    animation: shimmer 1.4s infinite;
    border-radius: var(--radius-sm);
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 35px; }
    .hero-title { font-size: 34px; }
    .hero-video-card { max-width: 560px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .two-col-section { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .topbar { display: none; }

    .header-search { max-width: 220px; }

    .mobile-menu-btn { display: flex; }

    .main-nav {
        position: static;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        border-bottom: none;
    }

    .main-nav.nav-open {
        max-height: 400px;
        border-bottom: 3px solid var(--gold);
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 8px 0;
    }

    .nav-list a {
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .hero-banner { padding: 35px 0 30px; }
    .hero-title  { font-size: 26px; }
    .hero-desc   { font-size: 14px; }

    .artists-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 14px; }
    .videos-grid  { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
    .news-grid    { grid-template-columns: 1fr; }

    .section { padding: 35px 0; }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .song-item { padding: 12px 14px; }
}

@media (max-width: 480px) {
    .header-search { display: none; }
    .logo-main { font-size: 17px; }
    .artists-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .section-title { font-size: 18px; }
    .hero-stats { gap: 20px; }
    .hero-stat .stat-num { font-size: 24px; }
}