* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-pink: #ff6b9d;
    --primary-magenta: #d63384;
    --light-pink: #ffe0e8;
    --bg-pink: #fff5f8;
    --text-dark: #333333;
    --text-gray: #666666;
    --border-gray: #e0e0e0;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::after {
    content: '';
    position: fixed;
    bottom: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--light-pink) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.page {
    display: none;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.page.active {
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

/* 头部样式 */
.header {
    text-align: center;
    margin-bottom: 50px;
}

.heart-icon {
    font-size: 60px;
    color: var(--primary-pink);
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(214, 51, 132, 0.2));
}

.heart-icon.large {
    font-size: 80px;
}

.main-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-magenta);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 400;
}

/* 兑换码输入区域 */
.code-input-section {
    max-width: 500px;
    margin: 0 auto 50px;
}

.input-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.code-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--border-gray);
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.code-input:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.submit-btn {
    padding: 15px 30px;
    background: var(--primary-pink);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary-magenta);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 51, 132, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.error-message {
    color: #ff4444;
    font-size: 14px;
    text-align: center;
    min-height: 20px;
    margin-top: 5px;
}

.code-link {
    text-align: center;
    margin-top: 10px;
    padding: 0 10px;
}

.code-link a {
    word-break: break-all;
}

.get-code-link {
    color: var(--primary-magenta);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 5px 0;
}

.get-code-link:hover {
    color: var(--primary-pink);
    text-decoration: underline;
}

.get-code-link:active {
    color: var(--primary-pink);
}

/* 评估维度区域 */
.dimensions-section {
    margin-bottom: 50px;
}

.section-title {
    text-align: center;
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 600;
}

.dimensions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.dimension-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
}

.dimension-card:hover {
    border-color: var(--primary-pink);
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.15);
    transform: translateY(-2px);
}

.card-icon {
    font-size: 40px;
    color: var(--primary-pink);
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 4px rgba(214, 51, 132, 0.2));
}

.card-title {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.card-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}

/* CTA区域 */
.cta-section {
    text-align: center;
    margin-bottom: 50px;
}

.start-btn {
    background: var(--primary-magenta);
    color: var(--white);
    border: none;
    border-radius: 30px;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.start-btn:hover:not(:disabled) {
    background: var(--primary-pink);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 51, 132, 0.4);
}

.start-btn:active:not(:disabled) {
    transform: translateY(0);
}

.start-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-icon {
    font-size: 16px;
}

.time-info {
    font-size: 14px;
    color: var(--text-gray);
}

/* 隐私保护区域 */
.privacy-section {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-box {
    background: var(--light-pink);
    border: 1px solid var(--primary-pink);
    border-radius: 12px;
    padding: 25px;
}

.privacy-title {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.privacy-icon {
    color: var(--primary-pink);
    font-size: 12px;
}

.privacy-list {
    list-style: none;
}

.privacy-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-dark);
}

.privacy-list li:last-child {
    margin-bottom: 0;
}

.list-icon {
    font-size: 20px;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #4a90e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
}

.list-text {
    flex: 1;
    line-height: 1.6;
}

/* 答题页面样式 */
.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.quiz-header {
    margin-bottom: 40px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--border-gray);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-pink), var(--primary-magenta));
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}

.progress-text {
    text-align: center;
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 500;
}

.question-section {
    flex: 1;
    margin-bottom: 40px;
}

.question-text {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 600;
}

.options-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.option-item {
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 15px;
}

.option-item:hover {
    border-color: var(--primary-pink);
    background: var(--bg-pink);
    transform: translateX(5px);
}

.option-item.selected {
    border-color: var(--primary-magenta);
    background: var(--light-pink);
    box-shadow: 0 4px 12px rgba(214, 51, 132, 0.2);
}

.option-emoji {
    font-size: 28px;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.option-text {
    flex: 1;
    font-weight: 500;
}

.quiz-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-gray);
}

.nav-btn {
    padding: 12px 30px;
    border: 2px solid var(--primary-pink);
    background: var(--white);
    color: var(--primary-pink);
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover:not(:disabled) {
    background: var(--primary-pink);
    color: var(--white);
    transform: translateY(-2px);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.next-btn {
    margin-left: auto;
}

/* 结果页面样式 */
.result-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--bg-pink);
}

.result-content {
    width: 100%;
    padding: 40px 20px;
}

.result-section {
    width: 100%;
}

/* 结果页面开头 */
.result-page-header {
    text-align: center;
    padding: 60px 20px 40px;
    background: var(--bg-pink);
}

.result-heart-icon {
    font-size: 80px;
    color: var(--primary-magenta);
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 2px 8px rgba(214, 51, 132, 0.2));
    line-height: 1;
}

.result-page-title {
    font-size: 32px;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 15px;
}

.result-page-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* AYP卡片样式 */
.ayp-card {
    margin-bottom: 40px;
}

.ayp-main-card {
    background: var(--light-pink);
    border: 2px solid var(--primary-pink);
    border-radius: 16px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.heart-icon-small {
    font-size: 24px;
    color: var(--primary-pink);
}

.ayp-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.ayp-card-title {
    font-size: 20px;
    color: var(--primary-magenta);
    font-weight: 600;
}

.ayp-score-display {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

/* 圆形进度条样式 */
.circular-progress {
    position: relative;
    display: inline-block;
}

.progress-svg {
    transform: rotate(-90deg);
}

.progress-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.progress-score {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-magenta);
    line-height: 1;
}

.progress-label {
    font-size: 18px;
    color: var(--text-gray);
    margin-top: 5px;
}

.ayp-result-label {
    text-align: center;
    margin-bottom: 30px;
}

.ayp-label-main {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.ayp-label-sub {
    font-size: 16px;
    color: var(--text-gray);
}

/* 滑块样式 */
.score-slider {
    margin: 30px 0;
}

.slider-track {
    position: relative;
    height: 8px;
    background: var(--border-gray);
    border-radius: 4px;
    margin-bottom: 10px;
}

.slider-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-pink), var(--primary-magenta));
    border-radius: 4px;
    transition: width 0.3s ease;
}

.slider-indicator {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--primary-magenta);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(214, 51, 132, 0.3);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-gray);
}

/* 解释和特征样式 */
.ayp-explanation,
.ayp-traits {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.explanation-header,
.traits-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.explanation-icon,
.traits-icon {
    font-size: 24px;
}

.explanation-title,
.traits-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.explanation-content,
.traits-content {
    padding-left: 34px;
}

.explanation-text,
.trait-item {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.explanation-text:last-child,
.trait-item:last-child {
    margin-bottom: 0;
}

.explanation-text strong,
.trait-item strong {
    color: var(--primary-magenta);
    font-weight: 600;
}

/* 可视化分析样式 */
.visual-analysis-section {
    margin-bottom: 40px;
}

.analysis-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.analysis-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.analysis-icon {
    font-size: 24px;
}

.analysis-title {
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 600;
}

.radar-title {
    font-size: 24px;
    color: var(--primary-magenta);
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.radar-chart-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px;
    overflow: visible;
    width: 100%;
}

.radar-svg {
    max-width: 100%;
    height: auto;
    overflow: visible;
}

.radar-label-group {
    pointer-events: none;
}

.radar-label {
    fill: var(--text-dark);
    font-size: 16px;
    font-weight: 600;
}

.radar-scale-mark {
    fill: var(--text-gray);
    font-size: 12px;
    font-weight: 500;
}

.radar-explanation {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--bg-pink);
    padding: 15px;
    border-radius: 8px;
}

.radar-text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    flex: 1;
}

/* 维度详细解析样式 */
.dimensions-detail-section {
    margin-bottom: 40px;
}

.dimensions-detail-title {
    font-size: 28px;
    color: var(--text-dark);
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.dimensions-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.dimension-detail-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
}

.dimension-detail-card:hover {
    box-shadow: 0 4px 20px rgba(214, 51, 132, 0.15);
    border-color: var(--primary-pink);
}

.dimension-detail-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.dimension-icon {
    font-size: 28px;
}

.dimension-name {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
}

.dimension-score-display {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.dimension-label {
    text-align: center;
    margin-bottom: 20px;
}

.dimension-label-text {
    display: inline-block;
    background: var(--primary-pink);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.dimension-section {
    margin-bottom: 20px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.section-icon {
    font-size: 20px;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.section-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
    padding-left: 30px;
}

.dimension-section.suggestions {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05), rgba(214, 51, 132, 0.05));
    padding: 20px;
    border-radius: 12px;
}

.suggestions-list {
    padding-left: 30px;
}

.suggestion-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.suggestion-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
}

.suggestion-item:last-child {
    margin-bottom: 0;
}

.suggestion-check {
    color: var(--primary-magenta);
    font-weight: 700;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.suggestion-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
    flex: 1;
}

/* 结果页面尾部 */
.result-page-footer {
    margin-top: 60px;
    padding: 40px 20px;
    background: var(--white);
    border-top: 1px solid var(--border-gray);
}

.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-btn.home-btn {
    background: var(--white);
    color: var(--primary-magenta);
    border: 2px solid var(--primary-magenta);
}

.footer-btn.home-btn:hover {
    background: var(--primary-magenta);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 51, 132, 0.3);
}

.footer-btn.retest-btn {
    background: var(--primary-magenta);
    color: var(--white);
}

.footer-btn.retest-btn:hover {
    background: var(--primary-pink);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 51, 132, 0.3);
}

.footer-btn-icon {
    font-size: 18px;
}

.footer-notice {
    margin-bottom: 30px;
}

.notice-box {
    background: var(--light-pink);
    border: 1px solid var(--primary-pink);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.notice-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.notice-text {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
    flex: 1;
    margin: 0;
}

.footer-privacy {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.privacy-item {
    display: inline-flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-gray);
    text-align: left;
    max-width: 600px;
}

.privacy-item:last-child {
    margin-bottom: 0;
}

.privacy-icon {
    font-size: 20px;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.privacy-text {
    flex: 1;
    line-height: 1.6;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }

    .main-title {
        font-size: 28px;
    }

    .subtitle {
        font-size: 14px;
    }

    .heart-icon {
        font-size: 50px;
    }

    .dimensions-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .dimension-card {
        padding: 25px 15px;
    }

    .input-wrapper {
        flex-direction: column;
    }

    .submit-btn {
        width: 100%;
    }

    .code-link {
        margin-top: 15px;
    }

    .question-text {
        font-size: 20px;
    }

    .quiz-footer {
        flex-direction: column;
    }

    .nav-btn {
        width: 100%;
    }

    .next-btn {
        margin-left: 0;
    }

    .privacy-box {
        padding: 20px;
    }

    .privacy-list li {
        font-size: 13px;
    }
    
    /* 结果页面平板端优化 */
    .result-page-header {
        padding: 50px 20px 35px;
    }
    
    .result-heart-icon {
        font-size: 70px;
    }
    
    .result-page-title {
        font-size: 28px;
    }
    
    .dimensions-detail-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .ayp-main-card {
        padding: 25px;
    }
    
    .analysis-card {
        padding: 25px;
    }
    
    .radar-svg {
        width: 100%;
        max-width: 500px;
    }
    
    .circular-progress {
        transform: scale(0.9);
    }
    
    .progress-score {
        font-size: 40px;
    }
    
    .ayp-explanation,
    .ayp-traits {
        padding: 15px;
    }
    
    .explanation-text,
    .trait-item {
        font-size: 15px;
    }
    
    .dimension-section {
        margin-bottom: 15px;
    }
    
    .section-text {
        font-size: 14px;
        padding-left: 25px;
    }
    
    .suggestion-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 24px;
    }

    .card-title {
        font-size: 18px;
    }

    .card-desc {
        font-size: 13px;
    }

    .start-btn {
        padding: 15px 40px;
        font-size: 16px;
    }

    .question-text {
        font-size: 18px;
    }

    .option-item {
        padding: 15px;
        font-size: 15px;
        gap: 12px;
    }
    
    .option-emoji {
        font-size: 24px;
        width: 35px;
    }
    
    /* 结果页面移动端优化 */
    .result-page-header {
        padding: 40px 15px 30px;
    }
    
    .result-heart-icon {
        font-size: 60px;
        margin-bottom: 15px;
    }
    
    .result-page-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .result-page-subtitle {
        font-size: 14px;
    }
    
    .result-content {
        padding: 20px 15px;
    }
    
    .ayp-main-card {
        padding: 20px;
    }
    
    .progress-score {
        font-size: 36px;
    }
    
    .ayp-label-main {
        font-size: 20px;
    }
    
    .dimensions-detail-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dimension-detail-card {
        padding: 20px;
    }
    
    .radar-chart-container {
        overflow-x: auto;
        overflow-y: visible;
        padding: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .radar-svg {
        min-width: 400px;
        max-width: 100vw;
        height: auto;
    }
    
    .radar-chart-container {
        padding: 5px;
        margin-bottom: 15px;
    }
    
    .radar-label {
        font-size: 14px;
    }
    
    .radar-scale-mark {
        font-size: 10px;
    }
    
    .footer-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-btn {
        width: 100%;
        justify-content: center;
    }
    
    .result-page-footer {
        padding: 30px 15px;
    }
    
    .notice-box {
        padding: 15px;
    }
    
    .notice-text {
        font-size: 14px;
    }
    
    .privacy-item {
        font-size: 13px;
        max-width: 100%;
        flex-wrap: wrap;
    }
    
    .privacy-text {
        font-size: 13px;
    }
    
    /* 移动端额外优化 */
    .code-input-section {
        margin-bottom: 40px;
    }
    
    .cta-section {
        margin-bottom: 40px;
    }
    
    .privacy-section {
        margin-top: 30px;
    }
    
    .quiz-container {
        padding: 30px 15px;
    }
    
    .progress-text {
        font-size: 14px;
    }
    
    .circular-progress {
        transform: scale(0.85);
    }
    
    .progress-score {
        font-size: 32px;
    }
    
    .progress-label {
        font-size: 16px;
    }
    
    .ayp-card-header {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .ayp-card-title {
        font-size: 18px;
    }
    
    .ayp-label-main {
        font-size: 18px;
    }
    
    .ayp-label-sub {
        font-size: 14px;
    }
    
    .slider-labels {
        font-size: 12px;
    }
    
    .explanation-title,
    .traits-title {
        font-size: 16px;
    }
    
    .dimension-name {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 15px;
    }
    
    .radar-title {
        font-size: 20px;
    }
    
    .radar-text {
        font-size: 13px;
    }
    
    .dimensions-detail-title {
        font-size: 24px;
    }
    
    .analysis-title {
        font-size: 18px;
    }
}
