/* ============================================
   NEOGEN INFO - MAIN STYLESHEET
   Modern, Premium News Website Styling
   ============================================ */

/* CSS Variables / Theme Tokens */
:root {
    /* Primary Colors */
    --primary: #dc2626;
    --primary-dark: #b91c1c;
    --primary-light: #ef4444;
    --secondary: #1e3a8a;
    --accent: #f59e0b;

    /* Neutrals */
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-tertiary: #f3f4f6;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-tertiary: #9ca3af;
    --border: #e5e7eb;
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-md: rgba(0, 0, 0, 0.12);
    --shadow-lg: rgba(0, 0, 0, 0.18);

    /* Category Colors */
    --cat-technology: #3b82f6;
    --cat-business: #10b981;
    --cat-world: #f59e0b;
    --cat-sports: #ef4444;
    --cat-entertainment: #ec4899;
    --cat-health: #8b5cf6;
    --cat-science: #06b6d4;
    --cat-politics: #6366f1;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    /* Spacing & Layout */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-max: 1280px;
}

/* Dark Mode */
[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-tertiary: #94a3b8;
    --border: #334155;
    --shadow: rgba(0, 0, 0, 0.3);
    --shadow-md: rgba(0, 0, 0, 0.5);
    --shadow-lg: rgba(0, 0, 0, 0.7);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-secondary);
    transition: var(--transition);
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--text-primary);
    color: var(--bg-primary);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left span {
    margin-right: 20px;
}

.top-bar-left i { margin-right: 6px; color: var(--accent); }

.top-bar-right a {
    margin-left: 14px;
    font-size: 14px;
    transition: var(--transition);
}

.top-bar-right a:hover { color: var(--accent); transform: translateY(-2px); }

/* ============================================
   HEADER
   ============================================ */
.header {
    background: var(--bg-primary);
    box-shadow: 0 2px 8px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    white-space: nowrap;
}

.logo i {
    color: var(--primary);
    font-size: 32px;
}

.logo-accent {
    color: var(--primary);
}

.header-search {
    flex: 1;
    max-width: 500px;
    position: relative;
    display: flex;
}

.header-search input {
    width: 100%;
    padding: 12px 50px 12px 18px;
    border: 2px solid var(--border);
    border-radius: 50px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 14px;
    transition: var(--transition);
}

.header-search input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-primary);
}

.header-search button {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    transition: var(--transition);
}

.header-search button:hover { background: var(--primary-dark); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-actions button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 16px;
    transition: var(--transition);
}

.header-actions button:hover {
    background: var(--primary);
    color: white;
    transform: rotate(15deg);
}

#mobile-menu-toggle { display: none; }

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.nav-menu {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
}

.nav-menu::-webkit-scrollbar { display: none; }

.nav-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 3px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.nav-menu li a i { font-size: 14px; }

/* ============================================
   BREAKING NEWS
   ============================================ */
.breaking-news {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 12px 0;
    overflow: hidden;
}

.breaking-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.breaking-label {
    background: white;
    color: var(--primary);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1px;
    white-space: nowrap;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.breaking-ticker {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: flex;
    gap: 60px;
    animation: ticker 60s linear infinite;
    white-space: nowrap;
}

.ticker-content span {
    font-weight: 500;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   HERO SECTION
   ============================================ */
.main-content {
    padding: 30px 0;
}

.hero-section {
    margin-bottom: 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.hero-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 480px;
    cursor: pointer;
    background: var(--bg-tertiary);
}

.hero-main img,
.hero-side-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-main:hover img,
.hero-side-card:hover img { transform: scale(1.05); }

.hero-main-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.95));
    color: white;
}

.hero-main-content .category-tag {
    background: var(--primary);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 12px;
}

.hero-main-content h2 {
    font-family: var(--font-serif);
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 12px;
    font-weight: 700;
}

.hero-main-content .meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    opacity: 0.9;
}

.hero-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-side-card {
    position: relative;
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 230px;
    cursor: pointer;
    background: var(--bg-tertiary);
}

.hero-side-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.92));
    color: white;
}

.hero-side-content .category-tag {
    background: var(--accent);
    color: white;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 8px;
}

.hero-side-content h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--primary);
}

.section-title {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i { color: var(--primary); }

.section-actions {
    display: flex;
    gap: 8px;
}

.filter-btn {
    padding: 8px 16px;
    border-radius: 50px;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: white;
}

/* ============================================
   CONTENT LAYOUT
   ============================================ */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
}

/* ============================================
   ARTICLES GRID
   ============================================ */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.article-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 12px var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px var(--shadow-md);
}

.article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.article-card:hover .article-image img { transform: scale(1.08); }

.article-category {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    backdrop-filter: blur(10px);
    background: rgba(220, 38, 38, 0.9);
}

.article-category.technology { background: rgba(59, 130, 246, 0.9); }
.article-category.business { background: rgba(16, 185, 129, 0.9); }
.article-category.world { background: rgba(245, 158, 11, 0.9); }
.article-category.sports { background: rgba(239, 68, 68, 0.9); }
.article-category.entertainment { background: rgba(236, 72, 153, 0.9); }
.article-category.health { background: rgba(139, 92, 246, 0.9); }
.article-category.science { background: rgba(6, 182, 212, 0.9); }
.article-category.politics { background: rgba(99, 102, 241, 0.9); }

.article-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 14px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-tertiary);
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.article-meta .meta-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.article-meta i { margin-right: 4px; }

.article-id-badge {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    padding: 3px 8px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 10px;
    font-weight: 600;
}

/* ============================================
   LOAD MORE
   ============================================ */
.load-more-wrapper {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    padding: 14px 40px;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.load-more-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--shadow-md);
}

.load-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.load-more-btn.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ============================================
   SIDEBAR
   ============================================ */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.widget {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 2px 12px var(--shadow);
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
}

.widget-title i { color: var(--primary); }

/* Most Read */
.most-read-list { counter-reset: most-read; }

.most-read-list li {
    counter-increment: most-read;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 14px;
    align-items: flex-start;
    cursor: pointer;
    transition: var(--transition);
}

.most-read-list li:last-child { border-bottom: none; }
.most-read-list li:hover { transform: translateX(4px); }

.most-read-list li::before {
    content: counter(most-read);
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    min-width: 30px;
}

.most-read-list li h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.most-read-list li .meta {
    font-size: 11px;
    color: var(--text-tertiary);
}

/* Newsletter */
.newsletter-widget {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.newsletter-widget .widget-title,
.newsletter-widget .widget-title i {
    color: white;
    border-bottom-color: white;
}

.newsletter-widget p { margin-bottom: 16px; font-size: 14px; opacity: 0.95; }

#newsletter-form { display: flex; flex-direction: column; gap: 10px; }

#newsletter-form input {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: none;
    font-size: 14px;
}

#newsletter-form button {
    padding: 12px;
    background: white;
    color: var(--primary);
    border-radius: var(--radius-sm);
    font-weight: 700;
    transition: var(--transition);
}

#newsletter-form button:hover { background: var(--text-primary); color: white; }

/* Categories */
.categories-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.categories-list li:last-child a { border-bottom: none; }
.categories-list li a:hover { color: var(--primary); padding-left: 6px; }

.count {
    background: var(--bg-tertiary);
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
}

/* Tags */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 6px 14px;
    background: var(--bg-tertiary);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
}

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

/* Ad Widget */
.ad-placeholder {
    background: var(--bg-tertiary);
    border: 2px dashed var(--border);
    border-radius: var(--radius-md);
    padding: 60px 20px;
    text-align: center;
    color: var(--text-tertiary);
}

.ad-placeholder p { font-weight: 600; margin-bottom: 4px; }
.ad-placeholder small { font-size: 11px; }

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, var(--secondary), var(--primary-dark));
    padding: 60px 0;
    margin: 60px 0 0;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
}

.stat-card i {
    font-size: 40px;
    margin-bottom: 14px;
    color: var(--accent);
}

.stat-card h3 {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 6px;
}

.stat-card p { font-size: 14px; opacity: 0.9; font-weight: 500; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #0a0e1a;
    color: #cbd5e1;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.footer-logo i { color: var(--primary); }

.footer-col p { font-size: 14px; line-height: 1.7; margin-bottom: 16px; }

.footer-col h4 {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-col ul li a {
    display: block;
    padding: 6px 0;
    font-size: 14px;
    color: #94a3b8;
    transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--primary); padding-left: 6px; }

.footer-social { display: flex; gap: 10px; margin-top: 16px; }

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }

.footer-newsletter { display: flex; gap: 8px; }

.footer-newsletter input {
    flex: 1;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: none;
    background: rgba(255,255,255,0.08);
    color: white;
    font-size: 13px;
}

.footer-newsletter input::placeholder { color: #94a3b8; }

.footer-newsletter button {
    padding: 10px 16px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.footer-newsletter button:hover { background: var(--primary-dark); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    text-align: center;
    font-size: 13px;
    color: #94a3b8;
}

.footer-bottom p { margin: 4px 0; }

.footer-credits .fa-heart { color: var(--primary); }

/* ============================================
   UTILITIES
   ============================================ */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 18px;
    box-shadow: 0 6px 16px var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#back-to-top:hover { background: var(--primary-dark); transform: translateY(-4px); }

.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 800px;
    margin: 0 auto;
    background: var(--text-primary);
    color: white;
    padding: 18px 24px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 998;
    transform: translateY(150%);
    transition: transform 0.5s ease;
}

.cookie-consent.show { transform: translateY(0); }

.cookie-consent p { flex: 1; font-size: 14px; }
.cookie-consent p i { color: var(--accent); margin-right: 8px; }
.cookie-consent a { color: var(--accent); text-decoration: underline; }

.cookie-consent button {
    padding: 10px 24px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
}

.cookie-consent button:hover { background: var(--primary-dark); }

/* ============================================
   SKELETON LOADERS
   ============================================ */
.skeleton-loader {
    background: linear-gradient(90deg, var(--bg-tertiary) 25%, var(--border) 50%, var(--bg-tertiary) 75%);
    background-size: 200% 100%;
    animation: skeleton 1.5s infinite;
    border-radius: var(--radius-md);
}

@keyframes skeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-hero { height: 480px; }
.skeleton-side { height: 230px; }
.skeleton-card { height: 380px; }
.skeleton-list { height: 70px; margin-bottom: 14px; }

/* ============================================
   ARTICLE DETAIL PAGE
   ============================================ */
.article-detail {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 12px var(--shadow);
    margin-bottom: 40px;
}

.article-hero-image {
    height: 450px;
    background: var(--bg-tertiary);
}

.article-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-detail-content {
    padding: 40px;
}

.article-detail-content .article-category {
    position: static;
    display: inline-block;
    margin-bottom: 16px;
}

.article-detail-title {
    font-family: var(--font-serif);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.article-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 30px;
    font-size: 13px;
    color: var(--text-secondary);
}

.article-detail-meta i { color: var(--primary); margin-right: 6px; }

.article-detail-body {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-primary);
}

.article-detail-body p { margin-bottom: 20px; }

.share-bar {
    display: flex;
    gap: 10px;
    padding: 20px 0;
    margin-top: 30px;
    border-top: 1px solid var(--border);
}

.share-bar a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    transition: var(--transition);
}

.share-bar a:hover { background: var(--primary); color: white; transform: translateY(-3px); }

/* No results / Empty states */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 12px var(--shadow);
}

.empty-state i { font-size: 64px; color: var(--text-tertiary); margin-bottom: 20px; }
.empty-state h3 { font-size: 22px; margin-bottom: 10px; }
.empty-state p { color: var(--text-secondary); }

/* Toast Notification */
.toast {
    position: fixed;
    top: 30px;
    right: 30px;
    background: var(--text-primary);
    color: white;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    transform: translateX(150%);
    transition: transform 0.4s ease;
}

.toast.show { transform: translateX(0); }
.toast.success { background: #10b981; }
.toast.error { background: var(--primary); }
.toast.info { background: var(--secondary); }
