/* --- 全局和基础样式 --- */

/* CSS 变量定义 - 更新为近黑色背景 */
:root {
    /* 黑金颜色方案 - 近黑背景 */
    --primary-color: #daa520; /* 主要金色 (Goldenrod) */
    --secondary-color: #b8860b; /* 暗金色 (DarkGoldenrod) */
    --background-color: #121212; /* 新的主要背景色 (近黑) */
    --surface-color: #1f1f1f; /* 新的表面/卡片背景色 (深灰) */
    --text-color: #f5f5f5; /* 主要文字颜色 (浅白) */
    --text-secondary-color: #a0a0a0; /* 次要文字颜色 (灰色) */
    --border-color: #333333; /* 新的边框颜色 (深灰) */
    --button-text-color: #121212; /* 新的按钮文字颜色 */
    --white-color: #ffffff;
    /* 字体保持不变 */
    --font-family-sans: 'Poppins', sans-serif;
    --font-family-logo: 'Raleway', sans-serif;
}

/* 基础重置和盒子模型设置 */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* HTML 和 Body 基础样式 */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family-sans);
    font-weight: 300;
    line-height: 1.7;
    /* 更新背景为近黑色 */
    background-color: var(--background-color);
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

/* 链接样式 */
a {
    color: var(--text-secondary-color); /* 链接使用次要灰色 */
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: var(--primary-color); /* 悬停时变为金色 */
}

/* 标题样式 */
h1, h2, h3 {
    margin-bottom: 1.2rem;
    line-height: 1.4;
    font-weight: 600;
    /* 去掉之前的文字阴影，黑金风格通常更锐利 */
    /* text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3); */
}
h1 {
    font-size: 2.8rem;
    color: var(--text-color); /* H1 使用主要文字颜色 */
}
h2 {
    font-size: 2.2rem;
    border-bottom: 2px solid var(--primary-color); /* 下划线用金色 */
    padding-bottom: 0.6rem;
    margin-top: 2.5rem;
    color: var(--text-color);
}
h3 {
    font-size: 1.6rem;
    margin-top: 1.8rem;
    font-weight: 400;
    color: var(--primary-color); /* H3 使用金色 */
}

/* 段落样式 */
p {
    margin-bottom: 1.2rem;
    color: var(--text-color);
}
/* 次要段落文字 */
.hero-section p, .testimonial-card .comment {
    color: var(--text-secondary-color);
}


/* 容器样式 */
.container {
    width: 90%;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* --- 页头 (Header) 样式 --- */
.site-header {
    /* 添加半透明背景和模糊效果 */
    background-color: rgba(31, 31, 31, 0.3); /* 半透明背景 (基于 #1f1f1f) */
    padding: 1rem 0;
    /* 改为固定定位，使其悬浮 */
    position: fixed;
    top: 0;
    left: 0; /* 确保从左边开始 */
    width: 100%; /* 确保铺满宽度 */
    z-index: 100;
    backdrop-filter: blur(10px); /* 添加模糊效果 */
    border-bottom: 1px solid var(--border-color); /* 重新添加底部边框 */
}

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

.logo a {
    font-family: var(--font-family-logo);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.5px;
    /* 去掉之前给 Pacifico 加的阴影 */
    /* text-shadow: 1px 1px 2px rgba(218, 165, 32, 0.2); */
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

/* --- 按钮样式 (黑金风格) --- */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 6px; /* 稍微硬朗一点的圆角 */
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-family-sans);
    letter-spacing: 0.5px;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* 阴影可以淡化 */
}

.btn-primary {
    /* 金色背景，可能带一点渐变 */
    background-image: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    color: var(--button-text-color); /* 应用新的按钮文字颜色 */
    box-shadow: 0 4px 8px rgba(218, 165, 32, 0.2); /* 可选：金色阴影 */
}
.btn-primary:hover {
    background-image: linear-gradient(to bottom, #e7b03a, #daa520); /* 悬停时变亮 */
    box-shadow: 0 6px 12px rgba(218, 165, 32, 0.3);
    transform: translateY(-2px);
    color: var(--button-text-color);
}

.btn-secondary {
    background-color: transparent; /* 次要按钮透明 */
    color: var(--text-secondary-color); /* 灰色文字 */
    border: 1px solid var(--border-color); /* 深灰色边框 */
    box-shadow: none;
}
.btn-secondary:hover {
    background-color: rgba(218, 165, 32, 0.1); /* 悬停时加金色透明背景 */
    border-color: var(--primary-color); /* 边框变金色 */
    box-shadow: none;
    transform: translateY(-1px);
    color: var(--primary-color); /* 文字变金色 */
}

/* 按钮按下效果 */
.btn:active {
    transform: translateY(1px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.btn-primary:active {
     box-shadow: 0 2px 4px rgba(218, 165, 32, 0.2); /* 按下时金色阴影减弱 */
}
.btn-secondary:active {
     box-shadow: none;
}

/* 语言切换按钮 */
.lang-switcher button {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-secondary-color);
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    border-radius: 5px;
    font-family: var(--font-family-sans);
}
.lang-switcher button:hover {
    background-color: rgba(245, 245, 245, 0.1);
    color: var(--text-color);
    border-color: var(--text-color);
}
.lang-switcher button.active {
    background-color: var(--primary-color); /* 激活时金色背景 */
    color: var(--button-text-color); /* 深色文字 */
    border-color: var(--primary-color);
    font-weight: 600;
}

/* --- 主视觉区 (Hero Section) 样式 --- */
.hero-section {
    padding: 6rem 0;
    text-align: center;
    /* 背景保持纯黑 */
    background: #000000;
    min-height: 65vh; /* 保持最小高度 */
    display: flex;
    align-items: center;
    /* border-bottom: 1px solid var(--border-color); */ /* 移除底边框 */
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem; /* 统一设置下外边距 */
    font-weight: 700;
    /* 更新文字渐变：从白色到金色 */
    color: var(--text-color); /* Fallback */
    background: linear-gradient(to right, var(--text-color) 30%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    /* 添加 fadeInUp 动画 */
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0; /* 初始状态透明 */
}

.hero-section h2 {
    border-bottom: none;
    padding-bottom: 0; /* 移除因边框产生的内边距 */
    margin-bottom: 2rem; /* 统一设置下外边距 */
    font-size: 1.5rem; /* 可以调整字体大小使其更像副标题 */
    color: var(--text-secondary-color); /* 使用次要文字颜色 */
    font-weight: 400; /* 使用普通字重 */
    /* 保持动画效果 */
    animation: fadeInUp 0.8s 0.2s ease-out forwards; /* 0.2s delay */
    opacity: 0; /* 初始状态透明 */
}

.hero-section p { /* 这个选择器现在不匹配任何元素了，可以考虑删除或注释掉 */
    font-size: 1.25rem;
    /* color: var(--text-secondary-color); */
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
    font-weight: 300;
    /* 添加 fadeInUp 动画，延迟一点出现 */
    /* animation: fadeInUp 0.8s 0.2s ease-out forwards; */ /* 动画已移到 H2 */
    /* opacity: 0; */ /* 初始状态透明 */
}

/* 主视觉区按钮添加 pulse 动画 */
.hero-section .btn-primary {
    /* 添加 pulse 动画 */
    animation: pulse 2s infinite ease-in-out;
}

/* --- 内容区域 (Content Section) 样式 --- */
.content-section {
    padding: 5rem 0;
}

/* --- 生成器表单区域 (Generator Section) 样式 --- */
.generator-section {
    padding: 4rem 0; /* 表单区域上下内边距 */
    /* 应用从黑到表面色的渐变背景，实现平滑过渡 */
    background: linear-gradient(to bottom, #000000 0%, var(--surface-color) 200px); /* 顶部黑色渐变 */
    /* border-top: 1px solid var(--border-color); */ /* 移除顶部边框 */
    /* border-bottom: 1px solid var(--border-color); */ /* 移除底部边框，让过渡更平滑 */
}

.generator-form {
    max-width: 700px; /* 限制表单最大宽度 */
    margin: 2rem auto 0; /* 上方留白，左右自动居中 */
    padding: 2.5rem; /* 表单内边距 */
    background-color: var(--background-color); /* 表单背景用更深的颜色 */
    border-radius: 10px; /* 圆角 */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.generator-section h2 {
    text-align: center; /* 标题居中 */
    border-bottom: none; /* 去掉标题下的横线 */
    margin-bottom: 1rem;
}

/* 表单组通用样式 */
.form-group {
    margin-bottom: 1.8rem; /* 表单项之间的间距 */
    position: relative; /* 用于定位计数器等 */
}

/* Label 样式 */
.form-group label:not(.toggle-switch) { /* 排除开关的 label */
    display: block; /* 标签独占一行 */
    margin-bottom: 0.7rem; /* 标签和输入框的间距 */
    color: var(--text-color); /* 标签文字颜色 */
    font-weight: 400; /* 标签字重 */
    font-size: 1rem;
}

/* 信息提示图标 (?) */
.info-tooltip {
    display: inline-block;
    margin-left: 0.3rem;
    color: var(--text-secondary-color);
    cursor: help; /* 鼠标变成帮助手势 */
    font-size: 0.9em;
    border: 1px solid var(--text-secondary-color);
    border-radius: 50%;
    width: 1.1em;
    height: 1.1em;
    line-height: 1.1em;
    text-align: center;
}

/* 输入框、下拉框、文本域通用样式 */
input[type="text"],
select,
textarea {
    width: 100%; /* 宽度占满容器 */
    padding: 0.9rem 1rem; /* 内边距 */
    background-color: var(--surface-color); /* 输入框背景 */
    border: 1px solid var(--border-color); /* 边框 */
    border-radius: 6px; /* 圆角 */
    color: var(--text-color); /* 输入文字颜色 */
    font-size: 1rem;
    font-family: var(--font-family-sans);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* 输入框、下拉框、文本域获取焦点时的样式 */
input[type="text"]:focus,
select:focus,
textarea:focus {
    outline: none; /* 去掉默认的蓝色轮廓 */
    border-color: var(--primary-color); /* 边框变金色 */
    box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.2); /* 模拟金色外发光 */
}

/* 输入框占位符样式 */
input[type="text"]::placeholder,
textarea::placeholder {
    color: var(--text-secondary-color);
    opacity: 0.7;
}

/* 下拉框样式 */
select {
    appearance: none; /* 去掉默认下拉箭头 */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23a0a0a0' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E"); /* 自定义箭头 (灰色) */
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem; /* 为箭头留出空间 */
}

/* 文本域特定样式 */
textarea {
    resize: vertical; /* 允许垂直调整大小 */
    min-height: 120px; /* 最小高度 */
}

/* 字符计数器样式 */
.char-counter {
    position: absolute; /* 绝对定位 */
    bottom: -1.4rem; /* 定位到输入框下方 */
    right: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary-color);
}
.form-group-textarea .char-counter {
    bottom: 0.8rem; /* 文本域的计数器位置微调 */
    right: 0.8rem;
    background-color: rgba(31, 31, 31, 0.7); /* 加点背景避免和输入文字重叠 */
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
}


/* 开关按钮 (Toggle Switch) 样式 */
.form-group-toggle {
    display: flex; /* 使用 Flex 布局 */
    align-items: center; /* 垂直居中 */
    justify-content: space-between; /* 两端对齐 */
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px; /* 开关宽度 */
    height: 28px; /* 开关高度 */
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--surface-color); /* 关闭状态背景 */
    border: 1px solid var(--border-color);
    transition: .4s;
    border-radius: 28px; /* 圆角 */
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px; /* 滑块高度 */
    width: 20px; /* 滑块宽度 */
    left: 3px; /* 左边距 */
    bottom: 3px; /* 下边距 */
    background-color: var(--text-secondary-color); /* 滑块颜色 (关闭) */
    transition: .4s;
    border-radius: 50%; /* 圆形滑块 */
}

input:checked + .slider {
    background-color: var(--primary-color); /* 打开状态背景 (金色) */
    border-color: var(--primary-color);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(22px); /* 滑块移动距离 */
    background-color: var(--background-color); /* 滑块颜色 (打开) */
}

/* Random 按钮样式 */
.btn-random {
    position: absolute;
    bottom: 0.8rem;
    right: 6.5rem; /* 定位在计数器左边 */
    padding: 0.3rem 0.8rem; /* 按钮大小调整 */
    font-size: 0.85rem;
    background-image: linear-gradient(to bottom right, #8e44ad, #9b59b6); /* 紫色渐变 */
    color: #f0f0f0;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.btn-random:hover {
    background-image: linear-gradient(to bottom right, #9b59b6, #a970c1);
    color: var(--white-color);
}

/* Generate 按钮样式 */
.form-group-submit {
    text-align: center; /* 按钮居中 */
    margin-top: 3rem; /* 与上方元素间距加大 */
}

.btn-generate {
    padding: 1rem 3rem; /* 增大按钮 */
    font-size: 1.2rem;
    background-image: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    color: var(--button-text-color);
    box-shadow: 0 5px 15px rgba(218, 165, 32, 0.25);
}
.btn-generate:hover {
    background-image: linear-gradient(to bottom, #e7b03a, #daa520);
    box-shadow: 0 8px 20px rgba(218, 165, 32, 0.35);
}
.btn-generate .icon {
    margin-right: 0.5rem;
}

/* --- 用户评价区 (Testimonials Section) 样式 --- */
.testimonials-section {
    /* 应用从表面色到背景色的渐变，实现平滑过渡 */
    background: linear-gradient(to bottom, var(--surface-color) 0%, var(--background-color) 200px);
    padding: 5rem 0;
    /* border-top: 1px solid var(--border-color); */ /* 移除顶部边框 */
    border-bottom: 1px solid var(--border-color); /* 保留底部边框 */
}

/* 新增：评价区副标题容器样式 */
.testimonial-subheadings {
    display: flex; /* 启用 Flex 布局 */
    justify-content: space-around; /* 子元素之间及两端留有空间 */
    align-items: center; /* 垂直居中对齐 (如果标题高度不同) */
    margin-top: 1rem; /* 与上方 H2 的间距 */
    margin-bottom: 2rem; /* 与下方滚动容器的间距 */
    gap: 2rem; /* 子元素之间的最小间距 */
}

/* 调整副标题 H3 的样式 */
.testimonial-subheadings h3 {
    margin-top: 0; /* 移除 H3 的默认上外边距 */
    margin-bottom: 0; /* 移除 H3 的默认下外边距 */
    flex-basis: 45%; /* 大致设定每个标题的基础宽度 */
    text-align: center; /* 文本居中 */
}

/* 滚动容器样式 */
.testimonial-scroll-container {
    width: 100%;
    overflow: hidden;
    margin-top: 2.5rem;
}

.testimonial-grid {
    display: flex;
    /* width: calc(200% + 5rem); */ /* 移除显式宽度 */
    animation: scroll-testimonials 30s linear infinite; /* 将动画时间从 40s 改为 30s */
}

.testimonial-card {
    /* flex: 0 0 calc((100% / 6) - 2.5rem); */ /* 移除 flex 计算 */
    width: 300px; /* 设置固定宽度 */
    margin-right: 2.5rem; /* 保留间隙 */
    box-sizing: border-box;
    flex-shrink: 0; /* 防止卡片被压缩 */

    /* 原有样式保持不变 */
    background-color: var(--surface-color);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color); /* 悬停时边框变金色 */
    /* 暂停动画 */
    /* animation-play-state: paused;  <-- 悬停暂停需要JS */
}

.testimonial-card .comment {
    font-style: normal;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    /* color: var(--text-secondary-color); */
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--primary-color); /* 作者金色 */
    text-align: right;
    margin-bottom: 0;
}

/* --- 页脚 (Footer) 样式 --- */
.site-footer {
    background-color: var(--background-color);
    color: var(--text-secondary-color);
    padding: 2.5rem 0;
    margin-top: 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 0.95rem;
}

.site-footer .container {

}

.footer-info p {
    margin-bottom: 0.6rem;
}

.footer-info a {
    color: var(--text-secondary-color);
}
.footer-info a:hover {
    color: var(--primary-color);
}

/* --- 响应式设计 (保持不变或微调) --- */

/* (省略未改变的响应式代码) */

@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 3rem;
        /* 在中等屏幕可能需要调整或移除文字渐变，以保证清晰度 */
        /* background: none; 
        -webkit-background-clip: unset;
        background-clip: unset;
        -webkit-text-fill-color: unset;
        color: var(--text-color); */
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    .hero-section h1 {
        font-size: 2.8rem;
    }
    .hero-section p {
        font-size: 1.15rem;
    }
    .site-header .container {
        flex-direction: column;
        gap: 1rem;
    }
    .main-nav {
        margin-top: 1rem;
    }
    .logo a {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    .hero-section {
        padding: 4rem 0;
    }
    .hero-section h1 {
        font-size: 2.2rem;
        /* 小屏幕上通常移除文字渐变 */
        background: none;
        -webkit-background-clip: unset;
        background-clip: unset;
        -webkit-text-fill-color: unset;
        color: var(--text-color);
    }
    .hero-section p {
        font-size: 1.05rem;
    }
    .btn {
        padding: 0.7rem 1.5rem;
        margin-bottom: 0.8rem;
    }
    .main-nav {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }
    .lang-switcher {
        margin-bottom: 0.5rem;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .testimonial-card {
        padding: 2rem;
    }
    h1, h2, h3 {
        text-shadow: none;
    }
}

/* --- 动画定义 --- */

/* 文字淡入并轻微上移 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 按钮脉冲效果 (缩放和阴影) */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(218, 165, 32, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 16px rgba(218, 165, 32, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(218, 165, 32, 0.2);
    }
}

/* 评价滚动动画 */
@keyframes scroll-testimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        /* 移动距离为 3 张卡片宽度 + 3 个间隙 (3*300px + 3*2.5rem = 900px + 120px = 1020px) */
        transform: translateX(-1020px);
    }
}

/* --- 歌词输出区域样式 --- */
.lyrics-output {
    /* 更新背景为表面颜色 */
    background-color: var(--surface-color);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 4rem; /* 恢复顶部外边距为 4rem */
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* 稍微增强阴影 */
    min-height: 150px; /* 设定最小高度 */
    display: flex; /* 使用 flex 布局 */
    flex-direction: column; /* 垂直排列 */
    justify-content: center; /* 垂直居中 (针对占位符/加载文字) */
    align-items: center; /* 水平居中 (针对占位符/加载文字) */
    color: var(--text-secondary-color); /* 默认文字用次要颜色 */
    font-size: 1.1rem; /* 增大字体 */
    scroll-margin-top: 5rem; /* 添加滚动边距，避免被固定导航栏遮挡 */
}

.lyrics-output .placeholder {
    text-align: center;
    padding-top: 1rem;
}

.lyrics-output .loading {
    text-align: center;
    padding-top: 1rem;
    color: var(--primary-color); /* 加载文字用金色 */
    font-weight: 600;
}

.lyrics-output h4 {
    color: var(--primary-color); /* 输出标题用金色 */
    margin-bottom: 1rem;
    font-weight: 600;
}

.lyrics-output p {
    margin-bottom: 0.8rem;
    color: var(--text-color); /* 输出内容用主文字色 */
}

.lyrics-output p strong {
    color: var(--secondary-color); /* 标签用暗金色 */
    margin-right: 0.5rem;
}

.lyrics-output p em {
    font-style: normal;
    color: var(--text-secondary-color);
    font-size: 0.9em;
}

.lyrics-output hr {
    border: 0;
    border-top: 1px solid var(--border-color);
    margin: 1.5rem 0;
}

.lyrics-output pre {
    background-color: var(--surface-color); /* 代码块背景 */
    padding: 1.5rem;
    border-radius: 6px;
    color: var(--text-color);
    font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; /* 等宽字体 */
    white-space: pre-wrap; /* 自动换行 */
    word-wrap: break-word; /* 单词内换行 */
    line-height: 1.6;
    font-size: 0.95rem;
} 