/* =========================================
   Lyrics Page — Premium Dark Theme
   ========================================= */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Dark Theme Colors */
    --bg-dark: #0a0e1a;
    --bg-dark-2: #0f172a;
    --surface: #1e293b;
    --surface-light: #334155;
    --surface-hover: #3b4a63;
    --glass-bg: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(148, 163, 184, 0.12);
    --glass-highlight: rgba(255, 255, 255, 0.05);

    /* Text Colors */
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    /* Accent Colors */
    --accent-purple: #7c3aed;
    --accent-indigo: #6366f1;
    --accent-pink: #ec4899;
    --accent-blue: #3b82f6;
    --accent-teal: #14b8a6;
    --accent-amber: #f59e0b;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    --gradient-hero: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #3b0764 100%);
    --gradient-surface: linear-gradient(180deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
    --gradient-glow: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
    --gradient-text: linear-gradient(to right, #c4b5fd, #f9a8d4);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 28px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(124, 58, 237, 0.3);
    --shadow-glow-pink: 0 0 20px rgba(236, 72, 153, 0.2);

    /* Spacing & Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
}

/* =========================================
   Base & Body
   ========================================= */
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

a {
    color: var(--accent-purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-pink);
}

/* =========================================
   Hero Section — Cinematic
   ========================================= */
.hero-section {
    position: relative;
    min-height: 45vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    margin-bottom: 0;
    color: #fff;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(10, 14, 26, 0.3) 0%,
            rgba(10, 14, 26, 0.6) 50%,
            rgba(10, 14, 26, 0.95) 100%);
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg-dark) 0%, transparent 100%);
    z-index: 2;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(20px) brightness(0.35) saturate(1.4);
    transform: scale(1.15);
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1300px;
    animation: heroFadeIn 1s ease-out;
}

.main-title,
.gradient-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 0%, #c4b5fd 50%, #f9a8d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    letter-spacing: -0.02em;
}

.artist-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.artist-icon {
    width: 42px;
    height: 42px;
    background: rgba(124, 58, 237, 0.25);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c4b5fd;
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.artist-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    color: #e2e8f0;
}

.artist-name a {
    color: #e2e8f0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.artist-name a:hover {
    color: #c4b5fd;
    text-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
}

.upload-date {
    color: rgba(148, 163, 184, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    padding-bottom: 10px;
}

.info-paragraph,
.hero-description {
    font-size: 1.05rem;
    color: rgba(203, 213, 225, 0.85);
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: rgba(203, 213, 225, 0.8);
    font-size: 0.95rem;
}

.hero-meta i {
    color: var(--accent-purple);
    margin-right: 0.4rem;
}

/* Links in Hero Section Paragraphs */
.hero-content a,
.info-paragraph a {
    color: #a78bfa;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-content a:hover,
.info-paragraph a:hover {
    color: #f9a8d4;
    text-shadow: 0 0 15px rgba(124, 58, 237, 0.3);
}

.scroll-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2.2rem;
    background: var(--gradient-primary);
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4),
        0 0 40px rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.scroll-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5),
        0 0 60px rgba(124, 58, 237, 0.2);
}

/* =========================================
   Main Content Layout
   ========================================= */
.lyrics-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem 0.5rem;
}

.content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: stretch;
}

/* Image Side */
.content-left {
    order: 1;
    height: 100%;
}

.content-left .featured-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 100%;
    position: relative;
    background: var(--surface);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
}

.content-left .featured-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-left .featured-image:hover img {
    transform: scale(1.04);
}

/* Category Badge */
.category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gradient-primary);
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.78rem;
    z-index: 10;
    letter-spacing: 0.8px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Table Side — Glassmorphism */
.content-right {
    order: 2;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--glass-border);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-align: center;
}

.title-border {
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin: 0 auto 1.2rem;
}

/* Song Info Table */
.info-table table,
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: auto;
    margin-bottom: auto;
}

.info-table table tr,
table tr {
    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
    transition: background-color 0.3s ease;
}

.info-table table tr:hover,
table tr:hover {
    background: rgba(124, 58, 237, 0.05);
}

/* Header Row */
table tr:first-child {
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.3);
}

table tr:first-child td {
    color: #fff;
    border: none;
    padding: 0.4rem 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

table tr:first-child td:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

table tr:first-child td:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

table tr:last-child {
    border-bottom: none;
}

table td {
    padding: 0.3rem 0.5rem;
    font-size: 0.93rem;
    text-align: center;
    color: var(--text-secondary);
}

table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
    width: 40%;
}

table tr:first-child td:first-child {
    color: #fff;
}

table td:last-child {
    color: var(--text-secondary);
}

table tr:first-child td:last-child {
    color: #fff;
}

/* Table Links */
.info-table a {
    color: #a78bfa;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.info-table a:hover {
    color: #f9a8d4;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(124, 58, 237, 0.3);
}

/* =========================================
   Lyrics & Recommendations Layout
   ========================================= */
.lyrics-recommendations-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 2rem;
}

/* Intro Paragraph */
.intro-paragraph {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    padding: 1.2rem 1.5rem;
    background: var(--glass-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
}

.intro-paragraph a {
    color: #a78bfa;
    font-weight: 600;
}

.intro-paragraph a:hover {
    color: #f9a8d4;
}

/* Lyrics Content Card */
.lyrics-content {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--glass-border);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decorative corner accent */
.lyrics-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at top left, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.lyrics-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at bottom right, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.content-title,
.lyrics-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.lyricist-info {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(124, 58, 237, 0.08);
    border-radius: 2rem;
    border: 1px solid rgba(124, 58, 237, 0.15);
    backdrop-filter: blur(8px);
    position: relative;
    z-index: 1;
}

.lyricist-info span {
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lyricist-info a {
    color: #a78bfa;
    font-weight: 600;
}

.lyricist-info a:hover {
    color: #f9a8d4;
}

/* Lyrics Text */
pre {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-primary);
    white-space: pre-wrap;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

pre strong {
    color: var(--accent-purple);
    font-weight: 700;
}

.lyrics-content-block {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

/* Lyric Lines */
.lyric-line {
    margin-bottom: 0.2rem;
    min-height: 1rem;
}

/* Translation Lines */
.translation-line,
.translation-text {
    color: #a78bfa;
    font-weight: 500;
    font-style: italic;
    transition: opacity 0.3s ease, height 0.3s ease;
    position: relative;
    padding-left: 0;
    font-size: 0.95em;
}

.translation-line.hidden {
    display: none;
}

/* Song Structure Labels — Pill Badges */
.song-structure {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin: 0.8rem 0 0.4rem;
    background: rgba(220, 38, 38, 0.12);
    color: #ef4444;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

/* Square Bracket Text — Red Color */
.lyrics-bracket {
    color: #ef4444;
    font-weight: 600;
}

.end-marker {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Links in Lyrics Content */
.lyrics-content a,
pre a,
p a {
    color: #a78bfa;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lyrics-content a:hover,
pre a:hover,
p a:hover {
    color: #f9a8d4;
    text-shadow: 0 0 10px rgba(124, 58, 237, 0.3);
}

/* =========================================
   Lyrics Translation Toggle
   ========================================= */
.lyrics-toggle-container {
    display: flex;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.lyrics-toggle-btn {
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
    white-space: normal;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 250px;
    line-height: 1.2;
}

.lyrics-toggle-btn.active {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 18px rgba(124, 58, 237, 0.4),
        0 0 30px rgba(124, 58, 237, 0.15);
    border-color: transparent;
}

.lyrics-toggle-btn:not(.active) {
    background: rgba(30, 41, 59, 0.8);
    color: var(--text-secondary);
    border-color: rgba(148, 163, 184, 0.15);
}

.lyrics-toggle-btn:not(.active):hover {
    background: rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.3);
    color: #c4b5fd;
}

.lyrics-toggle-btn:hover {
    transform: translateY(-2px);
}

/* =========================================
   Report Section
   ========================================= */
.report-lyrics {
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    backdrop-filter: blur(12px);
}

.report-lyrics h3 {
    color: #fca5a5;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
}

.report-lyrics p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.report-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.report-button:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
}

/* =========================================
   YouTube Section
   ========================================= */
.youtube-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-align: center;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.youtube-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    background: #000;
    border: 1px solid var(--glass-border);
}

.youtube-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* =========================================
   Sidebar Recommendations — Glassmorphism
   ========================================= */
.sidebar-recommendations {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 20px;
    border: 1px solid var(--glass-border);
}

.sidebar-recommendations h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-align: center;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-border-Recommendations {
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin: 0 auto 1.2rem;
}

/* Individual Recommendation Card */
.sidebar-recommendation-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(30, 41, 59, 0.6);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 0.6rem;
    border: 1px solid rgba(148, 163, 184, 0.08);
    position: relative;
    overflow: hidden;
}

.sidebar-recommendation-item:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: var(--shadow-glow);
    border-color: rgba(124, 58, 237, 0.3);
    background: rgba(124, 58, 237, 0.08);
}

.sidebar-recommendation-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-recommendation-item:hover::before {
    opacity: 1;
}

.sidebar-rec-image {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.sidebar-rec-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sidebar-recommendation-item:hover .sidebar-rec-image img {
    transform: scale(1.1);
}

.sidebar-rec-content {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.sidebar-rec-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}

.sidebar-recommendation-item:hover .sidebar-rec-title {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Show More Button */
.show-more-btn {
    width: 100%;
    padding: 0.75rem;
    margin-top: 1rem;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.2);
    color: #c4b5fd;
    border-radius: var(--radius-lg);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.show-more-btn:hover {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.show-more-btn::after {
    content: '→';
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.show-more-btn:hover::after {
    transform: translateX(4px);
}

/* =========================================
   "You Might Also Like" Grid
   ========================================= */
.you-might-like {
    max-width: 1300px;
    margin: 2.5rem auto 0;
    padding: 0 1rem;
}

.you-might-like h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.you-might-like h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.lyrics-grid-random {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 900px) {
    .lyrics-grid-random {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .lyrics-grid-random {
        grid-template-columns: 1fr;
    }
}

.lyric-card-random {
    background: var(--glass-bg);
    border-radius: var(--radius-xl);
    overflow: hidden;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--glass-border);
}

.lyric-card-random:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(124, 58, 237, 0.25);
}

.image-container {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
}

.image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.lyric-card-random:hover .image-container img {
    transform: scale(1.08);
}

/* Dark gradient overlay on images */
.image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, transparent 100%);
    pointer-events: none;
}

.category-label {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(124, 58, 237, 0.8);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.card-content {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lyric-meta {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.lyric-meta div {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.lyric-meta i {
    color: var(--accent-purple);
    font-size: 0.75rem;
}

/* =========================================
   FAQ Section — Dark Accordion Style
   ========================================= */
.lyrics-faq {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.lyrics-faq h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lyrics-faq h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.qna-item {
    background: var(--glass-bg);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
}

.qna-item:hover {
    border-color: rgba(124, 58, 237, 0.25);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.qna-question {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.qna-question i {
    color: var(--accent-purple);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.qna-answer {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding-left: 0.25rem;
}

.qna-answer i {
    color: var(--accent-pink);
    margin-top: 0.3rem;
    font-size: 0.85rem;
    opacity: 0.8;
    flex-shrink: 0;
}

.qna-answer-continuation {
    margin-left: 2.25rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 0.5rem;
}

/* =========================================
   Album Songs Section
   ========================================= */
.album-songs-section {
    background: var(--glass-bg);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
}

.album-songs-section h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    padding-bottom: 12px;
    text-align: center;
    position: relative;
    border-bottom: none;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.album-songs-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.album-song-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.album-song-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.93rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(148, 163, 184, 0.08);
}

.album-song-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(124, 58, 237, 0.3);
    background: rgba(124, 58, 237, 0.08);
}

.album-song-item i {
    color: #a78bfa;
    font-size: 1rem;
    background: rgba(124, 58, 237, 0.15);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.album-song-item span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Lyrics Not Available */
.lyrics-not-available {
    text-align: center;
    padding: 50px 20px;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 16px;
    margin: 20px 0;
    border: 1px dashed rgba(148, 163, 184, 0.15);
}

.lyrics-not-available i {
    font-size: 3em;
    color: var(--text-muted);
    margin-bottom: 15px;
    opacity: 0.6;
}

.lyrics-not-available h3 {
    margin: 0 0 15px 0;
    font-size: 1.8em;
    color: var(--text-primary);
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    -webkit-text-fill-color: unset;
    background: none;
}

.lyrics-not-available p {
    color: var(--text-secondary);
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.lyrics-not-available .channel-info {
    font-size: 1em;
    margin-top: 15px;
    color: var(--text-muted);
    font-weight: 500;
}

.whatsapp-channel-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 36px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white !important;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1em;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.whatsapp-channel-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-channel-btn i {
    margin-right: 10px;
    font-size: 1.2em;
}

/* =========================================
   Animations
   ========================================= */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatNote {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.1;
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
        opacity: 0.3;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* =========================================
   Footer Styles
   ========================================= */
footer {
    background: linear-gradient(135deg, #0a0e1a 0%, #1e1b4b 50%, #0f172a 100%);
    color: #fff;
    padding: 6rem 1rem 3rem;
    position: relative;
    overflow: hidden;
    margin-top: 4rem;
    border-top: 1px solid rgba(124, 58, 237, 0.15);
}

.music-notes {
    position: absolute;
    font-size: 2rem;
    color: rgba(124, 58, 237, 0.1);
    animation: floatNote 5s infinite ease-in-out;
}

.note-1 {
    top: 20%;
    left: 10%;
    font-size: 3rem;
    animation-delay: 0s;
}

.note-2 {
    top: 60%;
    right: 15%;
    font-size: 2.5rem;
    animation-delay: 2s;
}

.note-3 {
    top: 30%;
    right: 25%;
    font-size: 1.5rem;
    animation-delay: 4s;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.footer-column h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-column p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #94a3b8;
}

.contact-icon {
    width: 35px;
    height: 35px;
    background: rgba(124, 58, 237, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a78bfa;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.contact-item a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c4b5fd;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(124, 58, 237, 0.15);
}

.social-icon:hover {
    background: var(--gradient-primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    border-color: transparent;
}

.quick-links {
    list-style: none;
    padding: 0;
}

.quick-links li {
    margin-bottom: 0.75rem;
}

.quick-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}

.quick-links a:hover {
    color: #c4b5fd;
    padding-left: 5px;
}

.quick-links a.submit-btn {
    background: var(--gradient-primary);
    color: #fff !important;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-top: 0.5rem;
    display: inline-block;
}

.quick-links a.submit-btn:hover {
    opacity: 0.9;
    padding-left: 1rem;
    transform: translateY(-2px);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(124, 58, 237, 0.15);
    outline: none;
    background: rgba(30, 41, 59, 0.6);
    color: #fff;
    transition: all 0.3s;
}

.newsletter-form input:focus {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.15);
}

.newsletter-form button {
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    border: none;
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.message {
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    display: none;
}

.message.success {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.message.error {
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.app-download {
    background: rgba(124, 58, 237, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px dashed rgba(124, 58, 237, 0.2);
    margin-top: 1.5rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 4rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #c4b5fd;
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 1024px) {
    .content-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .content-left {
        order: unset;
        height: auto;
    }

    .content-right {
        order: unset;
        height: auto;
    }

    .content-left .featured-image {
        position: static;
        max-width: 500px;
        margin: 0 auto;
        height: auto;
    }

    .lyrics-recommendations-container {
        grid-template-columns: 1fr;
    }

    .sidebar-recommendations {
        position: static;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        padding: 2rem 1rem;
        min-height: auto;
    }

    .main-title,
    .gradient-title {
        font-size: 2.5rem;
        word-wrap: break-word;
    }

    .lyrics-content {
        padding: 1.5rem !important;
        width: 100% !important;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .content-title,
    .lyrics-title {
        font-size: 2rem;
        word-wrap: break-word;
    }

    pre {
        font-size: 1rem;
        white-space: pre-wrap;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .lyrics-content-block {
        font-size: 1rem;
    }

    /* Album Songs Mobile */
    .album-songs-section {
        padding: 1.5rem !important;
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .album-song-item {
        align-items: center;
        text-align: center;
        justify-content: center;
    }

    .album-song-item i {
        display: none;
    }

    .album-song-item span {
        white-space: normal !important;
        word-break: break-word;
    }

    .album-song-list {
        grid-template-columns: 1fr;
    }

    /* Report Section Fix */
    .report-lyrics {
        padding: 1.5rem !important;
    }

    /* Youtube Section Fix */
    .youtube-video {
        width: 100% !important;
        height: auto !important;
        padding-bottom: 56.25%;
    }

    .hero-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .lyrics-toggle-container {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .lyrics-toggle-btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 4rem 1.5rem 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        margin-top: 3rem;
    }

    .footer-links {
        gap: 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 400px) {
    footer {
        padding: 3rem 1rem 2rem !important;
    }

    .footer-container {
        gap: 2rem !important;
        grid-template-columns: 1fr !important;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 0.75rem;
    }

    .newsletter-form input {
        width: 100%;
    }

    .newsletter-form button {
        width: 100%;
    }

    .footer-links {
        gap: 0.75rem;
        font-size: 0.8rem;
    }

    .footer-column p {
        word-break: break-word;
    }
}

/* =========================================
   Mobile Layout Fixes (max 900px)
   ========================================= */
@media (max-width: 900px) {

    .lyrics-recommendations-container,
    .content-section {
        grid-template-columns: 100% !important;
        display: block !important;
    }

    .lyrics-content {
        padding: 1rem !important;
        margin-bottom: 2rem;
    }

    .content-left,
    .content-right {
        width: 100% !important;
        display: block !important;
    }

    .content-left {
        margin-bottom: 1.5rem !important;
    }

    .featured-image {
        position: relative !important;
        height: auto !important;
        overflow: hidden !important;
        border-radius: 12px !important;
    }

    .category-badge {
        display: inline-block !important;
        width: max-content !important;
        position: absolute !important;
        z-index: 50 !important;
        top: 10px !important;
        left: 10px !important;
        bottom: auto !important;
        right: auto !important;
    }

    .sidebar-recommendations {
        margin-top: 2rem !important;
    }

    /* Ad Layout Shift Prevention */
    .lyrics-recommendations-container,
    .lyrics-column,
    .recommendations-column,
    .lyrics-content,
    .youtube-video,
    .sidebar-recommendations,
    .album-songs-section,
    .report-lyrics,
    .you-might-like,
    .lyrics-grid-random,
    .content-left,
    .content-right,
    .lyrics-content-block,
    .sidebar-recommendations-list {
        max-width: 100% !important;
        width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }

    .adsbygoogle,
    ins.adsbygoogle,
    iframe[src*="googleads"],
    iframe[src*="doubleclick"],
    div[id^="google_ads"],
    div[id^="div-gpt-ad"] {
        max-width: 100% !important;
        width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    * {
        max-width: 100vw;
    }
}

/* =========================================
   Iframe & Video Overflow Prevention
   ========================================= */
iframe,
video,
.adsbygoogle {
    max-width: 100% !important;
    box-sizing: border-box;
}

/* =========================================
   Mobile Toggles
   ========================================= */
@media (max-width: 480px) {
    .lyrics-toggle-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
        width: 100%;
    }
    .lyrics-toggle-container {
        gap: 0.35rem;
        padding: 0 5px;
    }
}