.quiz-body, .result-body {
    min-height: 100vh;
}

.quiz-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: rgba(250, 252, 250, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.back-btn:hover {
    color: var(--primary);
    background: rgba(13, 147, 115, 0.08);
}

.header-center {
    text-align: center;
    flex: 1;
}

.quiz-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    max-width: 300px;
    margin: 0 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.header-right {
    width: 80px;
}

.quiz-main {
    position: relative;
    z-index: 10;
    max-width: 720px;
    margin: 0 auto;
    padding: 90px 1.5rem 2rem;
}

.progress-section {
    margin-bottom: 1.5rem;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
}

.progress-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.progress-percent {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(13, 147, 115, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 4px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0%;
}

.question-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-md);
    animation: cardSlideIn 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.question-number {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-light);
    background: rgba(13, 147, 115, 0.08);
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    margin-bottom: 1.25rem;
    letter-spacing: 0.08em;
}

.question-text {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 3vw, 1.4rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.options-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.option-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: left;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.option-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-light);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    border-radius: 0 4px 4px 0;
}

.option-btn:hover {
    background: rgba(13, 147, 115, 0.06);
    border-color: rgba(13, 147, 115, 0.2);
    transform: translateX(4px);
}

.option-btn:hover::before {
    transform: scaleY(1);
}

.option-btn.selected {
    background: linear-gradient(135deg, rgba(13, 147, 115, 0.08) 0%, rgba(45, 212, 168, 0.06) 100%);
    border-color: var(--primary);
    transform: translateX(6px);
    box-shadow: 0 4px 16px rgba(13, 147, 115, 0.12);
}

.option-btn.selected::before {
    transform: scaleY(1);
    background: var(--primary);
}

.option-indicator {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
}

.option-btn.selected .option-indicator {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.option-text {
    flex: 1;
    font-weight: 450;
}

.quiz-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    gap: 1rem;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn-prev {
    background: rgba(13, 147, 115, 0.06);
    color: var(--text-secondary);
}

.nav-btn-prev:not(:disabled):hover {
    background: rgba(13, 147, 115, 0.12);
    color: var(--primary);
}

.nav-btn-next {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(13, 147, 115, 0.25);
}

.nav-btn-next:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 147, 115, 0.35);
}

.nav-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.quiz-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(13, 147, 115, 0.12);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(13, 147, 115, 0.4);
}

.dot.answered {
    background: var(--primary-light);
    opacity: 0.7;
}

.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--text-primary);
    color: #fff;
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-size: 0.9rem;
    z-index: 999;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Result Page Styles */
.result-main {
    position: relative;
    z-index: 10;
    max-width: 680px;
    margin: 0 auto;
    padding: 90px 1.5rem 3rem;
}

.result-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-lg);
    animation: resultFadeIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes resultFadeIn {
    from { opacity: 0; transform: translateY(30px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.result-header-area {
    text-align: center;
    margin-bottom: 0.5rem;
}

.result-scale-name {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
}

/* 核心结果区：分数 + 等级 + 描述 整合 */
.result-core-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.score-display {
    display: flex;
    justify-content: center;
}

.score-circle {
    position: relative;
    width: 140px;
    height: 140px;
}

.score-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.score-ring {
    transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.score-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.score-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.score-total {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.4;
    margin-top: 2px;
}

.score-hint {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0.5rem 0 0 0;
    opacity: 0.7;
}

/* 结果信息卡片 */
.result-info-card {
    width: 100%;
    background: linear-gradient(135deg, rgba(13, 147, 115, 0.06) 0%, rgba(45, 212, 168, 0.08) 100%);
    border: 1px solid rgba(13, 147, 115, 0.15);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
}

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

.info-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.info-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
}

.level-value {
    color: var(--primary);
}

.info-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(13, 147, 115, 0.2), transparent);
    margin: 0.75rem 0;
}

.desc-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
}

.info-desc {
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.6;
}

/* AI Section Styles */
.ai-section {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.04) 0%, rgba(139, 92, 246, 0.03) 100%);
    border: 1px solid rgba(99, 102, 241, 0.12);
    border-radius: var(--radius-sm);
    padding: 1.35rem;
    margin-bottom: 1.75rem;
}

.ai-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    gap: 0.75rem;
}

.ai-title {
    font-family: var(--font-display);
    font-size: 1.02rem;
    font-weight: 700;
    color: #6366F1;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0;
}

.ai-icon {
    font-size: 1.15rem;
}

.ai-trigger-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.15rem;
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    color: #fff;
    border: none;
    border-radius: 22px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 3px 12px rgba(99, 102, 241, 0.25);
}

.ai-trigger-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.35);
}

.ai-trigger-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

.ai-content-wrap {
    min-height: 60px;
}

.ai-placeholder {
    font-size: 0.88rem;
    color: var(--text-muted);
    text-align: center;
    padding: 1rem 0;
    margin: 0;
}

.ai-output {
    font-size: 0.91rem;
    color: var(--text-primary);
    line-height: 1.8;
    white-space: pre-wrap;
    word-break: break-word;
}

.ai-loading {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.75rem 0;
    font-size: 0.88rem;
    color: #6366F1;
}

.ai-spinner {
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(99, 102, 241, 0.15);
    border-top-color: #6366F1;
    border-radius: 50%;
    animation: aiSpin 0.7s linear infinite;
    flex-shrink: 0;
}

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

/* Consult Section */
.consult-section {
    background: linear-gradient(135deg, rgba(13, 147, 115, 0.06) 0%, rgba(45, 212, 168, 0.08) 100%);
    border: 1.5px solid rgba(13, 147, 115, 0.2);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    margin-top: 1rem;
}

.consult-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
}

.consult-icon {
    font-size: 1.4rem;
}

.consult-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.consult-content {
    padding-left: 2rem;
}

.consult-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0 0 0.6rem 0;
}

.consult-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.6);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px dashed rgba(13, 147, 115, 0.3);
}

.consult-location svg {
    color: var(--primary);
    flex-shrink: 0;
}

.consult-location strong {
    color: var(--primary);
    font-weight: 700;
}

.consult-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-sm);
    border: 1px dashed rgba(13, 147, 115, 0.3);
}

.consult-qr-img {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    object-fit: contain;
}

.consult-qr-tip {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    text-align: center;
}

.consult-wx-id {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
    text-align: center;
    font-family: monospace;
    background: rgba(13, 147, 115, 0.08);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
}

/* Action Buttons */
.result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 1rem;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.action-btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(13, 147, 115, 0.25);
}

.action-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 147, 115, 0.35);
}

.action-btn-secondary {
    background: linear-gradient(135deg, var(--accent) 0%, #D97706 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.25);
}

.action-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
}

.action-btn-outline {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--border);
}

.action-btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(13, 147, 115, 0.04);
}

.result-footer-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.25rem;
}

.result-footer-note p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.result-time {
    margin-top: 0.5rem !important;
    font-size: 0.78rem !important;
    opacity: 0.7;
}

@media (max-width: 600px) {
    .quiz-main, .result-main {
        padding: 80px 1rem 2rem;
    }

    .question-card {
        padding: 1.75rem 1.25rem;
    }

    .question-text {
        font-size: 1.1rem;
    }

    .option-btn {
        padding: 0.85rem 1rem;
        font-size: 0.92rem;
    }

    .nav-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.88rem;
    }

    .score-circle {
        width: 130px;
        height: 130px;
    }

    .score-number {
        font-size: 2.2rem;
    }

    .score-total {
        font-size: 0.82rem;
    }

    .result-card {
        padding: 1.75rem 1.25rem;
    }

    .result-actions {
        flex-direction: column;
    }

    .action-btn {
        justify-content: center;
    }

    .quiz-title {
        font-size: 1.1rem;
        max-width: 180px;
    }

    .back-btn span {
        display: none;
    }

    .ai-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .ai-trigger-btn {
        width: 100%;
        justify-content: center;
    }

    .ai-section {
        padding: 1.1rem;
    }

    .consult-section {
        padding: 1rem;
    }

    .consult-content {
        padding-left: 0;
    }

    .consult-location {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
        font-size: 0.9rem;
    }

    .consult-qr-img {
        width: 120px;
        height: 120px;
    }

    .consult-qr-tip {
        font-size: 0.8rem;
    }

    .consult-wx-id {
        font-size: 0.85rem;
        padding: 0.25rem 0.6rem;
    }
}

/* Image Preview Modal */
.image-preview-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

.image-preview-modal.show {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.preview-modal-content {
    background: #fff;
    border-radius: 16px;
    max-width: 420px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

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

.preview-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(13, 147, 115, 0.1);
}

.preview-modal-header h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.preview-close-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
}

.preview-close-btn:hover {
    color: var(--text-primary);
}

.preview-image-container {
    padding: 1rem;
    display: flex;
    justify-content: center;
    background: #f8faf9;
    max-height: 60vh;
    overflow-y: auto;
}

.preview-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.preview-modal-footer {
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(13, 147, 115, 0.05) 0%, rgba(45, 212, 168, 0.08) 100%);
    border-top: 1px solid rgba(13, 147, 115, 0.1);
}

.preview-tip {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.6;
}

.preview-tip.highlight {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.preview-tip + .preview-tip {
    margin-top: 0.3rem;
}

@media (max-width: 480px) {
    .preview-modal-content {
        max-width: 95%;
        border-radius: 12px;
    }

    .preview-modal-header {
        padding: 0.85rem 1rem;
    }

    .preview-modal-header h3 {
        font-size: 1rem;
    }

    .preview-image-container {
        padding: 0.75rem;
    }

    .preview-modal-footer {
        padding: 0.85rem 1rem;
    }

    .preview-tip {
        font-size: 0.82rem;
    }

    .preview-tip.highlight {
        font-size: 0.9rem;
    }
}

/* Share Poster Template */
.share-poster-template {
    position: fixed;
    left: -9999px;
    top: 0;
    width: 375px;
    background: #fff;
    z-index: -1;
}

.poster-container {
    width: 375px;
    background: linear-gradient(180deg, #FAFCFA 0%, #EDF5F1 100%);
    padding: 30px 20px;
    font-family: 'Noto Sans SC', sans-serif;
}

.poster-header {
    text-align: center;
    margin-bottom: 25px;
}

.poster-logo {
    font-size: 40px;
    margin-bottom: 10px;
}

.poster-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 22px;
    font-weight: 800;
    color: #0D9373;
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, #0F2922 0%, #0D9373 50%, #2DD4A8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.poster-subtitle {
    font-size: 14px;
    color: #6B9380;
    margin: 0;
}

.poster-score-section {
    text-align: center;
    margin-bottom: 25px;
}

.poster-score-circle {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 15px;
}

.poster-score-circle svg {
    width: 100%;
    height: 100%;
}

.poster-score-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.poster-score-num {
    display: block;
    font-family: 'Noto Serif SC', serif;
    font-size: 42px;
    font-weight: 700;
    color: #0D9373;
    line-height: 1;
}

.poster-score-total {
    display: block;
    font-size: 14px;
    color: #6B9380;
    margin-top: 4px;
}

.poster-level-badge {
    display: inline-block;
    background: rgba(13, 147, 115, 0.1);
    border-radius: 25px;
    padding: 10px 25px;
}

.poster-level {
    display: block;
    font-family: 'Noto Serif SC', serif;
    font-size: 18px;
    font-weight: 700;
    color: #0D9373;
}

.poster-label {
    display: block;
    font-size: 12px;
    color: #6B9380;
    margin-top: 4px;
}

.poster-ai-section {
    background: rgba(99, 102, 241, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
}

.poster-ai-header {
    font-family: 'Noto Serif SC', serif;
    font-size: 15px;
    font-weight: 700;
    color: #6366F1;
    margin-bottom: 10px;
}

.poster-ai-content {
    font-size: 13px;
    color: #3D6B5A;
    line-height: 1.7;
}

.poster-footer {
    background: linear-gradient(135deg, rgba(13, 147, 115, 0.9) 0%, rgba(5, 150, 105, 0.95) 100%);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.poster-qr-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.poster-qr-img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    background: #fff;
    padding: 5px;
}

.poster-qr-text {
    flex: 1;
}

.poster-qr-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 6px 0;
}

.poster-qr-subtitle {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.poster-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 12px;
    text-align: center;
}

.poster-disclaimer p {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 4px 0;
    line-height: 1.5;
}
