/**
 * Maitri Tunes - Song Page Styles
 * Used for both karaoke (synced lyrics) and standard song views
 * Version: 1.0.0
 */

:root {
    --color-deep-purple: #8b3a62;
    --color-royal-purple: #b8336a;
    --color-terracotta: #c1666b;
    --color-sunset-orange: #ff6b6b;
    --color-warm-pink: #ee5a6f;
    --color-gold: #f4d03f;
    --color-soft-gold: #ffd89b;
    --color-deep-blue: #2c3e50;
    --color-warm-white: #fff8f0;
    --gradient-primary: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 50%, #c1666b 100%);
    --gradient-deep: linear-gradient(135deg, #ff6b6b 0%, #c1666b 50%, #8b3a62 100%);
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
    --font-hindi: 'Noto Sans Devanagari', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Hindi/Devanagari text styling */
.lang-hi, [lang="hi"] {
    font-family: var(--font-hindi);
}

/* ===================================
   HERO SECTION - COVER & PLAYER
   =================================== */

.song-hero {
    min-height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--gradient-deep);
    overflow: hidden;
}

.song-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 107, 107, 0.15) 0%, transparent 50%);
    animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.song-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 600px;
    width: 100%;
}

/* Cover Art with Glow Effect */
.cover-container {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: visible;
}

.cover-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, rgba(255, 107, 107, 0.2) 50%, transparent 70%);
    border-radius: 50%;
    animation: coverGlow 3s ease-in-out infinite;
    filter: blur(20px);
}

@keyframes coverGlow {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 0.9; }
}

.cover-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.song-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #fff 0%, #f4d03f 50%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.song-artist {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-weight: 300;
}

/* ===================================
   NOW PLAYING INDICATOR
   =================================== */

.now-playing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.now-playing.visible {
    opacity: 1;
}

.now-playing-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 20px;
}

.now-playing-bar {
    width: 4px;
    background: linear-gradient(to top, #f4d03f, #ff6b6b);
    border-radius: 2px;
    animation: soundBars 0.8s ease-in-out infinite;
}

.now-playing-bar:nth-child(1) { height: 60%; animation-delay: 0s; }
.now-playing-bar:nth-child(2) { height: 100%; animation-delay: 0.1s; }
.now-playing-bar:nth-child(3) { height: 40%; animation-delay: 0.2s; }
.now-playing-bar:nth-child(4) { height: 80%; animation-delay: 0.3s; }
.now-playing-bar:nth-child(5) { height: 50%; animation-delay: 0.4s; }

@keyframes soundBars {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.5); }
}

.now-playing-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===================================
   AUDIO PLAYER
   =================================== */

.song-player {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 1.5rem 2rem;
    margin: 0 auto;
    max-width: 500px;
}

.player-main-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.player-btn {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: transparent;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.play-pause-btn {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f4d03f 0%, #e9b44c 100%);
    border: none;
    color: #8b3a62;
    font-size: 1.8rem;
    box-shadow: 0 8px 30px rgba(244, 208, 63, 0.4);
}

.play-pause-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(244, 208, 63, 0.6);
}

.play-pause-btn .fa-play {
    padding-left: 4px;
}

.timeline-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.time-display {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    min-width: 45px;
    font-variant-numeric: tabular-nums;
}

.progress-track {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #f4d03f 0%, #ff6b6b 100%);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
}

/* ===================================
   PLAYER OPTIONS ROW
   =================================== */

.player-options {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.player-options label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.translation-dropdown {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 0.5rem 1.25rem;
    color: white;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.5rem;
}

.translation-dropdown:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.translation-dropdown:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 2px rgba(244, 208, 63, 0.3);
}

.translation-dropdown option {
    background: #1a1a2e;
    color: white;
}

/* Small player buttons (volume, repeat, download) */
.player-option-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.player-option-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: scale(1.05);
}

.player-option-btn.active {
    background: rgba(244, 208, 63, 0.2);
    border-color: rgba(244, 208, 63, 0.4);
    color: var(--color-gold);
}

.player-option-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.player-option-btn.disabled:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.1);
}

/* Volume slider */
.volume-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.volume-slider {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30, 30, 50, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.volume-wrapper:hover .volume-slider,
.volume-slider:hover {
    opacity: 1;
    visibility: visible;
}

.volume-slider input[type="range"] {
    writing-mode: vertical-lr;
    direction: rtl;
    width: 6px;
    height: 80px;
    appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    cursor: pointer;
}

.volume-slider input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--color-gold);
    border-radius: 50%;
    cursor: pointer;
}

/* ===================================
   LYRICS SECTION - KARAOKE MODE
   =================================== */

.lyrics-section {
    padding: 3rem 1rem 4rem;
    background: linear-gradient(180deg, #16213e 0%, #0f0f23 100%);
    min-height: 50vh;
}

.lyrics-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.lyrics-scroll {
    max-height: 60vh;
    overflow-y: auto;
    padding: 2rem;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(244, 208, 63, 0.5) transparent;
}

.lyrics-scroll::-webkit-scrollbar {
    width: 6px;
}

.lyrics-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.lyrics-scroll::-webkit-scrollbar-thumb {
    background: rgba(244, 208, 63, 0.5);
    border-radius: 3px;
}

/* Individual Lyric Lines */
.lyric-line {
    padding: 0.8rem 1.5rem;
    margin: 0.3rem 0;
    border-radius: 12px;
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.4s ease;
    cursor: pointer;
    text-align: center;
}

.lyric-line:hover {
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.05);
}

/* Original text within lyric line */
.lyric-original {
    display: block;
}

/* Translation text within lyric line */
.lyric-translation {
    display: block;
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 0.35rem;
    font-style: italic;
}

/* Active/Current Line */
.lyric-line.active {
    color: white;
    font-size: 1.4rem;
    font-weight: 500;
    background: linear-gradient(135deg, rgba(244, 208, 63, 0.2) 0%, rgba(255, 107, 107, 0.15) 100%);
    border: 1px solid rgba(244, 208, 63, 0.3);
    box-shadow: 0 0 30px rgba(244, 208, 63, 0.2);
    transform: scale(1.02);
}

.lyric-line.active .lyric-translation {
    color: rgba(255, 255, 255, 0.7);
}

/* Passed Lines */
.lyric-line.passed {
    color: rgba(255, 255, 255, 0.5);
}

.lyric-line.passed .lyric-translation {
    color: rgba(255, 255, 255, 0.4);
}

/* Section Headers */
.lyric-section-header {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(244, 208, 63, 0.6);
    margin: 2rem 0 1rem;
    text-align: center;
    font-style: italic;
}

/* Chorus styling */
.lyric-line.chorus {
    font-style: italic;
}

.lyric-line.chorus.active {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.25) 0%, rgba(238, 90, 111, 0.2) 100%);
    border-color: rgba(255, 107, 107, 0.4);
}

/* Bridge/Spoken styling */
.lyric-line.spoken {
    font-style: italic;
    font-size: 1.1rem;
}

/* Empty line spacer */
.lyric-spacer {
    height: 1.5rem;
}

/* ===================================
   LYRICS SECTION - STATIC MODE
   (For songs without karaoke_data)
   =================================== */

.static-lyrics {
    padding: 2rem;
    text-align: center;
}

.static-lyrics-content {
    font-size: 1.15rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.75);
    white-space: pre-line;
    font-family: var(--font-serif);
}

.static-lyrics-content p {
    margin-bottom: 1.5rem;
}

/* No Lyrics Available Message */
.no-lyrics-message {
    text-align: center;
    padding: 4rem 2rem;
    color: rgba(255, 255, 255, 0.5);
}

.no-lyrics-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.no-lyrics-message p {
    font-size: 1.1rem;
    font-style: italic;
}

/* ===================================
   FLOATING PARTICLES ANIMATION
   =================================== */

.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    font-size: 1.2rem;
    opacity: 0.2;
    animation: floatParticle 20s ease-in-out infinite;
}

@keyframes floatParticle {
    0%, 100% { 
        transform: translateY(0) translateX(0) rotate(0deg); 
        opacity: 0.15; 
    }
    25% { 
        transform: translateY(-20px) translateX(10px) rotate(5deg); 
        opacity: 0.25; 
    }
    50% { 
        transform: translateY(-35px) translateX(-5px) rotate(-3deg); 
        opacity: 0.3; 
    }
    75% { 
        transform: translateY(-15px) translateX(-10px) rotate(3deg); 
        opacity: 0.2; 
    }
}

/* ===================================
   EXPANDABLE CONTENT SECTION
   =================================== */

.expandable-content-section {
    background: linear-gradient(180deg, #0f0f23 0%, #1a1a2e 100%);
    padding: 0 1rem 2rem;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* Expand Toggle Button */
.expand-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.25rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-bottom: 0;
}

.expand-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(244, 208, 63, 0.3);
}

.expand-toggle i {
    transition: transform 0.3s ease;
}

.expand-toggle.expanded i {
    transform: rotate(180deg);
}

/* Expandable Content */
.expandable-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.expandable-content.expanded {
    max-height: 3000px;
    padding-top: 2rem;
}

/* ===================================
   RELATED SONGS SECTION (Standalone)
   =================================== */

.related-songs-section {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    padding: 3rem 1rem;
}

/* ===================================
   SUBSCRIBE SECTION (Standalone)
   =================================== */

.subscribe-section {
    background: linear-gradient(180deg, #16213e 0%, #1a1a2e 100%);
    padding: 3rem 1rem 4rem;
}

/* ===================================
   REFLECTION/BLOG BLOCK
   =================================== */

/* Reflection/Blog Block */
.reflection-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.reflection-block h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.reflection-block h3 i {
    font-size: 1.2rem;
}

.reflection-content {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1.05rem;
}

.reflection-content p {
    margin-bottom: 1rem;
}

.reflection-content p:last-child {
    margin-bottom: 0;
}

/* Related Songs */
.related-songs-block {
    margin-bottom: 2rem;
}

.related-songs-block h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    text-align: center;
}

.related-songs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.25rem;
}

.related-song-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    text-decoration: none;
    color: white;
}

.related-song-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    color: white;
}

.related-song-image {
    aspect-ratio: 1;
    overflow: hidden;
}

.related-song-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-song-card:hover .related-song-image img {
    transform: scale(1.05);
}

.related-song-info {
    padding: 0.75rem;
}

.related-song-title {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.related-song-artist {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Subscribe Block */
.subscribe-block {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(244, 208, 63, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.subscribe-block h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.subscribe-block p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.subscribe-form {
    display: flex;
    gap: 0.75rem;
    max-width: 450px;
    margin: 0 auto;
}

.subscribe-input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-family: var(--font-sans);
}

.subscribe-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.subscribe-input:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.15);
}

.subscribe-btn {
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #f4d03f 0%, #e9b44c 100%);
    border: none;
    border-radius: 12px;
    color: #8b3a62;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 208, 63, 0.4);
}

.subscribe-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.subscribe-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    display: none;
}

.subscribe-message.success {
    display: block;
    background: rgba(46, 213, 115, 0.15);
    border: 1px solid rgba(46, 213, 115, 0.3);
    color: #2ed573;
}

.subscribe-message.error {
    display: block;
    background: rgba(255, 107, 107, 0.15);
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
}

/* ===================================
   FOOTER
   =================================== */

.song-footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    text-align: center;
}

.song-footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.song-footer a:hover {
    color: #f4d03f;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    margin-bottom: 1rem;
}

.back-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-credit {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1rem;
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 768px) {
    .song-hero {
        min-height: auto;
        padding: 3rem 1rem;
    }
    
    .cover-container {
        width: 200px;
        height: 200px;
    }
    
    .song-title {
        font-size: 1.8rem;
    }
    
    .song-artist {
        font-size: 1.1rem;
    }
    
    .song-player {
        padding: 1rem 1.5rem;
    }
    
    .player-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .play-pause-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .lyrics-scroll {
        max-height: 50vh;
        padding: 1rem;
    }
    
    .lyric-line {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }
    
    .lyric-line.active {
        font-size: 1.15rem;
    }
    
    .player-options {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    .related-songs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
