﻿        .detail-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
            margin-bottom: 8px;
        }

        .back-btn {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 15px;
            color: var(--text-main);
            background: none;
            border: none;
            padding: 8px 0;
        }

        .reading-time {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 13px;
            color: var(--text-sub);
        }

        /* 뉴스 콘텐츠 */
        .news-content-card {
            background: var(--white);
            border-radius: var(--radius-L);
            padding: 16px 12px;
            margin-bottom: 20px;
        }

        .news-meta {
            display: flex;
            gap: 12px;
            font-size: 12px;
            color: var(--text-sub);
            margin-bottom: 12px;
        }

        .news-detail-title {
            font-size: 22px;
            font-weight: 700;
            line-height: 1.4;
            color: var(--text-main);
            margin-bottom: 20px;
        }

        /* 🔥수능기출HOT🔥 반짝이는 뱃지 */
        .suneung-hot-badge {
            display: inline-block;
            background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff6b35 100%);
            background-size: 200% 200%;
            color: white;
            padding: 4px 12px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 800;
            margin-right: 8px;
            animation: shimmer 2s ease-in-out infinite, pulse 1.5s ease-in-out infinite;
            box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
            text-shadow: 0 1px 2px rgba(0,0,0,0.2);
        }

        @keyframes shimmer {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4); }
            50% { transform: scale(1.02); box-shadow: 0 4px 12px rgba(255, 107, 53, 0.6); }
        }
        
        /* 경험치 획득 화면 효과 */
        .xp-celebration-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 10000;
            pointer-events: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .xp-celebration-content {
            text-align: center;
            animation: xpCelebration 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        
        .xp-celebration-text {
            font-size: 64px;
            font-weight: 800;
            background: linear-gradient(135deg, #FFD700, #FFA500, #FF6B6B);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
            margin-bottom: 16px;
            line-height: 1.2;
        }
        
        .xp-celebration-subtitle {
            font-size: 24px;
            color: var(--accent);
            font-weight: 600;
            opacity: 0;
            animation: xpFadeIn 0.5s ease-out 0.5s forwards;
        }
        
        @keyframes xpCelebration {
            0% {
                transform: scale(0) rotate(-180deg);
                opacity: 0;
            }
            50% {
                transform: scale(1.2) rotate(0deg);
                opacity: 1;
            }
            100% {
                transform: scale(1) rotate(0deg);
                opacity: 1;
            }
        }
        
        @keyframes xpFadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* 별 파티클 효과 */
        .xp-star {
            position: absolute;
            font-size: 24px;
            color: #FFD700;
            animation: starFloat 2s ease-out forwards;
            pointer-events: none;
        }
        
        @keyframes starFloat {
            0% {
                opacity: 1;
                transform: translate(0, 0) scale(1) rotate(0deg);
            }
            100% {
                opacity: 0;
                transform: translate(var(--tx), var(--ty)) scale(0) rotate(360deg);
            }
        }

        .news-body {
            font-size: 17px;
            line-height: 1.9;
            color: var(--text-main);
            word-break: break-all;
            text-align: left;
        }

        .news-body h1 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-main);
            margin: 24px 0 16px 0;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--primary);
        }

        .news-body h2 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-main);
            margin: 20px 0 12px 0;
        }

        .news-body h3 {
            font-size: 19px;
            font-weight: 700;
            color: var(--primary);
            margin: 24px 0 12px 0;
        }

        .news-body ul {
            margin: 12px 0;
            padding-left: 20px;
        }

        .news-body li {
            margin-bottom: 8px;
            line-height: 1.6;
        }

        .news-body p {
            margin-bottom: 12px;
        }

        .news-body strong {
            color: var(--primary);
            font-weight: 600;
        }

        .news-body hr {
            border: none;
            height: 1px;
            background: linear-gradient(to right, transparent, #d1d5db, transparent);
            margin: 24px 0;
        }

        .news-body p {
            margin-bottom: 16px;
        }

        /* 키워드 하이라이트 */
        .keyword-highlight {
            background: linear-gradient(transparent 60%, #FFF3CD 60%);
            font-weight: 600;
            cursor: pointer;
            position: relative;
        }

        /* 키워드 팝업 */
        .keyword-popup {
            position: fixed;
            bottom: 100px;
            left: 20px;
            right: 20px;
            max-width: 440px;
            margin: 0 auto;
            background: var(--white);
            border-radius: var(--radius-L);
            padding: 20px;
            box-shadow: 0 -8px 32px rgba(0,0,0,0.15);
            z-index: 100;
            transform: translateY(100%);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .keyword-popup.show {
            transform: translateY(0);
            opacity: 1;
        }

        .keyword-popup-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        .keyword-popup-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .keyword-popup-close {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--bg-base);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-sub);
        }

        .keyword-popup-content {
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-main);
        }

        /* 챗봇 섹션 */
        .chatbot-section {
            background: linear-gradient(135deg, var(--primary) 0%, #1a2f4d 100%);
            border-radius: var(--radius-L);
            padding: 20px;
            margin-bottom: 20px;
            color: white;
        }

        .chatbot-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .chatbot-avatar {
            width: 48px;
            height: 48px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .chatbot-info h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 2px;
        }

        .chatbot-info p {
            font-size: 12px;
            opacity: 0.8;
        }

        .chatbot-suggestions {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .suggestion-btn {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: var(--radius-M);
            padding: 12px 16px;
            color: white;
            font-size: 14px;
            text-align: left;
            transition: all 0.2s;
        }

        .suggestion-btn:hover {
            background: rgba(255,255,255,0.2);
        }

        .chatbot-input-area {
            display: flex;
            gap: 8px;
            margin-top: 12px;
        }

        .chatbot-input {
            flex: 1;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: var(--radius-M);
            padding: 12px 16px;
            color: white;
            font-size: 14px;
        }

        .chatbot-input::placeholder {
            color: rgba(255,255,255,0.5);
        }

        .chatbot-send-btn {
            width: 48px;
            background: var(--accent);
            border: none;
            border-radius: var(--radius-M);
            color: white;
            font-size: 18px;
        }

        .chatbot-mic-btn {
            width: 48px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: var(--radius-M);
            color: white;
            font-size: 18px;
            transition: all 0.2s;
        }

        .chatbot-mic-btn.recording {
            background: #EF4444;
            border-color: #EF4444;
            animation: micPulse 1s ease-in-out infinite;
        }

        @keyframes micPulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.4); }
            50% { box-shadow: 0 0 0 8px rgba(239,68,68,0); }
        }

        .stt-status {
            font-size: 12px;
            color: rgba(255,255,255,0.7);
            text-align: center;
            margin-top: 6px;
            min-height: 16px;
        }

        /* 챗봇 응답 */
        .chatbot-response {
            background: rgba(255,255,255,0.1);
            border-radius: var(--radius-M);
            padding: 16px;
            margin-top: 16px;
            font-size: 14px;
            line-height: 1.7;
            display: none;
        }

        .chatbot-response.show {
            display: block;
        }

        .chatbot-response.typing::after {
            content: '●●●';
            animation: typing 1s infinite;
        }

        @keyframes typing {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        /* 퀴즈 섹션 */
        .quiz-section {
            background: var(--white);
            border-radius: var(--radius-L);
            padding: 24px;
            margin-bottom: 20px;
        }

        .quiz-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .quiz-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-main);
        }

        .quiz-progress-badge {
            font-size: 12px;
            padding: 6px 12px;
            background: var(--primary-bg);
            color: var(--primary);
            border-radius: 20px;
            font-weight: 600;
        }

        .quiz-question-card {
            background: var(--bg-base);
            border-radius: var(--radius-M);
            padding: 20px;
            margin-bottom: 16px;
        }

        .quiz-question-card.locked {
            opacity: 0.5;
            pointer-events: none;
        }

        .quiz-question-num {
            font-size: 12px;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 8px;
        }

        .quiz-question-text {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 16px;
            line-height: 1.5;
        }

        .quiz-options {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .quiz-option {
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
            gap: 12px;
            padding: 14px 16px;
            background: var(--white);
            border: 2px solid var(--line);
            border-radius: var(--radius-M);
            font-size: 14px;
            color: var(--text-main);
            transition: all 0.2s;
            text-align: left;
            width: 100%;
        }

        .quiz-option:hover {
            border-color: var(--primary);
        }

        .quiz-option.selected {
            border-color: var(--primary);
            background: var(--primary-bg);
        }

        .quiz-option.correct {
            border-color: #10B981;
            background: #D1FAE5;
        }

        .quiz-option.wrong {
            border-color: #EF4444;
            background: #FEE2E2;
        }

        .quiz-option-marker {
            width: 24px;
            height: 24px;
            min-width: 24px;
            border: 2px solid var(--line);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-sub);
            flex-shrink: 0;
            margin-top: 2px;
        }
        
        .quiz-option > span:last-child {
            flex: 1;
            text-align: left;
            line-height: 1.5;
        }

        .quiz-option.selected .quiz-option-marker {
            border-color: var(--primary);
            background: var(--primary);
            color: white;
        }

        .quiz-option.correct .quiz-option-marker {
            border-color: #10B981;
            background: #10B981;
            color: white;
        }

        .quiz-option.wrong .quiz-option-marker {
            border-color: #EF4444;
            background: #EF4444;
            color: white;
        }

        .quiz-submit-btn {
            width: 100%;
            padding: 16px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: var(--radius-M);
            font-size: 16px;
            font-weight: 700;
            margin-top: 16px;
        }

        .quiz-submit-btn:disabled {
            background: var(--text-sub);
            cursor: not-allowed;
        }

        /* 퀴즈 결과 */
        .quiz-result {
            text-align: center;
            padding: 32px 20px;
            display: none;
        }

        .quiz-result.show {
            display: block;
        }

        .quiz-result-icon {
            font-size: 64px;
            margin-bottom: 16px;
        }

        .quiz-result-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 8px;
        }

        .quiz-result-score {
            font-size: 14px;
            color: var(--text-sub);
            margin-bottom: 24px;
        }

        .quiz-result-btn {
            width: 100%;
            padding: 16px;
            border-radius: var(--radius-M);
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .quiz-result-btn.primary {
            background: var(--primary);
            color: white;
            border: none;
        }

        .quiz-result-btn.secondary {
            background: transparent;
            border: 2px solid var(--line);
            color: var(--text-main);
        }

        /* TTS 오디오 플레이어 */
        .tts-player-section {
            background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
            border-radius: var(--radius-M);
            padding: 14px 16px;
            margin-bottom: 20px;
            display: none;
        }

        .tts-player-section.show {
            display: block;
        }

        .tts-player-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }

        .tts-play-btn {
            width: 44px;
            height: 44px;
            min-width: 44px;
            border-radius: 50%;
            background: var(--primary);
            border: none;
            color: white;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(15, 31, 56, 0.3);
            transition: transform 0.15s, box-shadow 0.15s;
        }

        .tts-play-btn:active {
            transform: scale(0.95);
        }

        .tts-play-btn.playing {
            background: var(--accent);
        }

        .tts-player-info {
            flex: 1;
            min-width: 0;
        }

        .tts-player-info h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 2px;
        }

        .tts-player-info p {
            font-size: 12px;
            color: var(--text-sub);
            margin: 0;
        }

        .tts-controls-right {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .tts-vol-btn {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--white);
            border: 1px solid var(--line);
            color: var(--text-main);
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .tts-speed-btn {
            padding: 4px 10px;
            border-radius: 12px;
            background: var(--white);
            border: 1px solid var(--line);
            font-size: 12px;
            font-weight: 600;
            color: var(--text-main);
        }

        .tts-volume-slider {
            display: none;
            align-items: center;
            gap: 8px;
            padding: 8px 4px;
            margin-bottom: 6px;
        }

        .tts-volume-slider.show {
            display: flex;
        }

        .tts-volume-slider input[type="range"] {
            flex: 1;
            height: 4px;
            -webkit-appearance: none;
            appearance: none;
            background: var(--line);
            border-radius: 2px;
            outline: none;
        }

        .tts-volume-slider input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--primary);
            cursor: pointer;
        }

        .tts-progress-bar {
            width: 100%;
            height: 6px;
            background: rgba(0,0,0,0.08);
            border-radius: 3px;
            overflow: hidden;
            cursor: pointer;
        }

        .tts-progress-fill {
            height: 100%;
            width: 0%;
            background: var(--primary);
            border-radius: 3px;
            transition: width 0.3s linear;
        }

        .tts-time-row {
            display: flex;
            justify-content: space-between;
            font-size: 11px;
            color: var(--text-sub);
            margin-top: 4px;
        }

        .tts-generate-btn {
            width: 100%;
            padding: 14px;
            background: var(--white);
            border: 2px dashed var(--line);
            border-radius: var(--radius-M);
            font-size: 14px;
            font-weight: 600;
            color: var(--text-sub);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-bottom: 20px;
            display: none;
        }

        .tts-generate-btn.show {
            display: flex;
        }

        .tts-generate-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        /* 읽기 완료 버튼 */
        .complete-reading-btn {
            position: fixed;
            bottom: 90px;
            left: 20px;
            right: 20px;
            max-width: 440px;
            margin: 0 auto;
            padding: 16px;
            background: var(--accent);
            color: white;
            border: none;
            border-radius: var(--radius-M);
            font-size: 16px;
            font-weight: 700;
            box-shadow: 0 4px 16px rgba(184, 158, 95, 0.4);
            z-index: 50;
            display: none;
        }

        .complete-reading-btn.show {
            display: block;
        }

        /* 로딩 */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255,255,255,0.9);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 200;
        }

        .loading-spinner {
            width: 40px;
            height: 40px;
            border: 3px solid var(--line);
            border-top-color: var(--primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* 오류 상태 */
        .error-state {
            text-align: center;
            padding: 60px 20px;
        }

        .error-state i {
            font-size: 64px;
            color: var(--text-sub);
            margin-bottom: 16px;
        }

        .error-state h2 {
            font-size: 18px;
            color: var(--text-main);
            margin-bottom: 8px;
        }

        .error-state p {
            font-size: 14px;
            color: var(--text-sub);
        }

        /* 프리미엄 안내 화면 */
        .premium-gate {
            text-align: center;
            padding: 48px 16px;
            max-width: 480px;
            margin: 0 auto;
        }

        .premium-gate-icon {
            font-size: 64px;
            margin-bottom: 16px;
            animation: crownBounce 2s ease-in-out infinite;
        }

        @keyframes crownBounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
        }

        .premium-gate-title {
            font-size: 22px;
            font-weight: 700;
            color: #B89E5F;
            margin-bottom: 10px;
        }

        .premium-gate-desc {
            font-size: 15px;
            color: var(--text-sub);
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .premium-gate-benefits {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 28px;
            text-align: left;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-main);
            padding: 10px 14px;
            background: #F8F6F0;
            border-radius: 10px;
            white-space: nowrap;
        }

        .benefit-item i {
            font-size: 18px;
            color: #B89E5F;
            flex-shrink: 0;
        }

        .premium-gate-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 36px;
            background: linear-gradient(135deg, #B89E5F 0%, #D4B96A 100%);
            color: #fff;
            border-radius: 28px;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            box-shadow: 0 4px 16px rgba(184, 158, 95, 0.35);
            transition: all 0.2s;
        }

        .premium-gate-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(184, 158, 95, 0.5);
        }

        .premium-gate-btn i {
            font-size: 20px;
        }

        .premium-gate-sub-link {
            display: block;
            margin-top: 12px;
            font-size: 13px;
            color: var(--accent, #B89E5F);
            text-decoration: underline;
        }

        .premium-gate-back {
            display: block;
            margin: 12px auto 0;
            background: none;
            border: none;
            color: var(--text-sub);
            font-size: 14px;
            cursor: pointer;
            padding: 8px 16px;
        }

        .premium-gate-back:hover {
            color: var(--text-main);
        }

        /* 토스트 */
        .toast-message {
            position: fixed;
            bottom: 160px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--text-main);
            color: white;
            padding: 12px 24px;
            border-radius: var(--radius-M);
            font-size: 14px;
            z-index: 1000;
        }

        /* 핵심 키워드 섹션 */
        .keywords-section {
            margin-top: 20px;
            padding: 10px 6px;
            background: linear-gradient(135deg, #E8F4FD 0%, #D4EDFF 100%);
            border-radius: 10px;
            border-top: 3px solid #2196F3;
        }

        .keywords-section-header {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 10px;
        }

        .keywords-section-header h3 {
            font-size: 15px;
            font-weight: 700;
            color: #1565C0;
            margin: 0;
        }

        .keywords-list {
            list-style: none;
            padding: 0 !important;
            margin: 0 !important;
            padding-inline-start: 0 !important;
            -webkit-padding-start: 0 !important;
        }

        .keyword-item {
            background: #fff;
            padding: 6px 8px;
            border-radius: 6px;
            margin-bottom: 6px;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .keyword-item:last-child {
            margin-bottom: 0;
        }

        .keyword-term {
            font-weight: 700;
            color: #1565C0;
            font-size: 17px;
            margin-bottom: 2px;
        }

        .keyword-definition {
            color: #333;
            font-size: 17px;
            line-height: 1.6;
        }

        .keyword-tag {
            background: #fff;
            color: #1565C0;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            border: 1px solid #90CAF9;
            cursor: pointer;
            transition: all 0.2s;
        }

        .keyword-tag:hover {
            background: #1565C0;
            color: #fff;
        }

        /* 우리 생활에 미치는 영향 섹션 */
        .impact-section {
            margin-top: 20px;
            padding: 12px 10px;
            background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
            border-radius: 10px;
            border-top: 3px solid #4CAF50;
        }

        .impact-section-header {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 8px;
        }

        .impact-section-header h3 {
            font-size: 15px;
            font-weight: 700;
            color: #2E7D32;
            margin: 0;
        }

        .impact-content {
            color: #1B5E20;
            font-size: 17px;
            line-height: 1.7;
        }

        /* 수능 연계 섹션 */
        .suneung-section {
            margin-top: 24px;
            padding: 14px 10px;
            background: linear-gradient(135deg, #FFF9E6 0%, #FFF3CD 100%);
            border-radius: 12px;
            border: none;
            border-top: 3px solid #F0AD4E;
        }

        .suneung-section-header {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 8px;
        }

        .suneung-section-header h3 {
            font-size: 16px;
            font-weight: 700;
            color: #8A6D3B;
            margin: 0;
        }

        .suneung-section-header .emoji {
            font-size: 18px;
        }

        .suneung-intro {
            color: #856404;
            font-size: 17px;
            margin-bottom: 12px;
            line-height: 1.6;
        }

        .suneung-list {
            list-style: none;
            padding: 0 !important;
            padding-inline-start: 0 !important;
            margin: 0;
            -webkit-padding-start: 0 !important;
        }

        .suneung-item {
            margin-bottom: 10px;
            padding: 10px 6px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 1px 4px rgba(0,0,0,0.06);
        }

        .suneung-item:last-child {
            margin-bottom: 0;
        }

        .suneung-item-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 6px;
            gap: 8px;
        }

        .suneung-keyword {
            font-weight: 700;
            color: #333;
            font-size: 17px;
            flex: 1;
        }

        .suneung-badge {
            display: inline-block;
            padding: 3px 8px;
            background: #F0AD4E;
            color: white;
            border-radius: 10px;
            font-size: 11px;
            font-weight: 600;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .suneung-source {
            font-size: 13px;
            color: #666;
            margin-bottom: 8px;
        }

        .suneung-summary {
            font-size: 17px;
            color: #555;
            padding: 0;
            margin: 0;
            border-left: none;
            line-height: 1.7;
            word-break: keep-all;
        }
        .suneung-summary strong {
            font-weight: 600;
            color: #333;
        }

        .suneung-cta {
            margin-top: 12px;
            text-align: center;
            font-size: 13px;
            color: #8A6D3B;
        }

.suneung-cta .emoji {
    font-size: 14px;
}

/* Utility & chat/TTS */
.tts-vol-icon-sm {
    font-size: 12px;
    color: var(--text-sub);
}

.tts-btn-icon {
    font-size: 14px;
}

.summary-hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #d1d5db, transparent);
    margin: 16px 0;
}

.chat-msg-user {
    margin-bottom: 12px;
    padding: 10px 14px;
    background: rgba(184, 158, 95, 0.2);
    border-radius: 12px;
    text-align: right;
}

.chat-msg-bot {
    margin-bottom: 16px;
    position: relative;
}

.chat-msg-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.chat-tts-btn {
    background: rgba(184, 158, 95, 0.15);
    border: 1px solid var(--primary);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    min-width: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.2s;
}

.chat-tts-btn i {
    font-size: 18px;
}

.login-prompt-link {
    color: #B89E5F;
}

.error-back-btn {
    margin-top: 24px;
    padding: 12px 24px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
