/* ============================================
   BRUTAL AI DESIGN - FIXAD VERSION
   ============================================ */

/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --bg-card: #14141e;
    --bg-card-hover: #1c1c2a;
    --bg-elevated: #1a1a28;
    --bg-input: #1a1a28;
    
    --text-primary: #f0f2fa;
    --text-secondary: #a0a9c0;
    --text-muted: #5a6a85;
    
    --accent-1: #6c47ff;
    --accent-2: #00d4ff;
    --accent-3: #ff6b9d;
    --accent-gradient: linear-gradient(135deg, #6c47ff 0%, #00d4ff 50%, #ff6b9d 100%);
    --accent-glow: 0 0 60px rgba(108, 71, 255, 0.15);
    
    --border-subtle: rgba(255,255,255,0.04);
    --border-normal: rgba(255,255,255,0.06);
    --border-strong: rgba(255,255,255,0.1);
    
    --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
    --shadow-card-hover: 0 8px 48px rgba(0,0,0,0.6);
    --shadow-glow: 0 0 80px rgba(108,71,255,0.08);
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --max-width: 1280px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-1);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-2);
}

/* ============================================
   HEADER - FIXAD
   ============================================ */
header {
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

/* ===== LOGO ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 900;
}
.logo-icon {
    font-size: 28px;
}
.logo-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.logo-tag {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--accent-gradient);
    color: #fff;
    padding: 2px 10px;
    border-radius: var(--radius-full);
}
.logo-badge {
    font-size: 8px;
    background: var(--accent-3);
    color: #fff;
    padding: 1px 6px;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-transform: uppercase;
}

/* ===== NAVIGATION ===== */
nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}
nav a {
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}
nav a:hover {
    color: var(--text-primary);
    background: rgba(255,255,255,0.03);
}
nav a.active {
    color: #fff;
    background: var(--accent-gradient);
}
nav .search-btn {
    background: var(--accent-gradient);
    color: #fff;
    padding: 6px 16px;
}
nav .search-btn:hover {
    transform: scale(1.05);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    text-align: center;
    padding: 40px 0 30px;
}
.hero-badge {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.badge {
    display: inline-block;
    padding: 2px 12px;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.badge-ai {
    background: rgba(108,71,255,0.15);
    color: var(--accent-1);
}
.badge-hot {
    background: rgba(255,107,157,0.15);
    color: var(--accent-3);
}
.badge-new {
    background: rgba(0,212,255,0.15);
    color: var(--accent-2);
}
.hero h1 {
    font-size: 40px;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
}
.hero h1 .highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-top: 6px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}
.stat {
    text-align: center;
}
.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.section-header h2 {
    font-size: 22px;
    font-weight: 800;
}
.section-header h2 .highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.view-all {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
}
.view-all:hover {
    color: var(--accent-1);
}

/* ============================================
   GRID
   ============================================ */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: var(--transition);
    display: block;
}
.card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-card-hover);
    background: var(--bg-card-hover);
}
.card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.card-meta .source {
    font-weight: 600;
    color: var(--text-secondary);
}
.card-meta .cat {
    background: rgba(108,71,255,0.15);
    color: var(--accent-1);
    padding: 1px 10px;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}
.card-meta .time {
    font-size: 11px;
}
.card-meta .views {
    font-size: 11px;
    margin-left: auto;
}
.card h3 {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card p {
    color: var(--text-secondary);
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-footer {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid var(--border-subtle);
}
.read-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-1);
    transition: var(--transition);
}
.card:hover .read-more {
    color: #fff;
}

/* ============================================
   TWO COLUMN
   ============================================ */
.two-column {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

/* ===== LIST ITEMS ===== */
.list-item {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition);
}
.list-item:last-child {
    border-bottom: none;
}
.list-item:hover {
    padding-left: 10px;
}
.list-item-meta {
    display: flex;
    gap: 10px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
    flex-wrap: wrap;
}
.list-item-meta .source {
    font-weight: 600;
    color: var(--text-secondary);
}
.list-item-meta .cat {
    background: rgba(108,71,255,0.15);
    color: var(--accent-1);
    padding: 0 10px;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}
.list-item h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}
.list-item p {
    font-size: 14px;
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 2px;
}

/* ============================================
   SIDEBAR
   ============================================ */
.box {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 20px;
}
.box h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.box h4 .icon {
    font-size: 18px;
}

/* ===== TRENDING ===== */
.trending-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 14px;
    transition: var(--transition);
}
.trending-item:last-child {
    border-bottom: none;
}
.trending-item:hover {
    padding-left: 6px;
}
.trending-item .num {
    font-weight: 900;
    font-size: 16px;
    color: var(--accent-1);
    min-width: 24px;
}
.trending-item .title {
    flex: 1;
    font-weight: 500;
}
.trending-item .views {
    font-size: 12px;
    color: var(--text-muted);
}

/* ===== CATEGORY LINKS ===== */
.cat-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition);
}
.cat-link:last-child {
    border-bottom: none;
}
.cat-link:hover {
    padding-left: 6px;
    color: var(--accent-1);
}
.cat-link .count {
    background: var(--bg-elevated);
    padding: 0 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

/* ===== NEWSLETTER ===== */
.newsletter-box p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}
.newsletter-form {
    display: flex;
    gap: 8px;
}
.newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--border-normal);
    border-radius: var(--radius-md);
    background: var(--bg-input);
    color: var(--text-primary);
    font-size: 14px;
    font-family: var(--font);
}
.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-1);
}
.newsletter-form input::placeholder {
    color: var(--text-muted);
}
.newsletter-form button {
    padding: 10px 18px;
    background: var(--accent-gradient);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
}
.newsletter-form button:hover {
    transform: scale(1.05);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: 24px 0;
    margin-top: 20px;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
footer p {
    font-size: 13px;
    color: var(--text-muted);
}
footer a {
    color: var(--accent-1);
    transition: var(--transition);
}
footer a:hover {
    opacity: 0.8;
}
.footer-links {
    display: flex;
    gap: 20px;
    align-items: center;
}
.footer-links a {
    color: var(--text-secondary);
    font-size: 13px;
}
.footer-links a:hover {
    color: var(--accent-1);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .two-column {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero-stats {
        gap: 30px;
    }
}

@media (max-width: 700px) {
    .grid {
        grid-template-columns: 1fr;
    }
    .header-inner {
        flex-direction: column;
        align-items: stretch;
    }
    .logo {
        justify-content: center;
        font-size: 18px;
    }
    nav {
        justify-content: center;
    }
    nav a {
        font-size: 12px;
        padding: 4px 10px;
    }
    .hero h1 {
        font-size: 26px;
    }
    .hero p {
        font-size: 15px;
    }
    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    .stat-number {
        font-size: 22px;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form button {
        width: 100%;
    }
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }
    .hero h1 {
        font-size: 22px;
    }
    .hero-badge {
        gap: 6px;
    }
    .hero-badge .badge {
        font-size: 9px;
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}
/* ============================================
   SORT BAR
   ============================================ */
.sort-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}
.sort-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}
.sort-buttons {
    display: flex;
    align-items: center;
    gap: 6px;
}
.sort-text {
    font-size: 12px;
    color: var(--text-muted);
    margin-right: 2px;
}
.sort-btn {
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    border: 1px solid var(--border-normal);
    transition: var(--transition);
}
.sort-btn:hover {
    color: var(--text-primary);
    border-color: var(--border-strong);
}
.sort-btn.active {
    background: var(--accent-gradient);
    color: #fff;
    border-color: transparent;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 30px 0 10px;
    flex-wrap: wrap;
}
.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    border: 1px solid var(--border-normal);
    background: var(--bg-card);
    transition: var(--transition);
}
.page-btn:hover {
    color: var(--text-primary);
    border-color: var(--border-strong);
    background: var(--bg-card-hover);
}
.page-btn.active {
    background: var(--accent-gradient);
    color: #fff;
    border-color: transparent;
}
.page-dots {
    color: var(--text-muted);
    font-size: 14px;
    padding: 0 4px;
}

/* ============================================
   CATEGORY HERO
   ============================================ */
.cat-hero {
    padding: 32px 0 24px;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 0;
}
.cat-hero-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.cat-hero-inner h1 {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.5px;
}
.cat-hero-inner p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-top: 4px;
}
.cat-hero-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: flex-start;
    max-width: 420px;
}
.cat-pill {
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    border: 1px solid var(--border-normal);
    background: var(--bg-card);
    transition: var(--transition);
    white-space: nowrap;
}
.cat-pill:hover {
    color: var(--text-primary);
    border-color: var(--border-strong);
}
.cat-pill.active {
    background: var(--accent-gradient);
    color: #fff;
    border-color: transparent;
}

/* ============================================
   CATEGORY LINK ACTIVE STATE
   ============================================ */
.cat-link-active {
    color: var(--accent-1) !important;
    padding-left: 6px;
}
.cat-link-active .count {
    background: rgba(108,71,255,0.15);
    color: var(--accent-1);
}

/* ============================================
   SEARCH HERO
   ============================================ */
.search-hero {
    text-align: center;
    padding: 48px 0 32px;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 30px;
}
.search-hero h1 {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}
.search-hero > .container > p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 24px;
}
.search-form-big {
    display: flex;
    gap: 10px;
    max-width: 640px;
    margin: 0 auto 16px;
}
.search-input-wrap {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}
.search-icon {
    position: absolute;
    left: 14px;
    font-size: 16px;
    pointer-events: none;
}
.search-input-wrap input {
    width: 100%;
    padding: 12px 40px 12px 40px;
    border: 1px solid var(--border-normal);
    border-radius: var(--radius-md);
    background: var(--bg-input);
    color: var(--text-primary);
    font-size: 15px;
    font-family: var(--font);
    transition: var(--transition);
}
.search-input-wrap input:focus {
    outline: none;
    border-color: var(--accent-1);
    box-shadow: 0 0 0 3px rgba(108,71,255,0.1);
}
.search-input-wrap input::placeholder {
    color: var(--text-muted);
}
.search-clear {
    position: absolute;
    right: 12px;
    color: var(--text-muted);
    font-size: 14px;
    padding: 4px;
    transition: var(--transition);
}
.search-clear:hover {
    color: var(--text-primary);
}
.search-form-big button {
    padding: 12px 24px;
    background: var(--accent-gradient);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    font-family: var(--font);
    transition: var(--transition);
    white-space: nowrap;
}
.search-form-big button:hover {
    transform: scale(1.03);
}
.search-result-count {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 8px;
}
.search-suggestions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 14px;
    font-size: 13px;
    color: var(--text-muted);
}
.suggestion-tag {
    padding: 4px 14px;
    border-radius: var(--radius-full);
    background: var(--bg-card);
    border: 1px solid var(--border-normal);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}
.suggestion-tag:hover {
    color: var(--accent-1);
    border-color: var(--accent-1);
}

/* ============================================
   ARTICLE PAGE
   ============================================ */
.article-wrap {
    padding-top: 24px;
    padding-bottom: 48px;
}
.article-body {
    min-width: 0;
}
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.breadcrumbs a {
    color: var(--text-secondary);
    transition: var(--transition);
}
.breadcrumbs a:hover {
    color: var(--accent-1);
}
.breadcrumbs .sep {
    color: var(--text-muted);
}
.article-meta-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.source-badge {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
}
.cat-badge {
    background: rgba(108,71,255,0.15);
    color: var(--accent-1);
    padding: 2px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: var(--transition);
}
.cat-badge:hover {
    background: rgba(108,71,255,0.25);
}
.time-badge, .views-badge {
    font-size: 12px;
    color: var(--text-muted);
}
.article-title {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -0.3px;
    margin-bottom: 20px;
}
.article-img {
    width: 100%;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    border: 1px solid var(--border-subtle);
    max-height: 400px;
    object-fit: cover;
}
.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
    padding: 24px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
}
.source-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-normal);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-1);
    transition: var(--transition);
    margin-bottom: 32px;
}
.source-link:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-1);
}
.related-section {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
}
.related-section h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 16px;
}
.related-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.related-card {
    display: block;
    padding: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.related-card:hover {
    border-color: var(--border-strong);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}
.related-meta {
    display: flex;
    gap: 10px;
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.related-card h4 {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================
   FEATURED SECTION PADDING
   ============================================ */
.featured-section {
    padding: 24px 0 10px;
}

/* ============================================
   RESPONSIVE — NEW ELEMENTS
   ============================================ */
@media (max-width: 900px) {
    .cat-hero-inner {
        flex-direction: column;
    }
    .cat-hero-nav {
        max-width: 100%;
    }
    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .search-form-big {
        flex-direction: column;
    }
    .search-form-big button {
        width: 100%;
    }
    .article-title {
        font-size: 22px;
    }
    .sort-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    .pagination {
        gap: 4px;
    }
    .page-btn {
        min-width: 32px;
        height: 32px;
        font-size: 12px;
        padding: 0 8px;
    }
    .cat-hero-inner h1 {
        font-size: 24px;
    }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker-wrap {
    background: rgba(108,71,255,0.08);
    border-bottom: 1px solid rgba(108,71,255,0.15);
    display: flex;
    align-items: center;
    height: 34px;
    overflow: hidden;
    position: relative;
    z-index: 999;
}
.ticker-label {
    background: var(--accent-gradient);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    padding: 0 14px;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
    z-index: 2;
}
.ticker-track {
    flex: 1;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 40px, black calc(100% - 40px), transparent);
}
.ticker-inner {
    display: flex;
    animation: tickerScroll 90s linear infinite;
    width: max-content;
}
.ticker-inner:hover { animation-play-state: paused; }
@keyframes tickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 30px;
    font-size: 12px;
    color: var(--text-secondary);
    white-space: nowrap;
    transition: color .2s;
}
.ticker-item:hover { color: var(--accent-2); }
.ticker-source {
    font-weight: 700;
    color: var(--accent-1);
    font-size: 10px;
}

/* ============================================================
   HEADER — LIVE elements
   ============================================================ */
.header-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
}
.live-count {
    font-weight: 800;
    color: var(--accent-2);
    font-size: 13px;
}
.live-label { color: var(--text-muted); }

.live-dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%,100% { opacity:1; transform:scale(1); box-shadow:0 0 0 0 rgba(34,197,94,.4); }
    50%      { opacity:.9; transform:scale(1.15); box-shadow:0 0 0 5px rgba(34,197,94,0); }
}
.live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #22c55e;
}

/* LIVE badge pulse */
.pulse-badge { animation: badge-pulse 3s ease-in-out infinite; }
@keyframes badge-pulse {
    0%,100% { opacity:1; }
    50%      { opacity:.6; }
}
.badge-flash { animation: badge-flash-anim .5s ease !important; }
@keyframes badge-flash-anim {
    0%  { background:#22c55e; transform:scale(1.2); }
    100%{ background:var(--accent-3); transform:scale(1); }
}

/* New-articles notification banner */
.new-articles-banner {
    position: sticky;
    top: 56px;
    z-index: 900;
    padding: 8px 0;
    text-align: center;
}
.new-articles-btn {
    background: var(--accent-gradient);
    color: #fff;
    border: none;
    padding: 8px 24px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font);
    box-shadow: 0 4px 20px rgba(108,71,255,.4);
    animation: bounce-in .4s cubic-bezier(.175,.885,.32,1.275);
    transition: transform .2s;
}
.new-articles-btn:hover { transform: scale(1.04); }
@keyframes bounce-in {
    0%  { transform:translateY(-20px);opacity:0; }
    100%{ transform:translateY(0);opacity:1; }
}

/* Header new-article badge */
.header-new-badge {
    background: #22c55e;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    animation: badge-pulse 2s ease-in-out infinite;
}

/* ============================================================
   CARDS — new/hot badges
   ============================================================ */
.card { position: relative; }
.card-new {
    border-color: rgba(34,197,94,.25) !important;
    box-shadow: 0 0 0 1px rgba(34,197,94,.1);
}
.badge-new-pill, .badge-hot-pill {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .5px;
    padding: 2px 8px;
    border-radius: var(--radius-full);
}
.badge-new-pill {
    background: rgba(34,197,94,.15);
    color: #22c55e;
    border: 1px solid rgba(34,197,94,.3);
}
.badge-hot-pill {
    background: rgba(255,107,157,.15);
    color: var(--accent-3);
    border: 1px solid rgba(255,107,157,.3);
}

/* List item new indicator */
.new-dot {
    font-size: 9px;
    font-weight: 800;
    color: #22c55e;
    letter-spacing: .3px;
}
.list-item-new { border-left: 2px solid #22c55e; padding-left: 10px; }

/* ============================================================
   SIDEBAR — extra components
   ============================================================ */
.source-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 13px;
    transition: var(--transition);
}
.source-row:last-child { border-bottom: none; }
.source-row:hover { padding-left: 6px; color: var(--accent-1); }
.source-name { font-weight: 600; }
.source-count {
    font-size: 11px;
    color: var(--text-muted);
    background: var(--bg-elevated);
    padding: 1px 8px;
    border-radius: var(--radius-full);
}

/* History items */
.history-item {
    display: block;
    padding: 6px 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 12px;
    color: var(--text-secondary);
    transition: var(--transition);
    line-height: 1.4;
}
.history-item:last-child { border-bottom: none; }
.history-item:hover { color: var(--accent-1); padding-left: 4px; }

/* Fav category buttons */
.fav-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.fav-btn {
    padding: 4px 12px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-normal);
    background: var(--bg-elevated);
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font);
    transition: var(--transition);
}
.fav-btn:hover {
    border-color: var(--accent-1);
    color: var(--accent-1);
}
.fav-btn.fav-active {
    background: rgba(108,71,255,.15);
    border-color: var(--accent-1);
    color: var(--accent-1);
}

/* ============================================================
   ARTICLE PAGE extras
   ============================================================ */
.read-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--accent-gradient);
    z-index: 9999;
    transition: width .1s linear;
}
.read-time-badge {
    font-size: 12px;
    color: var(--text-muted);
}
.share-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 0;
    border-top: 1px solid var(--border-subtle);
    margin-top: 20px;
    flex-wrap: wrap;
}
.share-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}
.share-btn {
    padding: 7px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    border: 1px solid var(--border-normal);
    background: var(--bg-card);
    color: var(--text-secondary);
    font-family: var(--font);
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}
.share-btn:hover { transform: translateY(-2px); color: var(--text-primary); border-color: var(--border-strong); }
.share-x:hover  { border-color: #fff; color: #fff; }
.share-li:hover { border-color: #0a66c2; color: #0a66c2; }

/* ============================================================
   FEATURED SECTION — section header live indicator
   ============================================================ */
.featured-section { padding: 24px 0 10px; }

/* ============================================================
   RESPONSIVE — new elements
   ============================================================ */
@media (max-width: 900px) {
    .header-live { display: none; }
    .ticker-wrap { height: 30px; }
}
@media (max-width: 700px) {
    .ticker-label { padding: 0 10px; font-size: 9px; }
    .ticker-item  { padding: 0 20px; font-size: 11px; }
    .share-bar    { gap: 7px; }
    .share-btn    { padding: 6px 12px; font-size: 11px; }
    .new-articles-btn { font-size: 12px; padding: 7px 18px; }
}

/* ============================================================
   TICKER FIX — bättre höjd, separator, aldrig text-overflow
   ============================================================ */
.ticker-wrap {
    height: 36px !important;
    background: linear-gradient(135deg, rgba(108,71,255,0.12), rgba(0,212,255,0.06)) !important;
    border-bottom: 1px solid rgba(108,71,255,0.2) !important;
}
.ticker-label {
    background: var(--accent-gradient) !important;
    font-size: 9px !important;
    letter-spacing: 2px !important;
    padding: 0 16px !important;
    height: 36px !important;
    box-shadow: 4px 0 16px rgba(108,71,255,0.3);
}
.ticker-item {
    font-size: 12px !important;
    padding: 0 28px !important;
    gap: 10px !important;
    border-right: 1px solid rgba(255,255,255,0.04);
}
.ticker-source {
    font-size: 9px !important;
    letter-spacing: .5px;
    background: rgba(108,71,255,0.2);
    padding: 1px 7px;
    border-radius: 20px;
}

/* ============================================================
   HEADER FIX — live-dot sektion i egen rad på smal skärm,
   nav scrollbar på mycket smal
   ============================================================ */
.header-inner {
    gap: 8px !important;
}
.header-live {
    background: rgba(34,197,94,0.06);
    border: 1px solid rgba(34,197,94,0.15);
    border-radius: var(--radius-full);
    padding: 4px 12px;
    gap: 5px !important;
    white-space: nowrap;
}
.live-count {
    font-size: 14px !important;
    font-weight: 900 !important;
}

/* ── Sticky header shadow after scroll ── */
header.scrolled {
    box-shadow: 0 2px 30px rgba(0,0,0,0.5);
    border-bottom-color: rgba(108,71,255,0.15) !important;
}

/* ============================================================
   HERO FIX — mer luft, stats i boks
   ============================================================ */
.hero {
    padding: 52px 0 40px !important;
    background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(108,71,255,0.08), transparent);
}
.hero h1 {
    margin-bottom: 10px;
}
.hero p {
    margin-bottom: 0;
}
.hero-stats {
    margin-top: 28px !important;
    padding-top: 24px !important;
    gap: 0 !important;
    border-top: 1px solid var(--border-subtle) !important;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
}
.stat {
    padding: 8px 20px;
    border-right: 1px solid var(--border-subtle);
    text-align: center;
}
.stat:last-child { border-right: none; }
.stat-number {
    font-size: 32px !important;
    display: block;
    margin-bottom: 2px;
}

@media (max-width: 600px) {
    .hero-stats {
        grid-template-columns: repeat(2,1fr) !important;
    }
    .stat:nth-child(2) { border-right: none; }
    .stat:nth-child(3) { border-top: 1px solid var(--border-subtle); border-right: 1px solid var(--border-subtle); }
    .stat:nth-child(4) { border-top: 1px solid var(--border-subtle); border-right: none; }
    .header-live { display: none !important; }
}

/* ============================================================
   SCROLLED HEADER JS helper
   ============================================================ */

/* ============================================================
   BREAKING CARD
   ============================================================ */
.breaking-wrap {
    background: linear-gradient(135deg, rgba(255,59,59,0.08), rgba(255,107,157,0.06));
    border-top: 1px solid rgba(255,59,59,0.2);
    border-bottom: 1px solid rgba(255,59,59,0.15);
    padding: 10px 0;
}
.breaking-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 20px;
    background: rgba(255,59,59,0.06);
    border: 1px solid rgba(255,59,59,0.2);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    text-decoration: none;
}
.breaking-card:hover { background: rgba(255,59,59,0.1); transform: translateX(4px); }
.breaking-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #ff3b3b;
    white-space: nowrap;
    background: rgba(255,59,59,0.12);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,59,59,0.25);
}
.breaking-pulse {
    width: 8px; height: 8px;
    background: #ff3b3b;
    border-radius: 50%;
    animation: pulse-dot 1s ease-in-out infinite;
    flex-shrink: 0;
}
.breaking-content { flex: 1; min-width: 0; }
.breaking-meta {
    display: flex; gap: 12px;
    font-size: 11px; color: var(--text-muted);
    margin-bottom: 4px;
}
.breaking-card h2 {
    font-size: 16px; font-weight: 800; line-height: 1.3;
    color: var(--text-primary);
    display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.breaking-card p {
    font-size: 13px; color: var(--text-secondary); margin-top: 3px;
    display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.breaking-arrow {
    font-size: 20px; color: #ff3b3b; font-weight: 900; flex-shrink: 0;
    transition: var(--transition);
}
.breaking-card:hover .breaking-arrow { transform: translateX(4px); }

/* ============================================================
   HOURLY HEATMAP
   ============================================================ */
.heatmap-wrap {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-secondary);
}
.heatmap-inner {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 52px;
}
.heatmap-label, .heatmap-now {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 600;
    white-space: nowrap;
    padding-bottom: 2px;
}
.heatmap-now { color: var(--accent-2); }
.heatmap-bars {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 40px;
}
.heatmap-bar-wrap {
    flex: 1;
    display: flex;
    align-items: flex-end;
    height: 100%;
    cursor: default;
}
.heatmap-bar {
    width: 100%;
    min-height: 4px;
    background: rgba(108,71,255,0.35);
    border-radius: 2px 2px 0 0;
    transition: background .2s;
}
.heatmap-bar:hover { background: var(--accent-1); }
.heatmap-bar-now {
    background: var(--accent-gradient) !important;
    box-shadow: 0 0 8px rgba(108,71,255,0.4);
}

/* ============================================================
   ACTIVE SOURCES
   ============================================================ */
.active-sources-wrap {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(34,197,94,0.03);
}
.active-sources-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.active-sources-label {
    font-size: 11px;
    font-weight: 700;
    color: #22c55e;
    white-space: nowrap;
    margin-right: 4px;
}
.active-source-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.2);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
}
.active-source-pill:hover { background: rgba(34,197,94,0.15); color: #22c55e; }
.active-source-dot {
    width: 5px; height: 5px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}
.active-source-cnt {
    font-size: 10px;
    color: #22c55e;
    font-weight: 800;
    background: rgba(34,197,94,0.15);
    padding: 1px 6px;
    border-radius: var(--radius-full);
}

/* ============================================================
   CATEGORY HEATMAP PILLS
   ============================================================ */
.cat-activity-wrap {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-subtle);
}
.cat-activity-inner {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}
.cat-activity-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    background: color-mix(in srgb, rgba(108,71,255,1) calc(var(--heat, 0%) * 0.25), var(--bg-card));
    border: 1px solid color-mix(in srgb, rgba(108,71,255,0.5) var(--heat, 0%), var(--border-subtle));
    transition: var(--transition);
}
.cat-activity-pill:hover { color: var(--text-primary); transform: translateY(-2px); }
.cat-act-badge {
    font-size: 9px;
    font-weight: 800;
    background: rgba(108,71,255,0.2);
    color: var(--accent-1);
    padding: 1px 6px;
    border-radius: var(--radius-full);
}

/* ============================================================
   YOU MIGHT HAVE MISSED
   ============================================================ */
.missed-section {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border-subtle);
}

/* ============================================================
   STREAK BADGE
   ============================================================ */
.streak-badge {
    background: linear-gradient(135deg, #f97316, #ef4444);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    animation: badge-pulse 2s ease-in-out infinite;
}

/* ============================================================
   ARTICLE EXTRAS
   ============================================================ */
.reading-now-badge {
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.2);
    color: #22c55e;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: var(--radius-full);
}
.article-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 16px 0;
}
.tags-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}
.article-tag {
    padding: 3px 12px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-normal);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
}
.article-tag:hover {
    background: rgba(108,71,255,0.12);
    border-color: var(--accent-1);
    color: var(--accent-1);
}
.milestone-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(249,115,22,0.12), rgba(239,68,68,0.08));
    border: 1px solid rgba(249,115,22,0.25);
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 700;
    color: #f97316;
    margin: 12px 0;
}
.source-today {
    margin: 20px 0;
    padding: 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
}
.source-today h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 10px;
}
.source-today-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 7px 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 13px;
    color: var(--text-secondary);
    transition: var(--transition);
}
.source-today-item:last-child { border-bottom: none; }
.source-today-item:hover { color: var(--accent-1); padding-left: 4px; }
.source-today-time {
    font-size: 11px;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE — new elements
   ============================================================ */
@media (max-width: 700px) {
    .breaking-card { flex-direction: column; align-items: flex-start; gap: 10px; }
    .breaking-arrow { display: none; }
    .heatmap-wrap { display: none; }
    .active-sources-wrap { overflow-x: auto; }
    .cat-activity-wrap { overflow-x: auto; }
    .cat-activity-inner { flex-wrap: nowrap; }
}

/* ============================================================
   ARTICLE — semantic extras for AI readability
   ============================================================ */
.article-lead {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-primary);
    padding: 16px;
    background: rgba(108,71,255,0.05);
    border-left: 3px solid var(--accent-1);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-bottom: 16px;
}
.article-source-credit {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.8;
}
.article-source-credit a {
    color: var(--accent-1);
}

/* ============================================================
   RSS BOX
   ============================================================ */
.rss-box { border-top: 2px solid #f26522; }
.rss-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.5;
}
.rss-main-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: linear-gradient(135deg, rgba(242,101,34,0.12), rgba(242,101,34,0.06));
    border: 1px solid rgba(242,101,34,0.3);
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 700;
    color: #f26522;
    margin-bottom: 10px;
    transition: var(--transition);
}
.rss-main-btn:hover {
    background: rgba(242,101,34,0.18);
    transform: translateX(3px);
}
.rss-icon {
    width: 10px;
    height: 10px;
    background: #f26522;
    border-radius: 50%;
    animation: pulse-dot 1.8s ease-in-out infinite;
    flex-shrink: 0;
}
.rss-tag {
    margin-left: auto;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    background: rgba(242,101,34,0.15);
    color: #f26522;
    padding: 2px 6px;
    border-radius: 4px;
}
.rss-cats {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 12px;
}
.rss-cat-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: var(--radius-md);
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
}
.rss-cat-row:hover {
    background: var(--bg-elevated);
    color: #f26522;
    padding-left: 12px;
}
.rss-dot {
    width: 6px;
    height: 6px;
    background: rgba(242,101,34,0.4);
    border-radius: 50%;
    flex-shrink: 0;
    transition: var(--transition);
}
.rss-cat-row:hover .rss-dot { background: #f26522; }
.rss-readers {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 10px;
    border-top: 1px solid var(--border-subtle);
    flex-wrap: wrap;
}
.rss-readers-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
}
.rss-reader-btn {
    padding: 3px 10px;
    border-radius: var(--radius-full);
    background: var(--bg-elevated);
    border: 1px solid var(--border-normal);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
}
.rss-reader-btn:hover {
    border-color: #f26522;
    color: #f26522;
}

/* ============================================================
   WHATSAPP SHARE BUTTON
   ============================================================ */
.share-wa {
    background: rgba(37,211,102,0.1) !important;
    border-color: rgba(37,211,102,0.3) !important;
    color: #25d366 !important;
}
.share-wa:hover {
    background: rgba(37,211,102,0.2) !important;
    border-color: #25d366 !important;
    color: #25d366 !important;
}