:root {
    /* 新的颜色系统 - 主色调为 #DCD8CF */
    --primary-bg: #DCD8CF;
    --primary-light: #E8E5DD;
    --primary-dark: #D0CCC3;
    --card-bg: rgba(220, 216, 207, 0.95);
    --text-dark: #000000;
    --text-light: #333333;
    --text-white: #FFFFFF;
    --text-on-dark: #DCD8CF; /* 深色背景上的文字颜色 */
    
    /* 人格主题颜色 */
    --color-yours-truly: #a0dcf6;
    --color-my-everything: #7a7878;
    --color-dangerous-woman: #000000;
    --color-sweetener: #e8b786;
    --color-thank-u-next: #bd7d98;
    --color-positions: #7db2a0;
    --color-eternal-sunshine: #993136;
    
    /* 渐变颜色基于 #DCD8CF */
    --gradient-1: linear-gradient(135deg, #DCD8CF, #C9C4BB);
    --gradient-2: linear-gradient(135deg, #C9C4BB, #B7B2A8);
    
    /* 阴影调整 */
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 15px 40px rgba(0, 0, 0, 0.2);
    
    /* 字体变量 */
    --font-primary: 'Poppins', 'Microsoft YaHei', sans-serif;
    --font-display: 'Playfair Display', 'Noto Serif SC', serif;
    --font-title-en: 'CustomTitleFont', var(--font-display), serif;
    --font-body-en: 'CustomBodyFont', var(--font-primary), sans-serif;
}

/* 加载自定义英文字体 */
@font-face {
    font-family: 'CustomTitleFont';
    src: url('./fonts/title-font.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CustomBodyFont';
    src: url('./fonts/body-font.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* 为中文界面中的英文内容应用英文字体 */
.english-content {
    font-family: var(--font-body-en);
}

.english-title {
    font-family: var(--font-title-en);
}

/* 为特定元素强制应用英文字体 */
.quiz-title h2,
.era-badge,
.playlist-song,
.era-title,
.section-title,
.result-header h2 {
    font-family: var(--font-title-en);
}

/* 增加英文字体的大小 */
.english-title,
.quiz-title h2,
.era-title,
.section-title,
.result-header h2 {
    font-size: 1.3em;
}

/* 特定文本使用body-font */
.welcome-text,
.interpretation-text,
.question-text,
.result-subtitle,
.quiz-subtitle {
    font-family: var(--font-body-en);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--text-on-dark);
    line-height: 1.6;
    min-height: 100vh;
    
    /* 背景图片设置 */
    background-image: url('./images/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

#app {
    max-width: 480px;
    margin: 60px auto 0;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

/* Ariana主题顶部栏 */
.language-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(50, 50, 50, 0.8) 100%);
    backdrop-filter: blur(10px);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(220, 216, 207, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* 调整语言切换器样式 */
.language-switcher {
    display: flex;
    gap: 10px;
    background: rgba(220, 216, 207, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 25px;
    padding: 5px;
    border: 1px solid rgba(220, 216, 207, 0.3);
}

@media (max-width: 480px) {
    .language-switcher {
        top: 5px;
        right: 5px;
        gap: 4px;
        padding: 3px;
        transform: scale(0.85);
    }
    .language-top-bar {
        height: 45px;
    }
    
    #app {
        margin-top: 55px; /* 移动端适当减小 */
        padding: 15px;
    }
    
    .language-top-bar .lang-btn {
        padding: 6px 15px;
        font-size: 0.85rem;
    }
}

/* 调整语言按钮在顶部栏中的样式 */
.language-top-bar .lang-btn {
    background: transparent;
    border: none;
    color: var(--text-on-dark);
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    letter-spacing: 0.5px;
}

.language-top-bar .lang-btn.active {
    background: rgba(220, 216, 207, 0.8);
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.language-top-bar .lang-btn:hover:not(.active) {
    background: rgba(220, 216, 207, 0.3);
    color: var(--text-on-dark);
}

/* 水印 */
.watermark {
    position: fixed;
    bottom: 35px;
    left: 35px;
    opacity: 0.6;
    font-size: 35px;
    color: #DCD8CF;
    pointer-events: none;
    z-index: 1000;
    font-family: var(--font-title-en);
    transition: opacity 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.watermark:hover {
    opacity: 0.9;
}

/* 屏幕基础样式 */
.screen {
    display: none;
    flex-direction: column;
    flex: 1;
    animation: fadeIn 0.5s ease-out;
}
.screen.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 欢迎屏幕 */
.welcome-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1;
    padding: 30px 0;
}

.logo-container {
    margin-bottom: 20px;
}

.logo-icon {
    font-size: 4rem;
    color: #DCD8CF;
    margin-bottom: 10px;
    font-family: var(--font-primary);
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    display: block;
}

h1 {
    font-family: var(--font-title-en);
    font-size: 4rem;
    color: var(--text-on-dark);
    margin-bottom: 5px;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.subtitle {
    color: var(--text-on-dark);
    font-size: 1.3rem;
    margin-bottom: 30px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    font-family: var(--font-body-en);
}

.welcome-text {
    color: var(--text-on-dark);
    font-size: 1rem;
    max-width: 400px;
    margin: 0 auto 20px;
    line-height: 1.8;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-family: var(--font-body-en);
    letter-spacing: 0.5px;
}

/* 免责声明框 */
.disclaimer-box {
    background: rgba(220, 216, 207, 0.9);
    border: 2px solid var(--primary-dark);
    border-radius: 10px;
    padding: 12px 20px;
    margin: 20px auto 30px;
    max-width: 400px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--shadow);
    font-family: var(--font-primary);
}

.disclaimer-box i {
    color: #FF6B6B;
    font-size: 1.1rem;
}

/* 按钮样式 */
.btn-primary, .btn-secondary, .btn-share {
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 300px;
    margin: 10px 0;
    font-family: var(--font-primary);
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--text-dark);
    box-shadow: var(--shadow);
}
.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}
.btn-primary:active:not(:disabled) {
    transform: translateY(0);
}
.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.btn-secondary {
    background: rgba(220, 216, 207, 0.8);
    color: var(--text-dark);
    border: 1px solid var(--primary-dark);
}
.btn-secondary:hover:not(:disabled) {
    background: var(--primary-bg);
    transform: translateY(-2px);
}
.btn-secondary:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.btn-share {
    background: rgba(220, 216, 207, 0.9);
    color: var(--text-dark);
    border: 2px solid var(--primary-dark);
}
.btn-share:hover {
    background: var(--primary-bg);
    transform: translateY(-2px);
}

.hint-text {
    color: var(--text-on-dark);
    font-size: 0.9rem;
    margin-top: 20px;
    opacity: 0.8;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-family: var(--font-primary);
}

/* 测试屏幕 */
.quiz-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(220, 216, 207, 0.3);
}

.quiz-title h2 {
    color: var(--text-on-dark);
    font-size: 2.2rem;
    margin-bottom: 5px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    font-family: var(--font-title-en);
    letter-spacing: 1.5px;
}

.quiz-subtitle {
    color: var(--text-on-dark);
    font-size: 1.1rem;
    opacity: 0.8;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-family: var(--font-body-en);
    letter-spacing: 1px;
}

.quiz-meta {
    background: var(--gradient-1);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--shadow);
    font-family: var(--font-title-en);
    letter-spacing: 1px;
}

.progress-container {
    margin-bottom: 30px;
    position: relative;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    color: var(--text-on-dark);
    font-size: 0.9rem;
    margin-bottom: 8px;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-family: var(--font-primary);
}

.progress-bar {
    height: 8px;
    background: rgba(220, 216, 207, 0.3);
    border-radius: 4px;
    overflow: visible;
    position: relative;
}

/* 进度条填充部分 */
.progress-fill {
    height: 100%;
    background: var(--gradient-1);
    border-radius: 4px;
    width: 0%;
    transition: width 0.5s ease-out;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* 进度条图标 */
.progress-fill::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-image: url('./images/progress-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
}

.question-container {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    flex: 1;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.question-number {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    font-family: var(--font-body-en);
}

.question-text {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--text-dark);
    font-family: var(--font-body-en);
    letter-spacing: 0.5px;
}

.question-hint {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-style: italic;
    min-height: 20px;
    opacity: 0.8;
    font-family: var(--font-primary);
}

.options-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* 单选题样式 */
.option-btn {
    background: var(--primary-bg);
    border: 2px solid var(--primary-dark);
    border-radius: 12px;
    padding: 20px 20px;
    font-size: 1.1rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
    font-family: var(--font-primary);
}
.option-btn:hover {
    border-color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.option-btn.selected {
    border-color: var(--text-dark);
    background: linear-gradient(to right, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.1));
    color: var(--text-dark);
    font-weight: 500;
}
.option-btn:active {
    transform: translateY(0);
}

.option-text {
    padding-right: 30px;
}

.option-check {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dark);
    opacity: 0;
    transition: opacity 0.2s ease;
}
.option-btn.selected .option-check {
    opacity: 1;
}

/* 多选题样式 */
.multiple-option {
    display: flex;
    align-items: flex-start;
    padding: 15px 20px;
    background: var(--primary-bg);
    border: 2px solid var(--primary-dark);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-dark);
    font-family: var(--font-primary);
}

.multiple-option:hover {
    border-color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.multiple-option.selected {
    border-color: var(--text-dark);
    background: linear-gradient(to right, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.1));
}

.multiple-option input[type="checkbox"] {
    margin-right: 15px;
    margin-top: 3px;
    cursor: pointer;
    accent-color: var(--text-dark);
    width: 18px;
    height: 18px;
}

.multiple-option label {
    flex: 1;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.5;
}

.navigation-buttons {
    display: flex;
    gap: 15px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(220, 216, 207, 0.3);
}
.navigation-buttons button {
    flex: 1;
}

/* 加载屏幕 */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-align: center;
}

.loading-spinner {
    width: 240px;
    height: 144px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    animation: pulse 2s infinite ease-in-out;
    box-shadow: var(--shadow);
    background-image: url('./images/location.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.loading-spinner i {
    display: none;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.loading-dots {
    display: flex;
    gap: 8px;
    margin-top: 30px;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-on-dark);
    animation: dotBounce 1.4s infinite ease-in-out;
    opacity: 0.7;
}
.dot:nth-child(1) { animation-delay: -0.32s; }
.dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes dotBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

.loading-container h2 {
    color: var(--text-on-dark);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    font-family: var(--font-title-en);
    font-size: 2.2rem;
    letter-spacing: 1.5px;
}

.loading-container .subtitle {
    color: var(--text-on-dark);
    opacity: 0.8;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-family: var(--font-body-en);
    font-size: 1.2rem;
    letter-spacing: 1px;
}

/* 结果屏幕 */
.result-header {
    text-align: center;
    margin-bottom: 30px;
}
.result-header h2 {
    color: var(--text-on-dark);
    font-size: 2.8rem;
    margin-bottom: 10px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    font-family: var(--font-title-en);
    letter-spacing: 1.5px;
}
.result-subtitle {
    color: var(--text-on-dark);
    font-size: 1.2rem;
    opacity: 0.8;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-family: var(--font-body-en);
    letter-spacing: 1px;
}

/* 结果卡片 */
.result-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* 主要结果卡片 */
.main-result {
    text-align: center;
    border-top: 5px solid;
    animation: cardGlow 3s infinite alternate;
}

@keyframes cardGlow {
    from { box-shadow: var(--shadow); }
    to { box-shadow: 0 0 30px rgba(0, 0, 0, 0.2); }
}

.era-badge {
    display: inline-block;
    background: var(--gradient-1);
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
    box-shadow: var(--shadow);
    font-family: var(--font-title-en);
}

/* 人格展示文字颜色改为黑色 */
.era-title {
    font-family: var(--font-title-en);
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.2;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    letter-spacing: 1px;
}

.era-desc {
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
    opacity: 0.9;
    font-family: var(--font-body-en);
    letter-spacing: 0.5px;
}

.era-color-bar {
    height: 4px;
    width: 100px;
    margin: 20px auto 0;
    border-radius: 2px;
    background: transparent;
}

/* 标题居中 */
.section-title {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-title-en);
    text-align: center;
    letter-spacing: 1px;
}
.section-title i {
    color: var(--text-dark);
    opacity: 0.8;
}

/* 雷达图标题样式 */
.section-title.radar-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    text-align: center;
}

/* 雷达图图标容器 */
.radar-title .chart-icon {
    width: 90px;
    height: 75px;
    background-image: url('./images/chart-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    margin-bottom: 5px;
}

/* 雷达图文字部分 */
.radar-title-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: var(--font-title-en);
    margin-right: 10px;
}

/* 深度人格解读标题 */
.section-title.interpretation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

/* 解读文本样式优化 */
.interpretation-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-dark);
  white-space: pre-line;
  opacity: 0.9;
  font-family: var(--font-body-en);
}

.interpretation-text h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 20px 0 10px 0;
  color: var(--text-dark);
  font-family: var(--font-title-en);
}

.interpretation-text h4 {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 15px 0 8px 0;
  color: var(--text-dark);
  font-family: var(--font-title-en);
}

.interpretation-text strong {
  font-weight: 600;
  color: var(--text-dark);
}

.interpretation-text p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.interpretation-icon {
    width: 60px;
    height: 60px;
    background-image: url('./images/interpretation-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 5px;
}

.section-title.interpretation i {
    display: none;
}

/* 雷达图容器 */
.radar-container {
    width: 100%;
    height: 300px;
    position: relative;
    margin: 0 auto; /* 改为居中 */
    padding: 25px;  /* 添加内边距 */
    box-sizing: border-box;
}

/* 播放列表图标 */
.playlist-icon {
    width: 60px;
    height: 60px;
    background-image: url('./images/playlist-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 5px;
}

.playlist-reason {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 4px;
  line-height: 1.4;
  opacity: 0.8;
  font-family: var(--font-primary);
}

/* 播放列表标题样式 */
.section-title.playlist {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

/* 隐藏原来的字体图标 */
.section-title.playlist i {
    display: none;
}

.playlist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.playlist-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: rgba(220, 216, 207, 0.5);
    border-radius: 10px;
    border-left: 4px solid var(--text-dark);
    transition: all 0.2s ease;
}
.playlist-item:hover {
    background: rgba(220, 216, 207, 0.8);
    transform: translateX(5px);
}

.playlist-number {
    color: var(--text-dark);
    font-weight: 600;
    min-width: 25px;
    opacity: 0.9;
    font-family: var(--font-body-en);
}

.playlist-info {
    flex: 1;
}

/* 歌单只显示歌曲名，使用body-font */
.playlist-album {
    display: none;
}

.playlist-song {
    font-weight: 500;
    color: var(--text-dark);
    font-family: var(--font-body-en);
    font-size: 1.1rem;
}

.result-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    margin-bottom: 40px;
    flex-direction: row;
}

.result-actions button {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 12px 8px;
    font-size: 0.9rem;
}

/* 结果界面底部链接 */
.result-footer {
    text-align: center;
    margin-top: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(220, 216, 207, 0.3);
}

.result-footer-link {
    font-family: var(--font-title-en);
    color: var(--text-on-dark);
    text-decoration: none;
    font-size: 1.7rem;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.result-footer-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.result-footer-link:hover {
    color: #fff;
    transform: translateY(-2px);
}

.result-footer-link:hover::before {
    width: 100%;
}

.result-footer-link i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.result-footer-link:hover i {
    transform: translateX(5px);
}

/* 响应式调整 */
@media (max-width: 480px) {
    #app {
        padding: 15px;
    }
    
    .language-switcher {
        top: 5px;
        right: 5px;
        gap: 4px;
        padding: 3px;
        transform: scale(0.85);
    }
    
    h1 {
        font-size: 3.2rem;
    }
    
    .logo-icon {
        font-size: 3.2rem;
    }
    
    .question-container {
        padding: 20px;
    }
    
    .question-text {
        font-size: 1.2rem;
    }
    
    .era-title {
        font-size: 2.2rem;
    }
    
    .result-actions {
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .result-actions button {
        padding: 10px 6px;
        font-size: 0.85rem;
    }
    
    .watermark {
        font-size: 23px;
        left: 25px;
        bottom: 25px;
    }
    
    .loading-spinner {
        width: 225px;
        height: 162px;
    }
    
    .radar-container {
        height: 350px;
        padding: 30px; /* 手机端增加更多内边距 */
    }
    
    .radar-title-text {
        font-size: 1.7rem;
        margin-right: 10px;
    }
    
    .radar-title .chart-icon {
        width: 75px;
        height: 63px;
    }

    .result-footer {
        padding: 15px 0;
    }
    
    .result-footer-link {
        font-size: 1.3rem;
        padding: 8px 16px;
    }
}