:root {
    --primary-color: #dc2626;
    --primary-dark: #991b1b;
    --secondary-color: #1e293b;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-light: #64748b;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(135deg, #1e293b 0%, #dc2626 100%);
    background-size: cover;
    background-position: center 35%;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 3rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.8) 0%,
        rgba(220, 38, 38, 0.6) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(220, 38, 38, 0.9);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 0.25rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Merriweather', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.hero-divider {
    color: rgba(255, 255, 255, 0.4);
}

.hero-image-credit {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

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

/* Navigation */
.navbar {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-brand h1 {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.025em;
}

.nav-brand span {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    border-left: 2px solid var(--border-color);
    padding-left: 0.75rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

/* Main Layout */
.main-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Blog Post */
.blog-post {
    background: var(--bg-primary);
}

.post-header {
    margin-bottom: 3rem;
}

.post-category {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.post-title {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-item svg {
    color: var(--text-light);
}

/* Post Content */
.post-content {
    font-family: 'Merriweather', serif;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.post-summary {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-left: 4px solid var(--primary-color);
    border-radius: 0.5rem;
}

.post-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem;
    color: var(--text-primary);
}

.post-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--text-primary);
}

.post-content p {
    margin-bottom: 1.5rem;
}

/* Table of Contents */
.table-of-contents {
    background: var(--bg-secondary);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 2rem 0;
}

.table-of-contents h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.table-of-contents ol {
    list-style: none;
    counter-reset: toc-counter;
}

.table-of-contents li {
    counter-increment: toc-counter;
    margin-bottom: 0.75rem;
}

.table-of-contents li::before {
    content: counter(toc-counter) ". ";
    color: var(--primary-color);
    font-weight: 600;
}

.table-of-contents a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.table-of-contents a:hover {
    color: var(--primary-color);
}

/* Blockquotes */
blockquote {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-left: 4px solid var(--primary-color);
    border-radius: 0.5rem;
}

blockquote p {
    margin: 0;
    font-style: italic;
}

blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-style: normal;
}

.highlight-quote {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe0e0 100%);
    border-left-color: var(--primary-color);
    border-left-width: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.highlight-quote p {
    color: #1a1a1a !important;
    font-weight: 500;
    line-height: 1.6;
}

/* Data Visualizations */
.data-highlight {
    background: var(--bg-tertiary);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 2rem 0;
}

.data-highlight h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.data-item {
    background: var(--bg-primary);
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
}

.data-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.data-value-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.data-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.data-unit {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Comparison Table */
.comparison-table {
    margin: 2rem 0;
}

.comparison-table h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-primary);
    box-shadow: var(--shadow-sm);
    border-radius: 0.5rem;
    overflow: hidden;
}

.comparison-table th {
    background: var(--bg-tertiary);
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.comparison-table td {
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.9375rem;
    color: var(--text-primary);
    background: var(--bg-primary);
}

.comparison-table .negative {
    color: var(--primary-color);
    font-weight: 600;
}

.comparison-table .positive {
    color: #16a34a;
    font-weight: 600;
}

.comparison-table .highlight-row {
    background: #fef2f2;
}

/* Timeline */
.incident-report {
    background: var(--bg-secondary);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 2rem 0;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 1.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.25rem;
    top: 0.25rem;
    width: 10px;
    height: 10px;
    background: var(--bg-primary);
    border: 2px solid var(--text-secondary);
    border-radius: 50%;
}

.timeline-item.critical::before {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.timeline-item .time {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.875rem;
    display: block;
    margin-bottom: 0.25rem;
}

/* Charts */
.inequality-chart {
    margin: 2rem 0;
}

.chart-bars {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 0.75rem;
}

.bar-item {
    margin-bottom: 1.5rem;
}

.bar-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.bar-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bar {
    height: 36px;
    background: linear-gradient(90deg, #e2e8f0 0%, #cbd5e1 100%);
    border-radius: 0.375rem;
    transition: width 1s ease-out;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0.75rem;
    min-width: fit-content;
}

.bar.highlight {
    background: linear-gradient(90deg, #fca5a5 0%, #f87171 100%);
}

.bar.critical {
    background: linear-gradient(90deg, #dc2626 0%, #991b1b 100%);
}

.bar-value {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--text-primary);
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.bar.highlight .bar-value,
.bar.critical .bar-value {
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.bar-unit {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-left: 0.25rem;
}

/* Statistics Grid */
.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-card {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
}

.stat-card h5 {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Controversy Box */
.controversy-box {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 2rem 0;
}

.controversy-list {
    list-style: none;
    margin: 0;
}

.controversy-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #fecaca;
}

.controversy-list li:last-child {
    border-bottom: none;
}

/* Issues Grid */
.governance-issues {
    margin: 2rem 0;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.issue-card {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-left: 3px solid var(--primary-color);
}

.issue-icon {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.issue-card h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.issue-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Conclusion Box */
.conclusion-box {
    background: var(--bg-tertiary);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 2rem 0;
}

.conclusion-box ul {
    list-style: none;
    margin: 0;
}

.conclusion-box li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    padding-left: 1.5rem;
    position: relative;
}

.conclusion-box li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.conclusion-box li:last-child {
    border-bottom: none;
}

/* Table Wrapper for mobile */
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -1rem;
    padding: 0 1rem;
}

.comparison-table table {
    min-width: 500px;
}

.comparison-table th,
.comparison-table td {
    white-space: nowrap;
}

.final-thought {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    border-left: 4px solid var(--secondary-color);
    font-size: 1.125rem;
}

/* Post Footer */
.post-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.share-section {
    margin-bottom: 2rem;
}

.share-section h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.share-btn i {
    font-size: 1rem;
}

.share-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.share-btn[data-platform="twitter"]:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
}

.share-btn[data-platform="facebook"]:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.share-btn[data-platform="whatsapp"]:hover {
    background: #25D366;
    border-color: #25D366;
}

.share-btn[data-platform="telegram"]:hover {
    background: #0088cc;
    border-color: #0088cc;
}

/* Share Card Styles */
.share-card {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.share-card-content {
    background: linear-gradient(135deg, #0f172a 0%, #dc2626 100%);
    border-radius: 1rem;
    padding: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}

.share-card-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.share-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.share-card-logo {
    font-size: 2rem;
    font-weight: 800;
    background: white;
    color: #dc2626;
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-card-site {
    font-size: 0.875rem;
    opacity: 0.9;
    font-weight: 500;
}

.share-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.share-card-excerpt {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.share-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.share-card-url {
    font-size: 0.875rem;
    opacity: 0.8;
}

.share-card-btn {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.375rem;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.share-card-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.tags-section {
    margin-top: 2rem;
}

.tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.tag {
    padding: 0.375rem 0.75rem;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    font-size: 0.875rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s;
}

.tag:hover {
    background: var(--primary-color);
    color: white;
}

/* Inline Citations */
.citation {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.875em;
    font-weight: 500;
    padding: 0 0.125rem;
    transition: all 0.2s;
    position: relative;
}

.citation:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.citation::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--primary-color);
    opacity: 0.3;
    transition: opacity 0.2s;
}

.citation:hover::before {
    opacity: 0.6;
}

/* Sources Section */
.sources-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.sources-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.sources-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.source-item {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.source-item::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.source-item em {
    color: var(--text-primary);
    font-style: italic;
}


/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--primary-color);
    z-index: 200;
    transition: width 0.2s;
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: var(--shadow-lg);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .nav-brand h1 {
        font-size: 1.5rem;
    }
    
    .nav-brand span {
        font-size: 0.75rem;
        display: none;
    }
    
    .hero-section {
        height: auto;
        min-height: 450px;
        background-attachment: scroll;
        padding: 3rem 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 1rem;
        width: 100%;
        position: relative;
        z-index: 2;
    }
    
    .hero-category {
        font-size: 0.65rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
        text-align: center;
        max-width: 100%;
        margin-bottom: 0.75rem;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        text-align: center;
        max-width: 100%;
        line-height: 1.4;
        margin-bottom: 1rem;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    }
    
    .hero-meta {
        flex-wrap: wrap;
        font-size: 0.7rem;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .hero-divider {
        display: none;
    }
    
    .hero-image-credit {
        position: absolute;
        bottom: 0.5rem;
        right: 0.5rem;
        font-size: 0.6rem;
        background: rgba(0, 0, 0, 0.8);
        padding: 0.25rem 0.5rem;
        border-radius: 0.25rem;
    }
    
    .main-content {
        padding: 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .post-header h1 {
        font-size: 1.75rem;
    }
    
    .post-content {
        font-size: 1rem;
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    .post-content img,
    .post-content table,
    .post-content pre {
        max-width: 100%;
        overflow-x: auto;
    }
    
    h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .stat-card {
        padding: 1.25rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .table-of-contents {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .data-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .share-buttons {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .share-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .bar-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .bar {
        width: 100%;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: var(--shadow-md);
        border-top: 1px solid var(--border-color);
    }
    
    .post-title {
        font-size: 2rem;
    }
    
    .main-content {
        padding: 2rem 1rem;
    }
    
    .data-grid {
        grid-template-columns: 1fr;
    }
    
    .statistics-grid {
        grid-template-columns: 1fr;
    }
    
    .issues-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 40vh;
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .hero-category {
        font-size: 0.7rem;
    }
    
    .post-summary {
        font-size: 0.95rem;
        padding: 1rem;
    }
    
    blockquote {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .highlight-quote {
        background: #ffffff;
        border: 1px solid #fca5a5;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
    
    .highlight-quote p {
        color: #000000 !important;
        font-size: 0.95rem;
    }
    
    .issue-card {
        padding: 1rem;
    }
    
    .scroll-to-top {
        width: 40px;
        height: 40px;
        right: 1rem;
        bottom: 1rem;
    }
    
    .article-tags {
        display: none;
    }
    
    .post-meta {
        font-size: 0.85rem;
    }
    .post-title {
        font-size: 1.75rem;
    }
    
    .nav-brand h1 {
        font-size: 1.5rem;
    }
    
    .nav-brand span {
        display: none;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        width: 100%;
    }
}

/* Language Toggle */
.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.language-toggle:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.language-toggle i {
    font-size: 1.1rem;
}

/* Translation Disclaimer */
.translation-disclaimer {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    border-bottom: 2px solid #f59e0b;
    padding: 1rem;
    z-index: 999;
    box-shadow: var(--shadow-md);
    animation: slideDown 0.3s ease-out;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    padding: 0 2rem;
}

.disclaimer-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #f59e0b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.disclaimer-text {
    flex: 1;
    color: #92400e;
}

.disclaimer-text strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: #78350f;
}

.disclaimer-text p {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.view-original-btn {
    padding: 0.5rem 1rem;
    background: white;
    color: #f59e0b;
    border: 2px solid #f59e0b;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.view-original-btn:hover {
    background: #f59e0b;
    color: white;
}

.disclaimer-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: transparent;
    border: none;
    color: #92400e;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    transition: all 0.3s ease;
}

.disclaimer-close:hover {
    color: #78350f;
    transform: scale(1.1);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Acronym Tooltips */
.abbr-tooltip {
    position: relative !important;
    display: inline-block !important;
    border-bottom: 1px dotted #64748b !important;
    cursor: help !important;
}

.abbr-tooltip:hover .tooltip-content {
    opacity: 1 !important;
    visibility: visible !important;
}

.tooltip-content {
    visibility: hidden;
    position: absolute !important;
    bottom: calc(100% + 8px) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: #1e293b !important;
    color: white !important;
    padding: 0.5rem 0.75rem !important;
    border-radius: 0.375rem !important;
    font-size: 0.85rem !important;
    white-space: nowrap !important;
    z-index: 9999 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    opacity: 0 !important;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out !important;
    pointer-events: none !important;
    line-height: 1.4 !important;
}

/* Arrow for tooltip */
.tooltip-content::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #1e293b;
}

/* Mobile adjustments for language toggle */
@media (max-width: 768px) {
    /* Always show language toggle on mobile */
    .nav-menu {
        display: flex !important;
        position: static !important;
        background: transparent !important;
        padding: 0 !important;
        box-shadow: none !important;
        transform: none !important;
        width: auto !important;
    }
    
    .language-toggle {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
        margin-right: 1rem;
    }
    
    .language-toggle i {
        font-size: 1rem;
    }
    
    /* Hide hamburger menu since we don't need it */
    .nav-toggle {
        display: none !important;
    }
    
    .translation-disclaimer {
        top: 60px;
    }
    
    .disclaimer-content {
        flex-direction: column;
        text-align: center;
        padding: 0 1rem;
    }
    
    .disclaimer-icon {
        margin: 0 auto;
    }
    
    .view-original-btn {
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .disclaimer-close {
        top: 0.25rem;
        right: 0.25rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .share-section,
    .scroll-to-top,
    .progress-bar {
        display: none;
    }
    
    .main-content {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .post-content {
        font-size: 11pt;
    }
    
    a {
        color: inherit;
        text-decoration: none;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.post-content section {
    animation: fadeIn 0.6s ease-out;
}

/* Dark Mode (Optional) */
@media (prefers-color-scheme: dark) {
    :root {
        --text-primary: #f1f5f9;
        --text-secondary: #cbd5e1;
        --text-light: #94a3b8;
        --bg-primary: #0f172a;
        --bg-secondary: #1e293b;
        --bg-tertiary: #334155;
        --border-color: #334155;
    }
    
    .bar {
        background: linear-gradient(90deg, #334155 0%, #475569 100%);
    }
    
    .controversy-box {
        background: #1e293b;
        border-color: #334155;
    }
    
}