@font-face {
    font-family: 'JD_Regular';
    src: url('../assets/JDRegular.woff2') format('woff2'),
        url('../assets/JDRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'JD_Bold';
    src: url('../assets/JDBold.woff2') format('woff2'),
        url('../assets/JDBold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
#lyrics-content.preview .lyrics-word.lyrics-space::after {
    content: none !important;
    display: none !important;
}
#lyrics-content.preview .lyrics-word.lyrics-space {
   opacity: 0;
}
#lyrics-content.preview {
    background: #000;
    position: relative;
    pointer-events: none;
    --offset-x: 10px;
    --offset-y: 10px;
}
#lyrics-content.preview .lyrics-word {
    color: #fff !important;
    border: none;
    background: none;
}
#lyrics-content.preview[data-theme="jd2014"] .lyrics-word {
    font-family: JD_Regular, Arial, Helvetica, sans-serif !important;
    font-size: 28px;
    letter-spacing: 0.03em;
}
#lyrics-content.preview[data-theme="jd2014"] .lyrics-word:hover {
    border: 1px solid #ffffff00 !important;
}
#lyrics-content.preview[data-theme="jd2014"] .lyrics-line {
    display: none;
    width: calc(100% - 10px);
    overflow: hidden;
    white-space: nowrap;
}
#lyrics-content.preview[data-theme="jd2014"] .playing-line {
    z-index: 999;
    display: flex;
    position: absolute;
    top: calc(0px + var(--offset-y));
    left: calc(0px + var(--offset-x));
    animation: playing-line 200ms linear;
}
@keyframes playing-line {
    from {
        top: calc(30px + var(--offset-y));
        opacity: 0.5;
    }
    to {
        top: calc(0px + var(--offset-y));
        opacity: 1;
    }
}
#lyrics-content.preview[data-theme="jd2014"] .playing-line .done-word {
    color: #fff;
}
#lyrics-content.preview[data-theme="jd2014"] .next-playing-line {
    z-index: 0;
    display: flex;
    position: absolute;
    top: calc(30px + var(--offset-y));
    left: calc(0px + var(--offset-x));
    opacity: 0;
    animation: next-line 200ms 100ms linear forwards;
}
#lyrics-content.preview[data-theme="jd2014"] .next-playing-line .lyrics-word {
    color: #ffffff72 !important;
}
@keyframes next-line {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
#lyrics-content.preview[data-theme="jd2014"] .past-word {
    color: rgb(44, 150, 216) !important;
}
#lyrics-content.preview[data-theme="jd2014"] .playing-word {
    background: linear-gradient(90deg, rgb(44, 150, 216) 50%, #fff 50%);
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-size: 200% 100% !important;
    animation: word-playing var(--duration) linear forwards;
}
#lyrics-content.preview[data-theme="jd2014"].paused .playing-word {
    animation-play-state: paused !important;
}
@keyframes word-playing {
    0% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
#lyrics-content.preview[data-theme="spotify"] {
    background: rgb(44, 119, 216);
    gap: 14px;
    padding-left: 24px;
    padding-right: 24px;
    width: calc(100% - 24px * 0);
}
#lyrics-content.preview[data-theme="spotify"] .lyrics-word {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 28px;
}
#lyrics-content.preview[data-theme="spotify"] .lyrics-line .lyrics-word {
    color: #000 !important;
}
#lyrics-content.preview[data-theme="spotify"] .lyrics-line .past-word {
    color: #fff !important;
}
#lyrics-content.preview[data-theme="spotify"] .playing-line .lyrics-word {
    color: #ffffff50 !important;
}
#lyrics-content.preview[data-theme="spotify"] .playing-line .past-word,
#lyrics-content.preview[data-theme="spotify"] .playing-line .playing-word {
    color: #fff !important;
}
#lyrics-content.preview[data-theme="karafun"] {
    --offset-x: 10px;
    --offset-y: 40%;
    background: linear-gradient(135deg, #0c0e2c, #161d64, #09326e, #0d0f31);
    background-size: 400% 400%;
    animation: karaokeGradient 10s ease infinite;
    overflow: hidden;
    font-family: 'JD_Bold', 'Arial Black', sans-serif !important;
}
@keyframes karaokeGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
#lyrics-content.preview[data-theme="karafun"] .lyrics-word {
    font-family: 'JD_Bold', 'Arial Black', sans-serif !important;
    font-weight: normal;
    font-size: 42px;
    color: #ffffff;
    filter: drop-shadow(3px 3px 0px rgba(0,0,0,0.5));
    transform: none !important;
    transition: none; 
}
#lyrics-content.preview[data-theme="karafun"] .lyrics-line {
    display: none;
    width: calc(100% - 40px);
    overflow: visible;
    white-space: nowrap;
    text-align: center;
    justify-content: center;
    flex-wrap: nowrap;
}
#lyrics-content.preview[data-theme="karafun"] .playing-line {
    z-index: 999;
    display: flex;
    position: absolute;
}
#lyrics-content.preview[data-theme="karafun"] .lyrics-line.odd {
    top: calc(0px + var(--offset-y));
    left: 0; right: 0; margin: auto;
}
#lyrics-content.preview[data-theme="karafun"] .lyrics-line.even {
    top: calc(80px + var(--offset-y)); 
    left: 0; right: 0; margin: auto;
}
#lyrics-content.preview[data-theme="karafun"] .previous-playing-line {
    display: flex;
    position: absolute;
    left: 0; right: 0; margin: auto;
    animation: karafun-fade-out 0.4s ease-out forwards;
}
#lyrics-content.preview[data-theme="karafun"] .next-playing-line {
    display: flex;
    position: absolute;
    left: 0; right: 0; margin: auto;
    opacity: 0;
    animation: karafun-fade-in 0.5s 0.2s ease-out forwards;
}
@keyframes karafun-fade-out {
    to { opacity: 0; transform: scale(0.95); }
}
@keyframes karafun-fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
#lyrics-content.preview[data-theme="karafun"] .past-word {
    color: #0b82e4 !important; 
    -webkit-text-fill-color: initial !important;
    background: none !important;
}
#lyrics-content.preview[data-theme="karafun"] .playing-word {
    background: linear-gradient(90deg, #0b82e4 50%, #ffffff 50%);
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    background-size: 200% 100% !important;
    background-position: 100% 0%;
    animation: karafun-fill var(--duration) linear forwards;
    transform: none !important;
}
@keyframes karafun-fill {
    0% { background-position: 100% 0%; }
    100% { background-position: 0% 0%; }
}
#lyrics-content.preview[data-theme="karafun"].paused .playing-word {
    animation-play-state: paused !important;
}
@keyframes word-playing {
    0% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
#lyrics-content.preview[data-theme="blue-animated-fill"] {
    background: #0f172a;
    padding: 45px 40px;
    gap: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
}
#lyrics-content.preview[data-theme="blue-animated-fill"] .lyrics-line {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    color: #A0AEC0;
    font-weight: 800;
    opacity: 0.7;
    transition: all 0.4s ease-out;
}
#lyrics-content.preview[data-theme="blue-animated-fill"] .lyrics-word {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: clamp(20px, 1.5vw, 28px);
    line-height: 1.4;
    font-weight: inherit;
    background: none;
    -webkit-text-fill-color: inherit;
    animation: none;
    text-shadow: none;
    transition: font-weight 0.1s linear, color 0.1s linear;
}
#lyrics-content.preview[data-theme="blue-animated-fill"] .playing-line {
    opacity: 1 !important;
    color: #FFFFFF !important;
    font-weight: 800;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}
#lyrics-content.preview[data-theme="blue-animated-fill"] .playing-line .lyrics-word:not(.past-word):not(.playing-word) {
    color: #FFFFFF !important;
    -webkit-text-fill-color: #FFFFFF !important;
    background: none !important;
    font-weight: 800 !important;
}
#lyrics-content.preview[data-theme="blue-animated-fill"] .past-word {
    color: #3b82f6 !important;
    -webkit-text-fill-color: #3b82f6 !important;
    background: none !important;
    text-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
    font-weight: 800 !important;
}
#lyrics-content.preview[data-theme="blue-animated-fill"] .playing-line .playing-word {
    background: linear-gradient(90deg, #3b82f6 45%, #93c5fd 50%, #FFFFFF 55%);
    background-size: 200% 100%;
    background-position: 100% 50%;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    font-weight: 800 !important;
    animation: word-playing var(--duration) linear forwards !important;
}
#lyrics-content.preview[data-theme="jdnow2023"] {
    --offset-x: 10px;
    --offset-y: 10px;
    background: #000;
    position: relative;
    pointer-events: none;
}
#lyrics-content.preview[data-theme="jdnow2023"] .lyrics-word {
    font-family: JD_Bold, Arial, Helvetica, sans-serif !important;
    font-size: 28px;
    letter-spacing: 0.03em;
    font-weight: 800;
    font-size: 28px;
    color: #fff;
    border: none;
    background: none;
    user-select: none;
    transition: all 0.2s ease;
}
#lyrics-content.preview[data-theme="jdnow2023"] .lyrics-line {
    display: none;
    position: absolute;
    width: calc(100% - 10px);
    overflow: hidden;
    white-space: nowrap;
}
#lyrics-content.preview[data-theme="jdnow2023"] .playing-line {
    z-index: 2;
    display: flex;
    top: calc(0px + var(--offset-y));
    left: calc(0px + var(--offset-x));
    animation: playing-line 200ms ease;
}
#lyrics-content.preview[data-theme="jdnow2023"] .next-playing-line {
    z-index: 1;
    display: flex;
    top: calc(30px + var(--offset-y));
    left: calc(0px + var(--offset-x));
    opacity: 0;
    animation: next-line 200ms 100ms linear forwards;
}
#lyrics-content.preview[data-theme="jdnow2023"] .lyrics-word:hover {
    border: 1px solid #ffffff00 !important;
}
#lyrics-content.preview[data-theme="jdnow2023"] .playing-line .past-word {
    color: #3b82f6 !important;
}
#lyrics-content.preview[data-theme="jdnow2023"] .playing-line .playing-word {
    background: linear-gradient(90deg, #3b82f6 50%, #ffffff 50%);
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-size: 200% 100%;
    animation: word-playing var(--duration, 1s) linear forwards;
}
#lyrics-content.preview[data-theme="jdnow2023"] .playing-line .lyrics-word:not(.past-word):not(.playing-word) {
    color: #ffffff !important;
}
#lyrics-content.preview[data-theme="jdnow2023"] .next-playing-line .lyrics-word {
    color: #4b5563 !important;
}
#lyrics-content.preview[data-theme="jdnow2023"].paused .playing-word {
    animation-play-state: paused !important;
}
@keyframes playing-line {
    from {
        top: calc(30px + var(--offset-y));
        opacity: 0.5;
    }
    to {
        top: calc(0px + var(--offset-y));
        opacity: 1;
    }
}
@keyframes next-line {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes word-playing {
    0% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
#lyrics-content.preview[data-theme="neon-pulse"] {
    background: #000;
    padding: 20px;
    gap: 10px;
}
#lyrics-content.preview[data-theme="neon-pulse"] .lyrics-line {
    justify-content: center;
    flex-wrap: wrap;
}
#lyrics-content.preview[data-theme="neon-pulse"] .lyrics-word {
    font-size: 32px;
    font-weight: bold;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #fff;
    transition: all 0.2s ease;
    text-shadow: 0 0 8px #0ff, 0 0 16px #0ff;
}
#lyrics-content.preview[data-theme="neon-pulse"] .playing-word {
    color: #0ff !important;
    animation: pulse-glow var(--duration, 1s) ease-in-out forwards;
}
#lyrics-content.preview[data-theme="neon-pulse"] .past-word {
    color: #0ff;
    opacity: 0.5;
}
@keyframes pulse-glow {
    0% {
        text-shadow: 0 0 6px #0ff, 0 0 12px #0ff;
    }
    50% {
        text-shadow: 0 0 16px #0ff, 0 0 32px #0ff;
    }
    100% {
        text-shadow: 0 0 6px #0ff, 0 0 12px #0ff;
    }
}
#lyrics-content.preview[data-theme="citypop"] {
    background: #0e0b1c;
    padding: 30px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}
#lyrics-content.preview[data-theme="citypop"] .lyrics-line {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    text-align: center;
    filter: blur(2px);
    opacity: 0.3;
    transition: all 0.3s ease;
}
#lyrics-content.preview[data-theme="citypop"] .playing-line {
    filter: none !important;
    opacity: 1 !important;
    z-index: 2;
}
#lyrics-content.preview[data-theme="citypop"] .lyrics-word {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 32px;
    background: none;
    color: #e945d6;
    -webkit-text-fill-color: #e945d6;
    text-shadow: 0 0 3px #00000088;
    transition: all 0.2s ease;
}
#lyrics-content.preview[data-theme="citypop"] .past-word {
    color: #f072d3 !important;
    opacity: 0.6;
}
#lyrics-content.preview[data-theme="citypop"] .playing-word {
    background: linear-gradient(90deg, #f72fd0, #ffe0f3);
    background-size: 200% 100%;
    background-position: 100% 50%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent !important;
    animation: word-playing var(--duration, 1s) linear forwards;
    text-shadow: 0 0 6px #ff87f3, 0 0 12px #ffb7f8;
}
#lyrics-content.preview[data-theme="citypop"] .next-playing-line,
#lyrics-content.preview[data-theme="citypop"] .previous-playing-line {
    filter: blur(3px) brightness(0.5);
    opacity: 0.3;
}
#lyrics-content.preview[data-theme="frozen"] {
    background: radial-gradient(circle, #0f2027, #203a43, #2c5364);
    gap: 10px;
    padding: 20px;
}
#lyrics-content.preview[data-theme="frozen"] .lyrics-line {
    justify-content: center;
    filter: drop-shadow(0 0 10px #ffffff44);
}
#lyrics-content.preview[data-theme="frozen"] .lyrics-word {
    font-size: 28px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s ease;
}
#lyrics-content.preview[data-theme="frozen"] .playing-word {
    background: linear-gradient(90deg, #6ed1f3 50%, #ffffff 50%);
    background-size: 200% 100%;
    background-position: 100% 50%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent !important;
    animation: word-playing var(--duration, 1s) linear forwards;
    text-shadow: 0 0 10px #aeefff, 0 0 20px #aeefff;
}
#lyrics-content.preview[data-theme="frozen"] .past-word {
    color: #6ed1f3;
    opacity: 0.8;
}
#lyrics-content.preview[data-theme="flash-strike"] {
    background: radial-gradient(circle at center, #111 60%, #000);
    padding: 20px;
    gap: 10px;
}
#lyrics-content.preview[data-theme="flash-strike"] .lyrics-line {
    justify-content: center;
    text-align: center;
}
#lyrics-content.preview[data-theme="flash-strike"] .lyrics-word {
    font-size: 28px;
    color: #666;
    transition: all 0.2s ease;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}
#lyrics-content.preview[data-theme="flash-strike"] .playing-word {
    color: #ff0;
    text-shadow: 0 0 8px #ff0, 0 0 15px #ff0;
    animation: flash var(--duration, 1s) ease-in-out forwards;
}
#lyrics-content.preview[data-theme="flash-strike"] .past-word {
    color: #ccc;
}
@keyframes flash {
    0% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 0.85;
        transform: scale(1);
    }
}
#lyrics-content.preview[data-theme="livepulse"] {
    background: radial-gradient(circle at center, #000000 0%, #0b0012 100%);
    background-size: 150% 150%;
    animation: bg-pulse 4s ease-in-out infinite;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    overflow: hidden;
}
@keyframes bg-pulse {
    0%,
    100% {
        background-color: #0b0012;
        box-shadow: inset 0 0 80px #7f00ff11;
    }
    50% {
        background-color: #1b0024;
        box-shadow: inset 0 0 120px #ff00c811;
    }
}
#lyrics-content.preview[data-theme="livepulse"] .lyrics-line {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 34px;
    font-family: 'Arial Black', sans-serif;
    color: #ffffff55;
    opacity: 0.25;
    filter: blur(1px);
    transition: all 0.3s ease;
    position: relative;
}
#lyrics-content.preview[data-theme="livepulse"] .playing-line {
    opacity: 1 !important;
    filter: none !important;
    color: #fff;
    font-size: 40px;
}
#lyrics-content.preview[data-theme="livepulse"] .playing-line::before,
#lyrics-content.preview[data-theme="livepulse"] .playing-line::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(to right, #ff00cc, #3333ff);
    box-shadow: 0 0 8px #ff00cc88, 0 0 12px #3333ff88;
    animation: pulsebar 2s infinite ease-in-out;
}
#lyrics-content.preview[data-theme="livepulse"] .playing-line::before {
    top: -12px;
}
#lyrics-content.preview[data-theme="livepulse"] .playing-line::after {
    bottom: -12px;
}
@keyframes pulsebar {
    0%,
    100% {
        opacity: 0.7;
        transform: scaleX(1);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.05);
    }
}
#lyrics-content.preview[data-theme="livepulse"] .lyrics-word {
    transition: all 0.2s ease;
    color: #ffffff88;
}
#lyrics-content.preview[data-theme="livepulse"] .past-word {
    color: #7f00ff !important;
    text-shadow: 0 0 5px #7f00ff88;
}
#lyrics-content.preview[data-theme="livepulse"] .playing-word {
    background: linear-gradient(90deg, #ff00cc, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent !important;
    background-size: 200% 100%;
    background-position: 100% 50%;
    animation: word-playing var(--duration, 1s) linear forwards;
    filter: drop-shadow(0 0 8px #ff00cc) drop-shadow(0 0 12px #3333ff);
}
@keyframes terminal-blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}
#lyrics-content.preview[data-theme="terminal"] {
    background: #000;
    padding: 20px;
    gap: 12px;
    font-family: 'Courier New', Courier, monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
}
#lyrics-content.preview[data-theme="terminal"] .lyrics-line {
    justify-content: flex-start;
    flex-wrap: wrap;
    opacity: 0.2;
    filter: blur(0.5px);
    text-shadow: 1px 0 1px #ff000080, -1px 0 1px #00ffff80;
    transition: opacity 0.4s ease, filter 0.4s ease, transform 0.4s ease;
}
#lyrics-content.preview[data-theme="terminal"] .playing-line {
    opacity: 1;
    filter: blur(0);
    text-shadow: none;
    transform: translateY(0);
}
#lyrics-content.preview[data-theme="terminal"] .next-playing-line {
    opacity: 0.4;
    filter: blur(0.2px);
}
#lyrics-content.preview[data-theme="terminal"] .previous-playing-line {
    opacity: 0;
    filter: blur(0.5px);
    transform: translateY(-15px);
}
#lyrics-content.preview[data-theme="terminal"] .lyrics-word {
    font-size: 30px;
    font-weight: bold;
    color: #444;
    transition: color 0.2s linear, text-shadow 0.2s linear;
    text-shadow: none !important;
}
#lyrics-content.preview[data-theme="terminal"] .playing-line .lyrics-word:not(.past-word):not(.playing-word) {
    color: #fff !important;
}
#lyrics-content.preview[data-theme="terminal"] .playing-word {
    background: none;
    color: #0f0 !important;
    text-shadow: 0 0 6px #0f0, 0 0 12px #0f0, 0 0 20px #0f0 !important;
    opacity: 0.9;
    transition: color 0.1s linear, text-shadow 0.1s linear;
}
#lyrics-content.preview[data-theme="terminal"] .playing-word::after {
    content: '_';
    animation: terminal-blink 600ms infinite step-end;
}
#lyrics-content.preview[data-theme="terminal"] .past-word {
    background: none;
    color: #0f0 !important;
    opacity: 0.7;
    text-shadow: none !important;
}
@keyframes glitch-word-fx {
    0%,
    100% {
        text-shadow: none;
        transform: none;
    }
    25% {
        text-shadow: 3px 0 0 #ff00ff, -3px 0 0 #00ffff;
        transform: translate(-2px, 1px) skew(-5deg);
    }
    50% {
        text-shadow: -3px 0 0 #ff00ff, 3px 0 0 #00ffff;
        transform: translate(2px, -1px) skew(5deg);
    }
    75% {
        text-shadow: 1px 0 0 #ff00ff, -1px 0 0 #00ffff;
        transform: translate(1px, 1px) skew(-2deg);
    }
}
#lyrics-content.preview[data-theme="glitch"] {
    background: #000;
    padding: 20px;
    gap: 12px;
    font-family: 'Impact', 'Arial Black', sans-serif;
    text-transform: uppercase;
    overflow: hidden;
}
#lyrics-content.preview[data-theme="glitch"] .lyrics-line {
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    width: 100%;
    opacity: 0.3;
    filter: blur(0.5px);
    transition: opacity 0.4s ease-out, filter 0.4s ease-out;
}
#lyrics-content.preview[data-theme="glitch"] .previous-playing-line {
    opacity: 0.3;
    filter: blur(0.5px);
    position: relative !important;
}
#lyrics-content.preview[data-theme="glitch"] .next-next-playing-line {
    opacity: 0.4;
    filter: blur(0.2px);
}
#lyrics-content.preview[data-theme="glitch"] .next-playing-line {
    opacity: 0.7;
    filter: none;
}
#lyrics-content.preview[data-theme="glitch"] .playing-line {
    opacity: 1 !important;
    filter: none !important;
}
#lyrics-content.preview[data-theme="glitch"] .lyrics-word {
    font-size: 34px;
    font-weight: bold;
    color: #fff;
    transition: color 0.1s linear, text-shadow 0.2s ease, font-family 0.1s linear;
}
#lyrics-content.preview[data-theme="glitch"] .playing-line .lyrics-word:not(.past-word):not(.playing-word) {
    color: #fff !important;
}
#lyrics-content.preview[data-theme="glitch"] .playing-word {
    font-family: 'Rubik Glitch', 'Impact', sans-serif;
    color: #00ffff !important;
    animation: glitch-word-fx 250ms steps(4, end) infinite;
}
#lyrics-content.preview[data-theme="glitch"] .past-word {
    font-family: 'Impact', 'Arial Black', sans-serif;
    color: #ff00ff !important;
    opacity: 0.8;
    text-shadow: -2px 0 0 #00ffff, 2px 0 0 #ff00ff;
    animation: none;
}
#lyrics-content.preview[data-theme="jd2014"] .playing-line .lyrics-word:not(.past-word):not(.playing-word),
#lyrics-content.preview[data-theme="karafun"] .playing-line .lyrics-word:not(.past-word):not(.playing-word),
#lyrics-content.preview[data-theme="jdnow2023"] .playing-line .lyrics-word:not(.past-word):not(.playing-word),
#lyrics-content.preview[data-theme="citypop"] .playing-line .lyrics-word:not(.past-word):not(.playing-word),
#lyrics-content.preview[data-theme="livepulse"] .playing-line .lyrics-word:not(.past-word):not(.playing-word),
#lyrics-content.preview[data-theme="frozen"] .playing-line .lyrics-word:not(.past-word):not(.playing-word) {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    background: none !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
}
#lyrics-content.preview[data-theme="jd2014"] .playing-word,
#lyrics-content.preview[data-theme="karafun"] .playing-word,
#lyrics-content.preview[data-theme="jdnow2023"] .playing-word,
#lyrics-content.preview[data-theme="citypop"] .playing-word,
#lyrics-content.preview[data-theme="livepulse"] .playing-word,
#lyrics-content.preview[data-theme="frozen"] .playing-word {
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    background-repeat: no-repeat !important;
    animation-fill-mode: forwards !important;
    will-change: background-position;
}
#lyrics-content.preview[data-theme="jd2014"] .playing-line .past-word:not(.playing-word),
#lyrics-content.preview[data-theme="jd2014"] .playing-line .done-word:not(.playing-word) {
    background: linear-gradient(90deg, rgb(44, 150, 216), rgb(44, 150, 216)) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}
#lyrics-content.preview[data-theme="karafun"] .playing-line .past-word:not(.playing-word),
#lyrics-content.preview[data-theme="karafun"] .playing-line .done-word:not(.playing-word) {
    background: linear-gradient(90deg, rgb(11, 130, 228), rgb(11, 130, 228)) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}
#lyrics-content.preview[data-theme="jdnow2023"] .playing-line .past-word:not(.playing-word),
#lyrics-content.preview[data-theme="jdnow2023"] .playing-line .done-word:not(.playing-word) {
    background: linear-gradient(90deg, #3b82f6, #3b82f6) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}
#lyrics-content.preview[data-theme="citypop"] .playing-line .past-word:not(.playing-word),
#lyrics-content.preview[data-theme="citypop"] .playing-line .done-word:not(.playing-word) {
    background: linear-gradient(90deg, #f072d3, #f072d3) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}
#lyrics-content.preview[data-theme="livepulse"] .playing-line .past-word:not(.playing-word),
#lyrics-content.preview[data-theme="livepulse"] .playing-line .done-word:not(.playing-word) {
    background: linear-gradient(90deg, #7f00ff, #7f00ff) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}
#lyrics-content.preview[data-theme="frozen"] .playing-line .past-word:not(.playing-word),
#lyrics-content.preview[data-theme="frozen"] .playing-line .done-word:not(.playing-word) {
    background: linear-gradient(90deg, #6ed1f3, #6ed1f3) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}
@keyframes jd-next-line-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes jd-fade-rise-in {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes jd2014-push-in {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes jd2014-push-out {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-30px);
        opacity: 0;
    }
}
#lyrics-content.preview[data-theme="jd2014"] .playing-line {
    animation: jd2014-push-in 300ms ease-out forwards !important;
}
#lyrics-content.preview[data-theme="jd2014"] .previous-playing-line {
    animation: jd2014-push-out 250ms ease-in forwards !important;
    position: absolute !important;
    z-index: -1 !important;
}
#lyrics-content.preview[data-theme="jd2014"] .next-playing-line {
    animation: jd-next-line-fade-in 300ms 150ms ease-out forwards !important;
}
#lyrics-content.preview[data-theme="jdnow2023"] {
    perspective: 400px !important;
}
@keyframes jd2023-fall-away-out {
    from {
        transform: rotateX(0deg) scale(1);
        opacity: 1;
    }
    to {
        transform: rotateX(-45deg) scale(0.85) translateY(-10px);
        opacity: 0;
    }
}
#lyrics-content.preview[data-theme="jdnow2023"] .lyrics-line {
    transition: none !important;
}
#lyrics-content.preview[data-theme="jdnow2023"] .playing-line {
    animation: jd-fade-rise-in 350ms cubic-bezier(0.25, 1, 0.5, 1) forwards !important;
    opacity: 1;
    transform: none !important;
}
#lyrics-content.preview[data-theme="jdnow2023"] .previous-playing-line {
    animation: jd2023-fall-away-out 400ms ease-in forwards !important;
    position: absolute !important;
    z-index: -1 !important;
    transform-origin: center center;
}
#lyrics-content.preview[data-theme="jdnow2023"] .next-playing-line {
    animation: jd-next-line-fade-in 300ms 100ms ease-out forwards !important;
    opacity: 0.6;
    transform: none !important;
}
#lyrics-content.preview.paused * {
    animation-play-state: paused !important;
    -webkit-animation-play-state: paused !important;
}
#lyrics-content.preview.paused[data-theme] .playing-line .playing-word,
#lyrics-content.preview.paused[data-theme] .next-playing-line .lyrics-word,
#lyrics-content.preview.paused[data-theme] .previous-playing-line .lyrics-word,
#lyrics-content.preview.paused .playing-line .playing-word,
#lyrics-content.preview.paused .playing-word {
    animation-play-state: paused !important;
    -webkit-animation-play-state: paused !important;
    transition: none !important; 
}
#lyrics-content.preview .visual-gap-collapse {
    position: relative !important;
    display: block !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    margin: 0 !important;
    margin-top: -20px !important;
    opacity: 0 !important;
    border: none !important;
    pointer-events: none !important;
    z-index: -100;
    overflow: hidden !important;
}
#lyrics-content.preview[data-theme="jd2014"] .lyrics-space,
#lyrics-content.preview[data-theme="jdnow2023"] .lyrics-space,
#lyrics-content.preview[data-theme="karafun"] .lyrics-space {
    position: absolute !important;
    visibility: hidden !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}
#lyrics-content.preview:not([data-theme="jd2014"]):not([data-theme="jdnow2023"]):not([data-theme="karafun"]) .lyrics-space {
    display: inline-block !important;
    width: 0 !important;
    min-width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}
#lyrics-content.preview:not([data-theme="jd2014"]):not([data-theme="jdnow2023"]):not([data-theme="karafun"]) .lyrics-line:has(> .lyrics-space:only-child) {
    min-height: 15px !important;
    height: 15px !important;
    padding: 0 !important;
    margin: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
#lyrics-content.preview:not([data-theme="jd2014"]):not([data-theme="jdnow2023"]):not([data-theme="karafun"]) .lyrics-line:has(> .lyrics-space:only-child) + .lyrics-line:has(> .lyrics-space:only-child) {
    min-height: 0 !important;
    height: 0 !important;
    margin-top: -14px !important; 
    overflow: hidden !important;
}
#lyrics-content.preview.syllabic-active .lyrics-word.lyrics-space {
    min-width: 0 !important;
    width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0 !important;
}
