:root {
    --color-bg: #0f0f0f;
    --color-surface: rgba(25, 25, 25, 0.8);
    --color-gold: #cfb53b;
    --color-gold-glow: rgba(207, 181, 59, 0.4);
    --color-neon-blue: #8b0000;
    --color-neon-glow: rgba(139, 0, 0, 0.4);
    --color-text: #f0f0f0;
    --color-text-muted: #b3b3b3;
    --color-white: #fdfdfd;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition-fast: 0.3s ease;
    --transition-slow: 0.5s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
    font-size: 18px; /* Maior legibilidade para 40+ */
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-weight: 700;
}

.highlight-text {
    color: var(--color-gold);
    font-weight: 600;
}

/* Layout Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.section {
    padding: 100px 0;
    position: relative;
    width: 100%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Glassmorphism Classes */
.glass-effect {
    background: rgba(11, 11, 11, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card {
    background: rgba(20, 20, 20, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--color-gold), #b8860b);
    color: #000;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--color-gold-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--color-gold-glow);
    background: linear-gradient(135deg, #e6c253, #d4af37);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-fast);
}

.header.scrolled {
    background: rgba(11, 11, 11, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
    transition: var(--transition-fast);
}

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

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-neon-blue);
    transition: var(--transition-fast);
    box-shadow: 0 0 10px var(--color-neon-glow);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-neon-blue);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--color-gold);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url('bg.png') no-repeat center center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11,11,11,0.5) 0%, rgba(11,11,11,0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: left;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease forwards;
}

.hero-title .hero-highlight {
    color: var(--color-gold);
    font-size: 2.5rem;
    font-family: var(--font-body);
    font-weight: 300;
    letter-spacing: 4px;
    text-shadow: 0 0 20px var(--color-gold-glow);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeInUp 1.2s ease forwards;
}

/* Player Section */
.player-section {
    background-color: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.glass-player {
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(139, 0, 0, 0.1);
}

.player-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: var(--color-neon-blue);
    filter: blur(100px);
    opacity: 0.15;
    z-index: 0;
    transition: opacity 0.5s ease;
}

.glass-player.playing .player-glow {
    opacity: 0.3;
    animation: pulseGlow 3s infinite alternate;
}

/* Modern Player Layout */
.now-playing-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.album-cover-container {
    width: 250px;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    position: relative;
    background-color: #111;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.album-cover-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.album-cover-container img[src="logo.png"] {
    object-fit: contain;
    padding: 30px;
}

.album-cover-container.updating {
    opacity: 0;
    transform: scale(0.95);
}

.track-info-container {
    text-align: center;
    width: 100%;
}

.track-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--color-white);
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
    line-height: 1.2;
    font-family: var(--font-body);
}

.track-artist {
    font-size: 1.2rem;
    color: var(--color-gold);
    margin-bottom: 15px;
    font-weight: 400;
}

.track-meta {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 12px;
    border-radius: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.player-controls {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 10px;
}

.play-pause-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-gold);
    color: #000;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    box-shadow: 0 0 15px var(--color-gold-glow);
}

.play-pause-btn:hover {
    transform: scale(1.1);
    background: #e6c253;
    box-shadow: 0 0 25px var(--color-gold-glow);
}

.modern-play-btn {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 150px;
}

.volume-control i {
    color: var(--color-neon-blue);
    font-size: 1.2rem;
    cursor: pointer;
}

.volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-neon-blue);
    cursor: pointer;
    box-shadow: 0 0 10px var(--color-neon-glow);
}

/* Programming Section */
.programming-section {
    background-color: var(--color-bg);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.program-card {
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    background: rgba(30, 30, 30, 0.8);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-icon {
    font-size: 2.5rem;
    color: var(--color-neon-blue);
    margin-bottom: 20px;
    text-shadow: 0 0 15px var(--color-neon-glow);
}

.program-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--color-white);
}

.program-time {
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.program-desc {
    color: var(--color-text-muted);
}

/* About Section */
.about-section {
    background: linear-gradient(180deg, var(--color-bg) 0%, #050505 100%);
    text-align: center;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Footer Section */
.footer {
    background-color: #050505;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 60px 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}

.footer-slogan {
    color: var(--color-text-muted);
    font-style: italic;
    margin-bottom: 15px;
}

.footer-location {
    color: var(--color-neon-blue);
    font-size: 0.9rem;
}
.footer-location i {
    margin-right: 8px;
}

.social-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-weight: 400;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--color-gold);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--color-gold-glow);
    border-color: var(--color-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

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

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulseGlow {
    from {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(1);
    }
    to {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }

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

    .nav-menu {
        display: none;
        width: 100%;
        position: absolute;
        top: 80px;
        left: 0;
        background: rgba(11, 11, 11, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .nav-menu.active {
        display: block;
        animation: fadeIn 0.3s ease;
    }

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

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-title .hero-highlight {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Tablet / Sub-desktop Devices */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-title .hero-highlight {
        font-size: 2.2rem;
    }
    
    .glass-player {
        padding: 30px;
    }
}

/* Small Smartphone Devices */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-title .hero-highlight {
        font-size: 1.4rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    
    .btn-primary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .glass-player {
        padding: 20px;
    }
    
    .play-pause-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* =========================================
   Internal Pages (Blog, Articles, Legal)
   ========================================= */

.page-header {
    padding-top: 150px;
    padding-bottom: 50px;
    background: linear-gradient(to bottom, rgba(15, 15, 15, 0.9) 0%, var(--color-bg) 100%), url('bg.png') no-repeat center center/cover;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.page-title {
    font-size: 3rem;
    color: var(--color-gold);
    text-shadow: 0 0 15px var(--color-gold-glow);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    font-weight: 300;
}

.content-section {
    padding: 60px 0;
    background-color: var(--color-bg);
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(20, 20, 20, 0.6);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.article-content h2 {
    font-size: 2rem;
    color: var(--color-gold);
    margin-top: 40px;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.article-content h3 {
    font-size: 1.5rem;
    color: var(--color-white);
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 25px;
    text-align: justify;
}

.article-content ul, .article-content ol {
    margin-bottom: 25px;
    padding-left: 20px;
    font-size: 1.1rem;
    color: var(--color-text);
}

.article-content li {
    margin-bottom: 10px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 30px;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 30px;
    transition: var(--transition-fast);
}

.back-link:hover {
    color: #e6c253;
    transform: translateX(-5px);
}

/* =========================================
   Cookie Banner
   ========================================= */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 9999;
    padding: 15px 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
    transition: opacity 0.5s ease;
}

#cookie-banner .cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

#cookie-banner p {
    font-size: 0.95rem;
    color: var(--color-text);
    margin: 0;
}

#cookie-banner a {
    color: var(--color-gold);
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    #cookie-banner .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

/* =========================================
   Lyrics & History & Trivia (Restored)
   ========================================= */

/* Action Button */
.action-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
    font-family: var(--font-body);
    font-size: 0.9rem;
}
.action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* Extras Grid (History & Trivia) */
.player-extras-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
    width: 100%;
}
@media screen and (min-width: 768px) {
    .player-extras-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.history-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.history-item:last-child {
    border-bottom: none;
}
.history-cover {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}
.history-details {
    flex-grow: 1;
    text-align: left;
}
.history-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-white);
}
.history-artist {
    font-size: 0.85rem;
    color: var(--color-gold);
}
.history-time {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}
.empty-history {
    color: var(--color-text-muted);
    font-style: italic;
    text-align: center;
    padding: 20px 0;
}

/* Trivia */
.trivia-text {
    font-size: 1.05rem;
    color: var(--color-text);
    text-align: center;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.trivia-text.fade-out {
    opacity: 0;
}

/* Lyrics Modal */
.lyrics-modal {
    display: none;
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    z-index: 2000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    flex-direction: column;
    max-height: 85vh;
}
.lyrics-modal.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}
.lyrics-modal.minimized {
    height: auto !important;
    max-height: none !important;
    bottom: 20px !important;
    top: auto !important;
    right: 20px !important;
    left: auto !important;
    transform: none !important;
    width: 300px !important;
}
.lyrics-modal.minimized .lyrics-body {
    display: none;
}
.lyrics-modal.maximized {
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100vh !important;
    max-height: 100vh !important;
    transform: none !important;
    border-radius: 0;
}
.lyrics-titlebar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: linear-gradient(90deg, rgba(20,20,20,1) 0%, rgba(40,40,40,1) 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    cursor: move;
    user-select: none;
}
.lyrics-titlebar-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-gold);
    font-weight: 600;
    font-size: 1.1rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.lyrics-titlebar-controls {
    display: flex;
    gap: 15px;
}
.lyrics-ctrl-btn {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
}
.lyrics-ctrl-btn:hover {
    color: var(--color-white);
}
.lyrics-ctrl-close:hover {
    color: #ff4c4c;
}
.lyrics-body {
    padding: 20px;
    overflow-y: auto;
    flex-grow: 1;
}
.lyrics-container {
    display: flex;
    gap: 30px;
}
.lyrics-col {
    flex: 1;
}
.lyrics-lang-title {
    font-size: 1.1rem;
    color: var(--color-neon-blue);
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 5px;
}
.lyrics-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text);
    white-space: pre-line;
}
@media screen and (max-width: 768px) {
    .lyrics-container {
        flex-direction: column;
    }
}
