/* ════════════════════════════════════════════════════════════════
   single-article-style.css — complete clean file
   Dyslexia mode removed. Focus mode fixed. Font picker updated.
════════════════════════════════════════════════════════════════ */

.get-started-btn {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    text-decoration: none;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 100px 60px 40px;
    display: grid;
    grid-template-columns: 240px 1fr 320px;
    gap: 50px;
    align-items: start;
}

.article-content {
    padding: 0 50px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.scroll-progress-container {
    position: fixed;
    left: calc(240px + 60px + 10px);
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 400px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 10px;
    z-index: 999;
    overflow: hidden;
}

.scroll-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, #8b5cf6, #6366f1, #4c1d95);
    border-radius: 10px;
    transition: height 0.1s ease-out;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.breadcrumb {
    color: #6366f1;
    font-size: 14px;
    margin-bottom: 30px;
}

.breadcrumb a {
    text-decoration: none;
    color: inherit;
}

.featured-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8b5cf6, #6366f1, #4c1d95);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.featured-badge a {
    text-decoration: none;
    color: inherit;
}

.badge-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.article-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
}

.article-subtitle {
    font-size: 20px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 40px;
}

.article-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 14px;
    line-height: 1;
}

/* ── CONTRIBUTOR BADGE ─────────────────────────────────────────── */

.contributors-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    padding: 10px 18px;
    margin-bottom: 24px;
    transition: all 0.3s;
}

.contributors-badge:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: #6366f1;
}

.contributors-icon { font-size: 16px; line-height: 1; }

.contributors-text {
    font-size: 13px;
    font-weight: 600;
    background: linear-gradient(135deg, #8b5cf6, #6366f1, #4c1d95);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ── FEATURE BADGES ────────────────────────────────────────────── */

.focus-mode-badge,
.text-size-badge,
.font-picker-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(16, 185, 129, 0.15);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.focus-mode-badge:hover,
.text-size-badge:hover,
.font-picker-badge:hover {
    background: rgba(16, 185, 129, 0.25);
}

.focus-mode-text,
.text-size-text,
.font-picker-text {
    background: linear-gradient(135deg, #10b981, #34d399, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

/* ── TEXT SIZE DROPDOWN ────────────────────────────────────────── */

.text-size-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: rgba(15, 20, 25, 0.98);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    padding: 12px;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    flex-direction: column;
    gap: 8px;
    z-index: 1000;
    min-width: 200px;
}

.text-size-dropdown.active { display: flex; }

.text-size-option {
    padding: 8px 12px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 6px;
    color: #cbd5e1;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

.text-size-option:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: #10b981;
    transform: translateX(5px);
}

/* ── FONT PICKER DROPDOWN ──────────────────────────────────────── */

.font-picker-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: rgba(15, 20, 25, 0.98);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 0;
    display: none;
    flex-direction: column;
    z-index: 1000;
    min-width: 280px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.font-picker-dropdown.active { display: flex; }

/* Did You Know panel */
.font-did-you-know {
    background: rgba(99, 102, 241, 0.12);
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
    padding: 16px 18px;
}

.font-did-you-know-label {
    font-size: 11px;
    font-weight: 700;
    color: #818cf8;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 8px;
}

.font-did-you-know-text {
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.6;
}

.font-divider {
    height: 1px;
    background: rgba(99, 102, 241, 0.15);
    display: none; /* hidden — border on panel handles separation */
}

/* Font options list */
.font-picker-dropdown .font-option {
    padding: 11px 18px;
    margin: 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(99, 102, 241, 0.08);
    color: #cbd5e1;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.font-picker-dropdown .font-option:last-child {
    border-bottom: none;
}

.font-picker-dropdown .font-option:hover,
.font-picker-dropdown .font-option.active {
    background: rgba(16, 185, 129, 0.1);
    color: #ffffff;
    padding-left: 22px;
}

.font-tag {
    font-size: 10px;
    color: #475569;
    font-family: 'Segoe UI', sans-serif !important;
    white-space: nowrap;
    transition: color 0.2s;
}

.font-picker-dropdown .font-option:hover .font-tag,
.font-picker-dropdown .font-option.active .font-tag {
    color: #64748b;
}

/* ── ARTICLE BODY ──────────────────────────────────────────────── */

.article-body {
    line-height: 1.8;
    font-size: 18px;
    color: #cbd5e1;
}

.article-body h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #ffffff;
}

.article-body p { margin-bottom: 24px; }

/* ── READSTAMPS ────────────────────────────────────────────────── */

.readstamps-panel {
    background: rgba(15, 20, 25, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 40px;
    transition: border-color 0.3s;
}

.readstamps-panel:hover { border-color: rgba(99, 102, 241, 0.45); }

.readstamps-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.readstamps-title-text {
    font-size: 13px;
    font-weight: 700;
    color: #6366f1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.readstamps-toggle {
    color: #6366f1;
    font-size: 18px;
    line-height: 1;
    transition: color 0.3s;
}

.readstamps-toggle:hover { color: #8b5cf6; }

.readstamps-list {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.readstamps-list.collapsed { display: none; }

.readstamp-btn {
    background: rgba(99, 102, 241, 0.07);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.readstamp-btn:hover {
    background: rgba(99, 102, 241, 0.13);
    border-color: #6366f1;
    transform: translateX(4px);
}

.readstamp-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
}

.readstamp-num {
    font-size: 11px;
    font-weight: 700;
    color: #6366f1;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 4px;
    padding: 2px 7px;
    flex-shrink: 0;
}

.readstamp-label {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: #cbd5e1;
    line-height: 1.4;
    transition: color 0.3s;
}

.readstamp-btn:hover .readstamp-label { color: #ffffff; }

.readstamp-expand {
    font-size: 16px;
    font-weight: 700;
    color: #6366f1;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
    flex-shrink: 0;
    transition: all 0.3s;
    cursor: pointer;
}

.readstamp-expand:hover {
    background: rgba(99, 102, 241, 0.25);
    color: #8b5cf6;
}

.readstamp-summary {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.6;
    padding: 0 16px;
    border-top: 0px solid rgba(99, 102, 241, 0.15);
}

.readstamp-summary.active {
    max-height: 200px;
    padding: 12px 16px;
    border-top-width: 1px;
}

/* ── SIDE TOOLS ────────────────────────────────────────────────── */

.highlight-tool-btn,
.text-saver-btn {
    position: fixed;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #8b5cf6, #6366f1, #4c1d95);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.highlight-tool-btn { left: calc(240px + 60px + 10px); top: calc(50% + 220px); }
.text-saver-btn     { left: calc(240px + 60px + 10px); top: calc(50% + 260px); }

.highlight-tool-btn:hover,
.text-saver-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(139, 92, 246, 0.4);
}

.highlight-tool-btn svg,
.text-saver-btn svg {
    width: 16px;
    height: 16px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.highlight-tooltip,
.text-saver-tooltip {
    position: absolute;
    left: calc(100% + 15px);
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 20, 25, 0.95);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 13px;
    color: #ffffff;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 1000;
    font-weight: 600;
}

.highlight-tooltip::before,
.text-saver-tooltip::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: rgba(139, 92, 246, 0.4);
}

.highlight-tool-btn:hover .highlight-tooltip,
.text-saver-btn:hover .text-saver-tooltip { opacity: 1; }

/* ── TEXT SAVER POPUP ──────────────────────────────────────────── */

.text-saver-popup {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(15, 20, 25, 0.98);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 16px;
    padding: 30px;
    width: 500px;
    max-width: 90vw;
    display: none;
    z-index: 10000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.text-saver-popup.active { display: block; }

.text-saver-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.text-saver-title { font-size: 20px; font-weight: 700; color: #ffffff; }

.text-saver-close {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.text-saver-close:hover {
    background: rgba(139, 92, 246, 0.3);
    border-color: #8b5cf6;
}

.text-saver-close svg { width: 16px; height: 16px; stroke: #ffffff; stroke-width: 2; }

.text-saver-textarea {
    width: 100%;
    min-height: 300px;
    background: rgba(15, 20, 25, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 20px;
    color: #ffffff;
    font-size: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    resize: vertical;
    transition: all 0.3s;
    line-height: 1.6;
}

.text-saver-textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
}

.text-saver-textarea::placeholder { color: #64748b; font-style: italic; }

.text-saver-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 9999;
}

.text-saver-overlay.active { display: block; }

/* ── ANNOTATION / HIGHLIGHT ────────────────────────────────────── */

.highlight-number {
    background: linear-gradient(135deg, #ef4444, #dc2626, #b91c1c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    cursor: pointer;
    position: relative;
}

.annotation-container { position: relative; display: inline-block; }

.annotation-line,
.annotation-line-horizontal,
.annotation-line-vertical {
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 2px;
}

.annotation-line {
    left: 50%; top: -35px;
    width: 1.5px; height: 25px;
    background: linear-gradient(to top, #ef4444, #f87171);
}

.annotation-line-horizontal {
    left: 50%; top: -35px;
    width: 130px; height: 1.5px;
    background: linear-gradient(to right, #f87171, #ef4444);
}

.annotation-line-vertical {
    left: 130px; top: -85px;
    width: 1.5px; height: 50px;
    background: linear-gradient(to top, #ef4444, #f87171);
}

.annotation-box {
    position: absolute;
    left: 50px; top: -95px;
    background: rgba(15, 20, 25, 0.98);
    border: 2px solid #ef4444;
    border-radius: 10px;
    padding: 14px 18px;
    width: 200px;
    font-size: 12px;
    color: #ffffff;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.4);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    line-height: 1.5;
}

.annotation-container:hover .annotation-line,
.annotation-container:hover .annotation-line-horizontal,
.annotation-container:hover .annotation-line-vertical,
.annotation-container:hover .annotation-box { opacity: 1; }

.annotation-container:hover .annotation-box { transform: translateY(0); }

.highlight-heading {
    background: linear-gradient(135deg, #ef4444, #dc2626, #b91c1c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
}

.data-source-annotation { position: relative; display: inline-block; }

.data-annotation-line {
    position: absolute;
    left: 100%; top: 50%;
    transform: translateY(-50%);
    width: 40px; height: 1.5px;
    background: linear-gradient(to right, #ef4444, #dc2626);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 2px;
}

.data-annotation-box {
    position: absolute;
    left: calc(100% + 45px);
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 20, 25, 0.98);
    border: 2px solid #ef4444;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 12px;
    color: #ffffff;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.4);
    opacity: 0;
    transform: translateY(-50%) translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.data-source-annotation:hover .data-annotation-line,
.data-source-annotation:hover .data-annotation-box { opacity: 1; }

.data-source-annotation:hover .data-annotation-box {
    transform: translateY(-50%) translateX(0);
}

/* ── STATS / KEY FINDINGS / TABLE ──────────────────────────────── */

.stat-card {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-number { font-size: 48px; font-weight: 700; color: #6366f1; margin-bottom: 10px; }
.stat-label  { font-size: 16px; color: #94a3b8; }

.stat-box {
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 8px;
    padding: 20px;
}

.stat-box-title {
    font-size: 14px;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-box-content { font-size: 15px; color: #cbd5e1; line-height: 1.6; }

.key-findings {
    background: rgba(15, 20, 25, 0.6);
    border-left: 4px solid #6366f1;
    padding: 30px;
    margin: 40px 0;
    border-radius: 8px;
}

.key-findings h3 { font-size: 24px; margin-bottom: 20px; color: #ffffff; }
.key-findings ul { list-style: none; padding: 0; }

.key-findings li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #cbd5e1;
}

.key-findings li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #6366f1;
    font-weight: 700;
}

.data-table { width: 100%; border-collapse: collapse; margin: 40px 0; }

.data-table th {
    background: rgba(99, 102, 241, 0.15);
    padding: 16px;
    text-align: left;
    color: #ffffff;
    font-weight: 600;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.data-table td {
    padding: 16px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: #cbd5e1;
}

.data-table tr:hover { background: rgba(99, 102, 241, 0.05); }

/* ── RESEARCHERS ───────────────────────────────────────────────── */

.written-by-section {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 2px solid rgba(99, 102, 241, 0.3);
}

.written-by-header { font-size: 36px; font-weight: 700; color: #ffffff; margin-bottom: 30px; }

.researcher-card {
    background: rgba(15, 20, 25, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.researcher-card:hover { border-color: #6366f1; transform: translateY(-2px); }

.researcher-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.researcher-name { font-size: 20px; font-weight: 700; color: #ffffff; }

.researcher-specialty {
    background: linear-gradient(135deg, #8b5cf6, #6366f1, #4c1d95);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

.researcher-bio { color: #cbd5e1; font-size: 15px; line-height: 1.7; margin-bottom: 15px; }
.researcher-socials { display: flex; gap: 15px; }

.social-link {
    color: #6366f1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s;
}

.social-link:hover { color: #8b5cf6; }

/* ── SURVEY FORM ───────────────────────────────────────────────── */

.article-survey {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid rgba(99, 102, 241, 0.3);
}

.survey-title { font-size: 28px; font-weight: 700; color: #ffffff; margin-bottom: 10px; }

.survey-subtitle {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.survey-form {
    background: rgba(15, 20, 25, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.3s;
}

.survey-form:hover { border-color: rgba(99, 102, 241, 0.4); }

.survey-input,
.survey-textarea {
    width: 100%;
    background: rgba(15, 20, 25, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s;
    box-sizing: border-box;
}

.survey-textarea { min-height: 130px; resize: vertical; line-height: 1.6; padding: 14px 16px; }

.survey-input:focus,
.survey-textarea:focus {
    outline: none;
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.08);
}

.survey-input::placeholder,
.survey-textarea::placeholder { color: #475569; }

.survey-submit {
    align-self: flex-start;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    padding: 12px 32px;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.survey-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4); }
.survey-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.survey-success {
    font-size: 14px; font-weight: 600; color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 6px; padding: 10px 14px; margin: 0;
}

.survey-error {
    font-size: 14px; font-weight: 600; color: #f87171;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 6px; padding: 10px 14px; margin: 0;
}

/* ── RIGHT SIDEBAR ─────────────────────────────────────────────── */

.sidebar-right {
    border-left: 1px solid rgba(99, 102, 241, 0.2);
    padding-left: 35px;
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    scrollbar-width: none;
}

.offer-card {
    background: rgba(15, 20, 25, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.offer-card:hover { border-color: #6366f1; transform: translateY(-2px); }

.offer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.offer-title { font-size: 16px; font-weight: 700; color: #ffffff; line-height: 1.4; margin-bottom: 8px; }

.sponsored-badge {
    background: linear-gradient(135deg, #10b981, #34d399, #059669);
    color: #ffffff; padding: 4px 10px; border-radius: 6px;
    font-size: 11px; font-weight: 700;
}

.new-badge {
    background: linear-gradient(135deg, #8b5cf6, #6366f1, #4c1d95);
    color: #ffffff; padding: 4px 10px; border-radius: 6px;
    font-size: 11px; font-weight: 700;
}

.offer-visual {
    background: rgba(99, 102, 241, 0.1);
    border-radius: 8px;
    padding: 30px;
    margin: 15px 0;
    text-align: center;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-description { color: #94a3b8; font-size: 14px; line-height: 1.5; margin-bottom: 12px; }

.offer-cta {
    background: linear-gradient(135deg, #8b5cf6, #6366f1, #4c1d95);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 14px; font-weight: 600;
    display: flex; align-items: center; gap: 6px;
}

/* ════════════════════════════════════════════════════════════════
   FOCUS MODE — single definition, no duplicates
════════════════════════════════════════════════════════════════ */

body.focus-mode .sidebar-left,
body.focus-mode .sidebar-right,
body.focus-mode .news-banner,
body.focus-mode .get-started-btn,
body.focus-mode .highlight-tool-btn,
body.focus-mode .text-saver-btn {
    display: none !important;
}

body.focus-mode .container {
    grid-template-columns: 1fr !important;
    max-width: 860px !important;
    margin: 0 auto !important;
    padding: 100px 40px 40px !important;
}

body.focus-mode .article-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

body.focus-mode .navbar {
    justify-content: center;
}

body.focus-mode .navbar-left {
    justify-content: center;
}

body.focus-mode .navbar-right {
    display: none;
}

body.focus-mode .scroll-progress-container {
    left: calc(50% - 390px);
}