/* 
========================================================================
   KIGOOCO REDESIGN - PREMIUM DESIGN SYSTEM
   Theme: Obsidian & Spiritual Glow (Dark Mode Primary)
   Aesthetic: Glassmorphism, Neon Accents, Modern Music Charts
========================================================================
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    /* Color Palette */
    --bg-dark: #09090b;       /* Obsidian Night */
    --bg-card: #18181b;       /* Dark Zinc Card */
    --bg-card-glass: rgba(24, 24, 27, 0.65);
    --border-glass: rgba(255, 255, 255, 0.08);
    
    --text-primary: #f4f4f5;  /* Zinc-100 */
    --text-secondary: #a1a1aa;/* Zinc-400 */
    --text-muted: #71717a;     /* Zinc-500 */
    
    /* Brand Accents */
    --accent-orange: #ff6b00; /* Vibrant Praise (Fire) */
    --accent-red: #ef4444;    /* Crimson Passion */
    --accent-teal: #0d9488;   /* Teal Worship (Water/Spirit) */
    --accent-teal-glow: rgba(13, 148, 136, 0.35);
    --accent-orange-glow: rgba(255, 107, 0, 0.35);
    
    /* Chart Rank Colors */
    --gold: linear-gradient(135deg, #ffe066 0%, #f59f00 100%);
    --silver: linear-gradient(135deg, #e9ecef 0%, #868e96 100%);
    --bronze: linear-gradient(135deg, #ffc078 0%, #d9480f 100%);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Layout */
    --max-width: 1200px;
    --header-height: 80px;
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #27272a;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #3f3f46;
}

/* Background Gradients / Glow Effects */
.bg-glow-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    top: -200px;
    left: -100px;
    background: radial-gradient(circle, rgba(255,107,0,0.06) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: -1;
}

.bg-glow-2 {
    position: absolute;
    width: 600px;
    height: 600px;
    top: 300px;
    right: -100px;
    background: radial-gradient(circle, rgba(13,148,136,0.06) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: -1;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(9, 9, 11, 0.75);
    backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid var(--border-glass);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.header-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff 40%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo span {
    font-weight: 400;
    font-style: italic;
    color: var(--accent-teal);
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

nav a:hover, nav a.active {
    color: #fff;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-teal));
    transition: var(--transition);
}

nav a:hover::after, nav a.active::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-red) 100%);
    padding: 0.6rem 1.4rem;
    border-radius: 9999px;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.2);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.35);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    width: 44px;
    height: 44px; /* Perfect square touch target */
    margin-right: -10px;
    z-index: 1005;
}

.menu-toggle span {
    display: block; /* CRITICAL: ensures rendering on Android WebViews/Blink */
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition);
    transform-origin: center;
}


/* Hamburger morphing into X */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* Hero Section */
.hero {
    position: relative;
    padding: 10rem 2rem 6rem;
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 80vh;
    justify-content: center;
}

.hero-tag {
    background: rgba(255, 107, 0, 0.1);
    color: var(--accent-orange);
    border: 1px solid rgba(255, 107, 0, 0.2);
    padding: 0.4rem 1.2rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.15;
    max-width: 900px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 40%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-red) 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.25);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Home Section Layouts */
section {
    padding: 5rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
}

.section-header {
    margin-bottom: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section-header-left h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-header-left h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 60px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.section-header-left p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Rearranged Homepage Charts Section (PRIORITY #1) */
.homepage-charts-section {
    padding-top: 2rem; /* Move closer to hero */
    z-index: 10;
}

.charts-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    padding: 0.8rem 2.5rem;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.tab-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-red) 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.preview-grid {
    background: var(--bg-card-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Redesigned Charts List / Table View */
.music-chart-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.chart-row {
    display: grid;
    grid-template-columns: 80px 60px 1fr 180px 120px;
    align-items: center;
    padding: 0.85rem 1.5rem;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    transition: var(--transition);
}

.chart-row:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    transform: scale(1.005);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Rank Numbering & Badges */
.rank-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rank-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-muted);
}

.badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: #000;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.badge-1 {
    background: var(--gold);
    box-shadow: 0 0 15px rgba(245, 159, 0, 0.4);
}

.badge-2 {
    background: var(--silver);
    box-shadow: 0 0 15px rgba(134, 142, 150, 0.4);
}

.badge-3 {
    background: var(--bronze);
    box-shadow: 0 0 15px rgba(217, 72, 15, 0.4);
}

/* Song Cover Preview */
.cover-col {
    display: flex;
    align-items: center;
}

.cover-art {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: linear-gradient(135deg, #27272a 0%, #09090b 100%);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.chart-row:hover .cover-art {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.cover-art svg {
    z-index: 2;
}

.cover-art::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.6));
    z-index: 1;
}

/* Info Column */
.info-col {
    padding-left: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0; /* Unlocks text-overflow ellipsis in grid containers */
}

.song-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.artist-name {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.15rem;
}

/* Meta Data Column */
.meta-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.skiza-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(13, 148, 136, 0.1);
    color: var(--accent-teal);
    border: 1px solid rgba(13, 148, 136, 0.15);
    padding: 0.15rem 0.6rem;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 0.25rem;
}

/* Actions Column */
.actions-col {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.action-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-play {
    background: rgba(239, 68, 68, 0.1);
    color: var(--accent-red);
}

.btn-play:hover {
    background: var(--accent-red);
    color: #fff;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.btn-lyrics {
    background: rgba(13, 148, 136, 0.1);
    color: var(--accent-teal);
}

.btn-lyrics:hover {
    background: var(--accent-teal);
    color: #fff;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.btn-vote {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    border: 1px solid var(--border-glass);
}

.btn-vote:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.btn-vote.voted {
    background: var(--accent-orange);
    color: #fff;
    border-color: var(--accent-orange);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

/* Category Grid (Hymnals & Catholic Liturgics) */
.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.category-card {
    background: var(--bg-card-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.category-card::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(13,148,136,0.08) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.category-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.category-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* Search Bar (Charts Pages) */
.chart-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-box input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.8rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.search-box input:focus {
    outline: none;
    border-color: var(--accent-orange);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.15);
}

.search-box svg {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.chart-stats-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Artists / Content Creators Gallery */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.artist-card {
    background: var(--bg-card-glass);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.artist-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.artist-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.artist-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
}

.artist-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.artist-btn {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-teal);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.artist-btn:hover {
    color: #fff;
}

/* Contact Footer Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
}

.contact-item-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.contact-item-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.contact-form {
    background: var(--bg-card-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    background: rgba(255, 255, 255, 0.05);
}

/* Footer Section */
footer {
    background: #040405;
    border-top: 1px solid var(--border-glass);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 3rem;
    margin-bottom: 2rem;
}

.footer-copyright {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 0 2rem;
}

/* Global Media Player Drawer (Simulated preview) */
.media-player-drawer {
    position: fixed;
    bottom: -150px;
    left: 0;
    width: 100%;
    background: rgba(15, 15, 20, 0.92);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
    z-index: 999;
    padding: 1.25rem 2rem;
    transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.media-player-drawer.active {
    bottom: 0;
}

.player-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.player-song-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.player-cover {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
}

.player-text h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
}

.player-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.player-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 2;
}

.player-buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.player-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

.player-play-btn {
    width: 40px;
    height: 40px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-progress-bar {
    width: 100%;
    max-width: 400px;
    height: 4px;
    background: #27272a;
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.player-progress-filled {
    width: 35%;
    height: 100%;
    background: var(--accent-orange);
    border-radius: 2px;
    position: absolute;
    left: 0;
    top: 0;
}

.player-volume-col {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.player-volume-slider {
    width: 80px;
    height: 4px;
    background: #27272a;
    border-radius: 2px;
    position: relative;
}

.player-volume-filled {
    width: 70%;
    height: 100%;
    background: #fff;
    border-radius: 2px;
}

.player-close {
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
    margin-left: 1.5rem;
}

.player-close:hover {
    color: #fff;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Rules */
@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
    .artists-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .chart-row {
        grid-template-columns: 60px 50px 1fr 140px 120px;
        padding: 0.85rem 1rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: rgba(9, 9, 11, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem;
        border-bottom: 1px solid var(--border-glass);
        z-index: 1000;
        gap: 1.5rem;
    }
    nav.active {
        display: flex;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .chart-row {
        grid-template-columns: 50px 1fr auto;
        gap: 1rem;
    }
    .cover-col, .meta-col {
        display: none;
    }
    .chart-controls {
        flex-direction: column;
        align-items: stretch;
    }
    .search-box {
        max-width: none;
    }
    .media-player-drawer {
        padding: 1rem;
    }
    .player-volume-col, .player-progress-bar {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .artists-grid {
        grid-template-columns: 1fr;
    }
    .chart-row {
        grid-template-columns: 36px 1fr auto;
        gap: 0.5rem;
        padding: 0.85rem 0.75rem;
    }
    .song-title {
        font-size: 0.95rem;
    }
    .artist-name {
        font-size: 0.8rem;
    }
    .action-btn {
        width: 32px;
        height: 32px;
    }
}



/* 
========================================================================
   RADIO KIGOOCO & GRAPHICS BRANDING ADDITIONS
========================================================================
*/

/* Header Logo Image */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
}

.logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo:hover .logo-img {
    transform: scale(1.05) rotate(-2deg);
}

/* Radio Hero & Slogan Details */
.radio-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 9rem 2rem 4rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.radio-logo-container {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-orange);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.25);
    margin-bottom: 2rem;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.radio-logo-container:hover {
    transform: scale(1.05) rotate(2deg);
    border-color: var(--accent-teal);
    box-shadow: 0 0 35px rgba(13, 148, 136, 0.35);
}

.radio-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Modern Radio Player Card */
.radio-player-card {
    background: linear-gradient(135deg, rgba(24, 24, 27, 0.75) 0%, rgba(9, 9, 11, 0.9) 100%);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto 4rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 107, 0, 0.05);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.radio-player-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.player-status-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.player-show-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-top: 1rem;
    text-align: center;
    line-height: 1.25;
}

.player-host-name {
    color: var(--accent-orange);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: center;
    margin-top: 0.25rem;
    margin-bottom: 2rem;
}

/* Audio Visualizer Waves */
.waveform-container {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 2.5rem;
}

.waveform-bar {
    width: 4px;
    height: 15px;
    background: linear-gradient(to top, var(--accent-teal), var(--accent-orange));
    border-radius: 2px;
    transition: height 0.15s ease;
}

.waveform-bar.active {
    animation: waveBounce 1.2s infinite ease-in-out alternate;
}

@keyframes waveBounce {
    0% { height: 10px; }
    100% { height: 55px; }
}

/* Custom delay for each bar */
.waveform-bar:nth-child(2n) { animation-delay: 0.15s; }
.waveform-bar:nth-child(3n) { animation-delay: 0.35s; }
.waveform-bar:nth-child(4n) { animation-delay: 0.5s; }
.waveform-bar:nth-child(5n) { animation-delay: 0.2s; }
.waveform-bar:nth-child(7n) { animation-delay: 0.4s; }

/* Radio Controls */
.radio-controls-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.radio-play-btn-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-red) 100%);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.35);
    transition: var(--transition);
}

.radio-play-btn-large:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.5);
}

.radio-play-btn-large svg {
    width: 32px;
    height: 32px;
}

.radio-volume-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 320px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
}

.radio-volume-slider {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 5px;
    background: #27272a;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
}

.radio-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent-teal);
    cursor: pointer;
    box-shadow: 0 0 8px rgba(13, 148, 136, 0.6);
    transition: var(--transition);
}

.radio-volume-slider::-webkit-slider-thumb:hover {
    background: #fff;
    transform: scale(1.2);
}

/* Schedule Layout & Tabs */
.schedule-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    background: rgba(255,255,255,0.01);
    border: 1px solid var(--border-glass);
    padding: 0.5rem;
    border-radius: 14px;
    backdrop-filter: blur(10px);
}

.schedule-day-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.6rem 1.6rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.schedule-day-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
}

.schedule-day-btn.active {
    background: var(--accent-teal);
    color: #fff;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
}

/* Tabular Schedule View */
.schedule-table-container {
    background: var(--bg-card-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.schedule-table th, .schedule-table td {
    padding: 1.25rem 2rem;
}

.schedule-table th {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 2px solid var(--border-glass);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.schedule-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
}

.schedule-table tr:last-child {
    border-bottom: none;
}

.schedule-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.schedule-table tr.current-show {
    background: rgba(255, 107, 0, 0.04);
    border-left: 4px solid var(--accent-orange);
}

.schedule-time {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-teal);
    white-space: nowrap;
}

.schedule-show {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
}

.schedule-host {
    font-size: 0.9rem;
    color: var(--accent-orange);
    font-weight: 500;
}

.schedule-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 500px;
}

/* Day Panel displays */
.schedule-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.schedule-panel.active {
    display: block;
}

/* Mobile responsive rules for schedule table */
@media (max-width: 768px) {
    .schedule-table th {
        display: none;
    }
    .schedule-table td {
        display: block;
        padding: 0.5rem 1.5rem;
    }
    .schedule-table td:first-child {
        padding-top: 1.25rem;
    }
    .schedule-table td:last-child {
        padding-bottom: 1.25rem;
        border-bottom: 1px solid var(--border-glass);
    }
    .schedule-table tr:last-child td:last-child {
        border-bottom: none;
    }
    .schedule-tabs {
        padding: 0.3rem;
    }
    .schedule-day-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    .radio-player-card {
        padding: 2rem 1.5rem;
    }
    .player-show-title {
        font-size: 1.7rem;
    }
}


/* 
========================================================================
   DONATION PAGE STYLING - PAYPAL & M-PESA ACCENTS
========================================================================
*/

/* Donation Grid */
.donation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
    margin-bottom: 6rem;
}

.donation-card {
    background: linear-gradient(135deg, rgba(24, 24, 27, 0.7) 0%, rgba(9, 9, 11, 0.85) 100%);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.donation-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
}

.donation-method-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.donation-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* PayPal Button Placeholder styling */
.btn-paypal {
    background: #ffc439;
    color: #003087;
    border: none;
    border-radius: 30px;
    padding: 0.9rem 2.5rem;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 196, 57, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-paypal:hover {
    background: #f2ba2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 196, 57, 0.45);
}

.btn-paypal span {
    font-style: italic;
    color: #0079c1;
    font-weight: 800;
}

/* M-Pesa Branded Card Styling */
.mpesa-card {
    border: 1px solid rgba(0, 168, 89, 0.25);
    box-shadow: 0 12px 36px rgba(0, 168, 89, 0.05);
}

.mpesa-card:hover {
    border-color: rgba(0, 168, 89, 0.45);
    box-shadow: 0 18px 45px rgba(0, 168, 89, 0.12);
}

.mpesa-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 168, 89, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.mpesa-brand-mark {
    background: #00a859;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mpesa-number-box {
    background: rgba(0, 168, 89, 0.06);
    border: 1px dashed rgba(0, 168, 89, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mpesa-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.mpesa-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1.5px;
    font-family: var(--font-body);
}

.mpesa-copy-btn {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--accent-teal);
    cursor: pointer;
    transition: var(--transition);
}

.mpesa-copy-btn:hover {
    color: #fff;
}

/* M-Pesa Step Instructions */
.mpesa-steps {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-glass);
}

.mpesa-step-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.mpesa-step-number {
    width: 20px;
    height: 20px;
    background-color: #00a859;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Mobile responsive rules for donation grid */
@media (max-width: 900px) {
    .donation-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .donation-card {
        padding: 2.5rem 1.8rem;
    }
}


/* 
========================================================================
   FOOTER SOCIAL MEDIA LINKS & BUTTONS
========================================================================
*/

.footer-social-row {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.social-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}

.social-btn svg {
    width: 22px;
    height: 22px;
}

.social-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.social-btn.fb-page:hover {
    background: #1877f2;
    border-color: #1877f2;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.social-btn.fb-group:hover {
    background: #2d8259;
    border-color: #2d8259;
    box-shadow: 0 4px 15px rgba(45, 130, 89, 0.4);
}

.social-btn.yt:hover {
    background: #ff0000;
    border-color: #ff0000;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.social-btn.email:hover {
    background: var(--accent-teal);
    border-color: var(--accent-teal);
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.4);
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding-bottom: 2rem;
    }
}


/* 
========================================================================
   DONATION IMPACT & MULTI-COLUMN CONTENT LAYOUT
========================================================================
*/

.donate-main-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.donation-impact-col {
    display: flex;
    flex-direction: column;
}

.impact-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.impact-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 12px;
    transition: var(--transition);
}

.impact-item:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.06);
    transform: translateX(4px);
}

.impact-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(13, 148, 136, 0.1);
    color: var(--accent-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.impact-item:hover .impact-icon-box {
    background: var(--accent-teal);
    color: #fff;
    box-shadow: 0 0 12px rgba(13, 148, 136, 0.35);
}

.impact-text h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.impact-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
}

.donation-payment-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (max-width: 1024px) {
    .donate-main-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}


/* 
========================================================================
   LYRICS FEED & DETAIL PAGES STYLING
========================================================================
*/

/* Grid feed */
.lyrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.lyrics-card {
    background: var(--bg-card-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
    backdrop-filter: blur(12px);
}

.lyrics-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.lyrics-card-header {
    padding: 1.75rem 1.75rem 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lyrics-cover-text {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-red) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.lyrics-card:nth-child(2n) .lyrics-cover-text {
    background: linear-gradient(135deg, var(--accent-teal) 0%, #0284c7 100__);
}

.lyrics-card:nth-child(3n) .lyrics-cover-text {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100__);
}

.lyrics-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lyrics-card-artist {
    font-size: 0.9rem;
    color: var(--accent-orange);
    font-weight: 500;
    margin-top: 0.15rem;
}

.lyrics-card-body {
    padding: 1rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.lyrics-preview-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    height: 70px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.btn-lyrics-link {
    color: var(--accent-teal);
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-lyrics-link:hover {
    color: #fff;
}

.btn-lyrics-link svg {
    transition: transform 0.25s ease;
}

.btn-lyrics-link:hover svg {
    transform: translateX(4px);
}

/* Lyrics Detail Page Typography & Components */
.lyrics-detail-container {
    max-width: 800px;
    margin: 8rem auto 6rem;
    padding: 0 2rem;
}

.lyrics-detail-card {
    background: var(--bg-card-glass);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 4rem 3rem;
    backdrop-filter: blur(16px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.lyrics-detail-header {
    text-align: center;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 2rem;
    margin-bottom: 3rem;
}

.lyrics-detail-header h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.lyrics-detail-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.lyrics-content-body {
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.lyrics-verse-block {
    margin-bottom: 2.5rem;
}

.lyrics-verse-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
}

.lyrics-chorus-block {
    background: rgba(255, 255, 255, 0.015);
    border-left: 3px solid var(--accent-teal);
    border-right: 3px solid var(--accent-teal);
    padding: 1.75rem 2rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.lyrics-chorus-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-teal);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
}

.lyrics-back-row {
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-glass);
    padding-top: 2rem;
}

/* Mobile responsive rules for lyrics */
@media (max-width: 1024px) {
    .lyrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .lyrics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .lyrics-detail-card {
        padding: 2.5rem 1.5rem;
    }
    .lyrics-detail-header h1 {
        font-size: 2rem;
    }
    .lyrics-detail-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}


/* 
========================================================================
   YOUTUBE PLAYLIST BANNER STYLES (IN CHARTS LIST)
========================================================================
*/

.youtube-playlist-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(9, 9, 11, 0.8) 100%);
    border: 1px dashed rgba(239, 68, 68, 0.25);
    border-radius: 12px;
    padding: 1.25rem 2rem;
    margin: 1.5rem 0;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.youtube-playlist-banner:hover {
    border-color: rgba(239, 68, 68, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.1);
}

.playlist-banner-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.yt-play-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ff0000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
    flex-shrink: 0;
}

.playlist-banner-text h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.2rem 0;
    text-align: left;
}

.playlist-banner-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    text-align: left;
}

.btn-yt-playlist {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-yt-playlist:hover {
    background: #ff0000;
    border-color: #ff0000;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.35);
}

.btn-yt-playlist svg {
    transition: transform 0.25s ease;
}

.btn-yt-playlist:hover svg {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .youtube-playlist-banner {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
        padding: 1.5rem;
    }
    .playlist-banner-left {
        flex-direction: column;
        gap: 0.75rem;
    }
    .playlist-banner-text h4, .playlist-banner-text p {
        text-align: center;
    }
    .btn-yt-playlist {
        width: 100%;
        justify-content: center;
    }
}
