* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
}

body {
    background: #121212;
    color: white;
    line-height: 1.6;
}

.side-right-content {
    background: #121212;
    padding: 2rem;
    color: white;
    max-height: 92vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #D6FB72 #2D2D33;
    
}

/* 自定义滚动条样式 */
.side-right-content::-webkit-scrollbar {
    width: 8px;
}

.side-right-content::-webkit-scrollbar-track {
    background: #2D2D33;
    border-radius: 4px;
}

.side-right-content::-webkit-scrollbar-thumb {
    background: #D6FB72;
    border-radius: 4px;
}

.side-right-content::-webkit-scrollbar-thumb:hover {
    background: #76F9B1;
}

.main-title {
    text-align: center;
    margin-bottom: 2rem;
}

.main-title h2 {
    color: #D6FB72;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.main-title p {
    font-size: 1.1rem;
    color: #CCCCCC;
    max-width: 600px;
    margin: 0 auto;
}

/* 主标题样式 - 完全匹配图片 */
.main-title h2 {
    color: #D6FB72;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

/* 副标题样式 - 完全匹配图片 */
.main-title p {
    color: #EEEEEE;
    text-align: center;
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* 上传区域 - 精确匹配图片样式 */
.upload-area {
    background: rgba(40, 40, 40, 0.5);
    border: 0px dashed #D6FB72;
    border-radius: 16px;
    padding: 4rem 3rem;
    margin: 0 auto 3rem;
    transition: all 0.3s ease;
    width: 70%;
    
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* 自定义字幕层样式 */
.custom-subtitle-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.custom-subtitle {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 24px;
    font-family: Arial, sans-serif;
    text-align: center;
    max-width: 80%;
    word-wrap: break-word;
    line-height: 1.4;
    z-index: 20;
}

/* 视频预览容器样式 */
.video-preview-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* 屏幕宽度小于等于1920px时调整上传区域宽度 */
@media (max-width: 1920px) {
    .upload-area {
        width: 100%;
    }
}

/* 上传图标样式 */
.upload-icon svg {
    width: 60px;
    height: 40px;
    margin-bottom: 0rem;
    fill: #D6FB72;
    filter: drop-shadow(0 2px 4px rgba(214,251,114,0.3));
}

/* 上传按钮样式 */
.file-input-label {
    background: linear-gradient(135deg, #D6FB72 0%, #76F9B1 100%);
    color: #2D2D33;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 2rem;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(214, 251, 114, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.file-input-label:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(214, 251, 114, 0.4);
}

/* 移动设备适配 */
@media (max-width: 768px) {
    .upload-area {
        width: 90%;
        padding: 2rem 1.5rem;
    }
    
    .upload-icon svg {
        width: 48px;
        height: 48px;
    }
    
    .file-input-label {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* 视频加入前布局 */
.upload-area.before-video {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

}

/* 上传图标样式 */
.upload-icon {
    margin-bottom: 1.5rem;
}

/* 上传按钮样式 */
.file-input-label {
    background: #D6FB72;
    color: #121212;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: bold;
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* 视频加入后布局 - 精确匹配图片样式 */
.upload-area.with-video {
    display: grid;
    grid-template-columns: 1fr;
    width: 70%;
    max-width: none;
    padding: 1rem;
    gap: 2rem;
    margin-left: 15%;
    margin-right: 15%;
}

/* 屏幕宽度小于等于1920px时调整带视频的上传区域宽度 */
@media (max-width: 1920px) {
    .upload-area.with-video {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

@media (min-width: 992px) {
    .upload-area.with-video {
        grid-template-columns: 65% 35%;
        gap: 2rem;
    }
}

/* 视频区域样式 */
.video-section {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.video-container {
    position: relative;
    width: 100%;
}

.video-preview {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

.video-controls {
    background: rgba(0,0,0,0.8);
    padding: 1rem;
    border-top: 1px solid #333;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #333;
    border-radius: 2px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #D6FB72;
    width: 0%;
    transition: width 0.3s ease;
}

.time-display {
    color: #999;
    font-size: 0.9rem;
    text-align: center;
}

/* 控制面板样式 */
.control-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.function-options {
    background: rgba(30,30,30,0.8);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid #333;
    width: 100%;
}

.option-tabs {
    display: flex;
    background: #2D2D33;
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 1.5rem;
}

.tab-button {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    color: #999;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tab-button.active {
    background: #D6FB72;
    color: #2D2D33;
    font-weight: bold;
}

/* 语言设置样式 */
.language-settings {
    margin-bottom: 1.5rem;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
}

.language-dropdown {
    flex: 1;
    background: rgba(45, 45, 51, 0.8);
    border: 1px solid #555;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.language-dropdown:hover {
    border-color: #D6FB72;
    background: rgba(45, 45, 51, 1);
}

.language-label {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.language-dropdown small {
    color: #AAAAAA;
    font-size: 0.8rem;
}

.arrow-icon {
    color: #D6FB72;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 0.5rem;
}

/* 配音设置样式 */
.voice-settings {
    background: rgba(45, 45, 51, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.voice-settings h5 {
    color: #D6FB72;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.voice-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.voice-avatar {
    background: linear-gradient(135deg, #D6FB72 0%, #76F9B1 100%);
    color: #2D2D33;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.volume-control {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.volume-control span {
    color: #CCCCCC;
    font-size: 0.9rem;
    min-width: 40px;
}

.volume-slider {
    flex: 1;
    height: 4px;
    background: #555;
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #D6FB72;
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #D6FB72;
    cursor: pointer;
    border: none;
}

/* 设置区域切换动画 */
.settings-section {
    transition: all 0.3s ease;
}

.settings-section:not(.active) {
    display: none !important;
}

.settings-section.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 克隆原声翻译的特殊样式 */
#clone-voice-settings h4 {
    color: #D6FB72;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

#clone-voice-settings h4::after {
    content: " (克隆声音仅支持5分钟以内单说话人文件)";
    color: #FFA500;
    font-size: 0.9rem;
    font-weight: normal;
    display: block;
    margin-top: 0.5rem;
}

/* 仅翻译字幕模式的特殊样式 */
#translate-only-settings .language-selector {
    justify-content: center;
}

#translate-only-settings .arrow-icon {
    font-size: 1.5rem;
    margin: 0 1rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .language-selector {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .arrow-icon {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
    
    .voice-profile {
        flex-direction: column;
        text-align: center;
    }
    
    .volume-control {
        width: 100%;
    }
}

.settings-section h4 {
    color: #D6FB72;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.setting-item {
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #CCC;
    font-size: 0.95rem;
}

.checkbox-label input {
    margin-right: 0.75rem;
    width: 18px;
    height: 18px;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #666;
    border-radius: 3px;
    margin-right: 0.75rem;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input:checked + .checkmark {
    background: #D6FB72;
    border-color: #D6FB72;
}

.checkbox-label input:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #2D2D33;
    font-size: 12px;
    font-weight: bold;
}

.process-button {
    width: 100%;
    background: linear-gradient(135deg, #D6FB72 0%, #76F9B1 100%);
    color: #2D2D33;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 0rem;
    transition: all 0.3s ease;
    position: relative;
}

.process-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 251, 114, 0.3);
}

.process-button small {
    display: block;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    opacity: 0.8;
}

/* 文件信息区域 */
.file-info-section {
    background: rgba(30,30,30,0.8);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #333;
    width: 90%;
}

.file-info-section h4 {
    color: #D6FB72;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    padding: 0.6rem;
}

.info-item .label {
    color: #999;
}

.info-item .value {
    color: #CCC;
    font-weight: 500;
}

/* 视频预览区域 - 修复显示问题 */
.video-container {
    position: relative;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    padding: 1.5rem;
    min-height: 300px;
}

/* 视频头部区域 */
.video-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
}

.video-header h4 {
    color: #D6FB72;
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
}

/* 删除按钮样式 */
.delete-video-btn {
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.3);
    color: #FF3B30;
    border-radius: 6px;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.delete-video-btn:hover {
    background: rgba(255, 59, 48, 0.2);
    border-color: rgba(255, 59, 48, 0.5);
    transform: scale(1.05);
}

/* 视频预览容器 */
.video-preview-container {
    width: 100%;
    height: 80%;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    aspect-ratio: 16/9; /* 保持视频原始宽高比 */
    max-height: calc(100vh - 300px); /* 限制最大高度 */
}

.video-preview {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: none;
    max-height: 100%; /* 确保视频不超过容器高度 */
}

.video-preview.active {
    display: block;
}

/* 视频控制区域 */
.video-controls {
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem;
    border-top: 1px solid #333;
    margin-top: 1rem;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #333;
    border-radius: 2px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #D6FB72;
    width: 0%;
    transition: width 0.3s ease;
}

.time-display {
    color: #999;
    font-size: 0.9rem;
    text-align: center;
    font-family: monospace;
}

/* 文件信息和控制面板 */
.video-info-panel {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

/* 进度指示器 */
.progress-steps {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.progress-step {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border-radius: 0.25rem;
    background: rgba(58, 58, 58, 0.5);
}

.progress-step.active {
    background: rgba(214, 251, 114, 0.2);
    border-left: 3px solid #D6FB72;
}

.progress-step.completed {
    opacity: 0.7;
}

.step-icon {
    margin-right: 0.75rem;
    color: #D6FB72;
}

/* 文件下载区域 */
.download-section {
    margin-top: 1.5rem;
    border-top: 1px solid #3A3A3A;
    padding-top: 1.5rem;
}

.file-category {
    margin-bottom: 1rem;
}

.file-category-title {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #D6FB72;
}

.file-category-icon {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.upload-area:hover {
    border-color: #D6FB72;
}

.upload-area.highlight {
    border-color: #76F9B1;
    background: rgba(118, 249, 177, 0.05);
}

.upload-icon {
    display: inline-block;
    padding: 1.5rem;
    background: rgba(214,251,114,0.1);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.upload-icon svg {
    width: 48px;
    height: 48px;
    fill: #D6FB72;
    margin-bottom: 0rem;
}

.file-input {
    display: none;
}

.file-input-label {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #D6FB72 0%, #76F9B1 100%);
    color: #2D2D33;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: bold;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.file-input-label:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 251, 114, 0.3);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    margin: 0.5rem 1rem;
}

.stat-item h3 {
    margin: 0;
    color: #AAAAAA;
    font-size: 0.9rem;
    font-weight: normal;
}

.stat-value {
    font-size: 1.8rem;
    margin: 0.5rem 0;
    color: #D6FB72;
    font-weight: bold;
}

.side-right-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #D6FB72 0%, #76F9B1 100%);
    color: #2D2D33;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.2rem;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.side-right-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 251, 114, 0.3);
}

.side-right-button:disabled {
    background: #3A3A3A;
    color: #AAAAAA;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.section-title {
    color: #D6FB72;
    border-bottom: 1px solid #3A3A3A;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.step {
    text-align: center;
    padding: 1rem;
}

.step-number {
    background: #1E1E1E;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #D6FB72;
    font-size: 1.2rem;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.testimonial {
    background: #1E1E1E;
    padding: 1.5rem;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.stars {
    color: #FF9300;
    margin-bottom: 0.8rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.testimonial-author {
    color: #AAAAAA;
    font-size: 0.9rem;
}

.faq-item {
    padding: 1rem 0;
    border-bottom: 1px solid #3A3A3A;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: color 0.2s ease;
}

.faq-item:hover {
    color: #D6FB72;
}

.faq-arrow {
    margin-right: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 2rem;
    color: #CCCCCC;
}

.faq-item.active + .faq-answer {
    max-height: 200px;
    padding: 0.5rem 0 1rem 2rem;
}

.cta-section {
    background: linear-gradient(135deg, #D6FB72 0%, #76F9B1 100%);
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 3rem;
    text-align: center;
}

.cta-title {
    color: #2D2D33;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cta-text {
    color: #2D2D33;
    margin-bottom: 1.5rem;
}

.cta-button {
    background: #2D2D33;
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #1E1E1E;
    transform: translateY(-2px);
}

/* 新增样式 */
.file-info {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(214, 251, 114, 0.1);
    border-radius: 0.5rem;
    display: none;
}

.file-info.active {
    display: block;
}

.video-preview {
    width: 100%;
    max-width: 400px;
    margin: 1rem auto;
    display: none;
}

.video-preview.active {
    display: block;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 30, 30, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 0.5rem;
    z-index: 10;
    display: none;
}

.loading-overlay.active {
    display: flex;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(214, 251, 114, 0.3);
    border-radius: 50%;
    border-top-color: #D6FB72;
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 1rem;
}

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

.output-files {
    margin-top: 2rem;
    display: none;
}

.output-files.active {
    display: block;
}

.file-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.file-item {
    background: #1E1E1E;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
}

.file-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #D6FB72;
}

.file-name {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    word-break: break-all;
}

.download-btn {
    background: #D6FB72;
    color: #2D2D33;
    border: none;
    border-radius: 0.25rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: #76F9B1;
}

@media (max-width: 768px) {
    .guide-steps, .testimonials {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        margin-bottom: 1.5rem;
    }
    
    .file-list {
        grid-template-columns: 1fr;
    }
}
.stats-container {
    background: #1E1E1E;
    padding: 2rem;
    border-radius: 0.5rem;
    margin: auto;
    width: 70%;
    margin-bottom: 20px;

}

/* 屏幕宽度小于等于1920px时调整统计容器宽度 */
@media (max-width: 1920px) {
    .stats-container {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .stats-container {
        width: 100%;
    }
}
.stats-container1 {
    background: #1E1E1E;
    border-radius: 0.5rem;
    margin: auto;
    width: 70%;
    margin-bottom: 20px;

}

/* 屏幕宽度小于等于1920px时调整统计容器1宽度 */
@media (max-width: 1920px) {
    .stats-container1 {
        width: 100%;
    }
}
.usage-guide {
    background: #1E1E1E;
    padding: 2rem;
    border-radius: 0.5rem;
    margin: auto;
    width: 70%;
    margin-bottom: 20px;

}

/* 屏幕宽度小于等于1920px时调整使用指南宽度 */
@media (max-width: 1920px) {
    .usage-guide {
        width: 100%;
    }
}
.faq-section{
    background: #1E1E1E;
    padding: 2rem;
    border-radius: 0.5rem;
    margin: auto;
    width: 70%;
    margin-top: 20px;
}

/* 屏幕宽度小于等于1920px时调整FAQ区域宽度 */
@media (max-width: 1920px) {
    .faq-section {
        width: 100%;
    }
}
.testimonials-section {
    background: #1E1E1E;
    padding: 2rem;
    border-radius: 0.5rem;
    margin: auto;
    width: 70%;
}

/* 屏幕宽度小于等于1920px时调整推荐区域宽度 */
@media (max-width: 1920px) {
    .testimonials-section {
        width: 100%;
    }
}

/* 按钮样式 - 声音选择按钮 */
.domain-button {
    width: 100%;
    background: rgba(45, 45, 51, 0.8);
    border: 1px solid #555;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: white;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.domain-button:hover {
    border-color: #D6FB72;
    background: rgba(45, 45, 51, 1);
}

.domain-button:focus {
    outline: none;
    border-color: #D6FB72;
    box-shadow: 0 0 0 2px rgba(214, 251, 114, 0.2);
}

.button-text {
    flex: 1;
}

.button-arrow {
    color: #D6FB72;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.domain-button.active .button-arrow {
    transform: rotate(180deg);
}

