/* ═══════════════════════════════════════════════════════════════
   AIZONIQ Blog v6 — Full News Portal Styles
   Sections: Hero, Category Nav, Toolbar, Grid, Cards, Pagination,
   Article Detail, CTA, FAQ, Services, Toast, Light Theme, RTL, Responsive
   ═══════════════════════════════════════════════════════════════ */

/* ── HERO ──────────────────────────────────────────────────── */
.blog-hero {
    position: relative;
    padding: 140px 0 50px;
    overflow: hidden;
    text-align: center;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .15;
    animation: orb-float 12s ease-in-out infinite alternate;
}
@keyframes orb-float {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
    100% { transform: translate(10px, -10px) scale(1.02); }
}
.orb-1 { width: 500px; height: 500px; background: var(--primary, #6366f1); top: -150px; left: -100px; animation-delay: 0s; }
.orb-2 { width: 400px; height: 400px; background: var(--accent, #8b5cf6); bottom: -100px; right: -50px; animation-delay: -6s; }
.grid-lines {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                       linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: grid-shift 20s linear infinite;
}
@keyframes grid-shift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}
.hero-inner { position: relative; z-index: 1; }
.live-pulse {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(16, 185, 129, .15); color: #10b981;
    padding: 6px 16px; border-radius: 30px;
    font-size: .85rem; font-weight: 600;
    margin-bottom: 16px;
}
.pulse-dot {
    width: 8px; height: 8px; background: #10b981; border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,.5); }
    50% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
}
.blog-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 12px;
}
.grad {
    background: linear-gradient(135deg, var(--primary, #6366f1), #ec4899, var(--accent, #8b5cf6));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: grad-shift 4s ease-in-out infinite;
}
@keyframes grad-shift {
    0%,100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.hero-sub {
    color: rgba(255,255,255,.6);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 24px;
}
.hero-stats {
    display: flex; align-items: center; justify-content: center;
    gap: 20px; flex-wrap: wrap;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px;
    padding: 16px 24px;
    backdrop-filter: blur(10px);
}
.hstat { text-align: center; }
.hstat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem; font-weight: 700;
    color: var(--primary, #6366f1);
}
.hstat-label { font-size: .75rem; color: rgba(255,255,255,.5); margin-top: 2px; }
.hstat-divider { width: 1px; height: 30px; background: rgba(255,255,255,.1); }

/* ── CATEGORY NAV ──────────────────────────────────────────── */
.cat-nav-wrap {
    position: sticky;
    top: 70px;
    z-index: 90;
    background: rgba(10, 10, 20, .95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.cat-nav {
    display: flex;
    gap: 4px;
    padding: 10px 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-tab {
    display: flex; align-items: center; gap: 6px;
    padding: 8px 18px;
    border: none;
    background: transparent;
    color: rgba(255,255,255,.55);
    font-size: .875rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: all .25s ease;
    position: relative;
}
.cat-tab i { font-size: .8rem; }
.cat-tab:hover {
    color: rgba(255,255,255,.85);
    background: rgba(255,255,255,.06);
}
.cat-tab.active {
    color: #fff;
    background: linear-gradient(135deg, var(--primary, #6366f1), var(--accent, #8b5cf6));
    box-shadow: 0 2px 12px rgba(99,102,241,.35);
}
.cat-count {
    font-size: .7rem;
    background: rgba(255,255,255,.15);
    color: rgba(255,255,255,.75);
    padding: 1px 6px;
    border-radius: 10px;
    margin-left: 4px;
    font-weight: 600;
}
.cat-tab.active .cat-count {
    background: rgba(255,255,255,.25);
    color: #fff;
}

/* ── TOOLBAR ───────────────────────────────────────────────── */
.news-section { padding: 30px 0 60px; }
.news-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 16px;
    flex-wrap: wrap;
}
.article-count {
    font-size: .85rem;
    color: rgba(255,255,255,.5);
    font-weight: 500;
}
.toolbar-search {
    position: relative;
    max-width: 300px;
    flex: 1;
}
.toolbar-search i.fa-search {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,.3);
    font-size: .8rem;
}
[dir="rtl"] .toolbar-search i.fa-search { left: auto; right: 14px; }
.toolbar-search input {
    width: 100%;
    padding: 10px 38px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    color: #fff;
    font-size: .85rem;
    transition: all .3s;
}
.toolbar-search input:focus {
    outline: none;
    border-color: var(--primary, #6366f1);
    background: rgba(255,255,255,.08);
    box-shadow: 0 0 0 3px rgba(99,102,241,.15);
}
.toolbar-search input::placeholder { color: rgba(255,255,255,.3); }
.s-clear {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,.4);
    cursor: pointer;
    display: flex;
    padding: 4px;
}
[dir="rtl"] .s-clear { right: auto; left: 10px; }

/* ── LOADING ───────────────────────────────────────────────── */
.news-loading, .article-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    gap: 16px;
    color: rgba(255,255,255,.5);
}
.loader {
    display: flex; gap: 6px;
}
.loader span {
    width: 10px; height: 10px;
    background: var(--primary, #6366f1);
    border-radius: 50%;
    animation: bounce-load .6s ease-in-out infinite alternate;
}
.loader span:nth-child(2) { animation-delay: .2s; }
.loader span:nth-child(3) { animation-delay: .4s; }
@keyframes bounce-load {
    to { transform: translateY(-12px); opacity: .4; }
}

/* ── GRID ──────────────────────────────────────────────────── */
.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.grid-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    gap: 12px;
    text-align: center;
}
.grid-empty i { font-size: 2.5rem; color: rgba(255,255,255,.15); }
.grid-empty h3 { font-size: 1.2rem; color: rgba(255,255,255,.6); }
.grid-empty p { font-size: .85rem; color: rgba(255,255,255,.35); }

/* ── CARDS ─────────────────────────────────────────────────── */
.news-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all .35s cubic-bezier(.25,.8,.25,1);
    animation: card-in .5s ease forwards;
    position: relative;
}
.news-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, transparent 40%, rgba(99,102,241,.4), rgba(236,72,153,.3), transparent 60%);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .4s, background-position .4s;
    z-index: 1;
    pointer-events: none;
}
.news-card:hover::before {
    opacity: 1;
    background-position: 100% 100%;
}
@keyframes card-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.news-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99,102,241,.3);
    box-shadow: 0 16px 50px rgba(0,0,0,.35), 0 0 30px rgba(99,102,241,.08);
}
.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.news-card:hover .card-img img { transform: scale(1.08); }
.card-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: .7rem;
    font-weight: 600;
    color: #fff;
    display: flex; align-items: center; gap: 4px;
    backdrop-filter: blur(4px);
}
[dir="rtl"] .card-cat { left: auto; right: 12px; }
.card-body { padding: 16px; }
.card-title {
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-desc {
    font-size: .8rem;
    color: rgba(255,255,255,.5);
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .72rem;
    color: rgba(255,255,255,.4);
    margin-bottom: 10px;
}
.card-meta i { margin-right: 3px; }
[dir="rtl"] .card-meta i { margin-right: 0; margin-left: 3px; }
.card-author { color: var(--primary, #6366f1); font-weight: 600; }
.card-source {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .72rem;
    color: rgba(255,255,255,.35);
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,.05);
}
.source-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── PAGINATION ────────────────────────────────────────────── */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.pg-btn {
    min-width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.03);
    color: rgba(255,255,255,.6);
    border-radius: 10px;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
}
.pg-btn:hover:not(:disabled):not(.pg-active) {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.2);
    color: #fff;
}
.pg-btn.pg-active {
    background: linear-gradient(135deg, var(--primary, #6366f1), var(--accent, #8b5cf6));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 2px 12px rgba(99,102,241,.35);
}
.pg-btn:disabled {
    opacity: .3;
    cursor: not-allowed;
}
.pg-dots {
    color: rgba(255,255,255,.3);
    font-size: .85rem;
    padding: 0 4px;
}
.pg-info {
    font-size: .78rem;
    color: rgba(255,255,255,.4);
    margin-left: 12px;
    white-space: nowrap;
}
[dir="rtl"] .pg-info { margin-left: 0; margin-right: 12px; }
[data-theme="light"] .pg-info { color: rgba(0,0,0,.4); }

/* ═══════════════════════════════════════════════════════════
   ARTICLE DETAIL PAGE
   ═══════════════════════════════════════════════════════════ */
.article-page { min-height: 60vh; padding-top: 100px; }

/* Breadcrumb */
.art-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: rgba(255,255,255,.4);
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.art-breadcrumb a {
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: color .2s;
}
.art-breadcrumb a:hover { color: var(--primary, #6366f1); }
.art-breadcrumb i { font-size: .6rem; }
.art-breadcrumb span { color: rgba(255,255,255,.7); }

/* Article Content */
.art-content {
    max-width: 800px;
    margin: 0 auto;
}

.art-header { margin-bottom: 30px; }
.art-cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 8px;
    font-size: .78rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}
.art-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 16px;
}
.art-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: .82rem;
    color: rgba(255,255,255,.45);
    flex-wrap: wrap;
}
.art-meta-item {
    display: flex; align-items: center; gap: 6px;
}
.art-meta-item i { color: var(--primary, #6366f1); font-size: .8rem; }

/* Hero Image */
.art-hero {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 32px;
    aspect-ratio: 16/9;
}
.art-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Body */
.art-body {
    font-size: 1.08rem;
    line-height: 1.9;
    color: rgba(255,255,255,.82);
    margin-bottom: 30px;
}
.art-body p {
    margin-bottom: 1.3em;
}
.art-body .art-subheading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: rgba(255,255,255,.95);
    margin: 2em 0 .8em;
    padding-bottom: .4em;
    border-bottom: 2px solid rgba(99,102,241,.15);
}
.art-body .art-quote {
    margin: 1.5em 0;
    padding: 16px 24px;
    border-left: 4px solid var(--primary, #6366f1);
    background: rgba(99,102,241,.05);
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: rgba(255,255,255,.7);
}
[dir="rtl"] .art-body .art-quote {
    border-left: none;
    border-right: 4px solid var(--primary, #6366f1);
    border-radius: 10px 0 0 10px;
}
.art-body .art-bullet {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: .8em;
    padding-left: 8px;
}
[dir="rtl"] .art-body .art-bullet { padding-left: 0; padding-right: 8px; }
.bullet-dot {
    color: var(--primary, #6366f1);
    font-weight: 700;
    font-size: 1.2em;
    line-height: 1.5;
    flex-shrink: 0;
}

/* Loading full article indicator */
.art-loading-more {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    background: rgba(99,102,241,.05);
    border: 1px dashed rgba(99,102,241,.2);
    border-radius: 12px;
    margin: 24px 0;
    color: rgba(255,255,255,.5);
    font-size: .88rem;
    animation: fadeIn .4s;
}
.loading-pulse {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--primary, #6366f1);
    animation: pulse-loading 1.2s ease-in-out infinite;
}
@keyframes pulse-loading {
    0%, 100% { opacity: .3; transform: scale(.8); }
    50% { opacity: 1; transform: scale(1); }
}
[data-theme="light"] .art-loading-more { background: rgba(99,102,241,.03); color: rgba(0,0,0,.45); }

/* Inline images in article body */
.art-inline-img {
    margin: 28px 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
}
.art-inline-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    transition: transform .4s;
}
.art-inline-img:hover img { transform: scale(1.02); }

/* Tags */
.art-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.art-tag {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(99,102,241,.08);
    border: 1px solid rgba(99,102,241,.15);
    border-radius: 20px;
    font-size: .78rem;
    color: rgba(99,102,241,.9);
    font-weight: 600;
    letter-spacing: .02em;
    transition: all .25s;
}
.art-tag:hover {
    background: rgba(99,102,241,.18);
    transform: translateY(-1px);
}

/* Source — enhanced layout */
.art-source {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 14px;
    font-size: .85rem;
    color: rgba(255,255,255,.5);
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.source-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.source-dot-lg {
    width: 14px; height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
}
.source-name {
    font-weight: 700;
    font-size: .9rem;
    color: rgba(255,255,255,.85);
}
.source-link { font-size: .8rem; margin-top: 2px; }
.source-link a {
    color: var(--primary, #6366f1);
    text-decoration: none;
    font-weight: 600;
}
.source-link a:hover { text-decoration: underline; }
.source-aizoniq {
    font-size: .78rem;
    color: rgba(255,255,255,.4);
    font-style: italic;
}
.source-aizoniq i { margin-right: 4px; color: var(--primary, #6366f1); }
[dir="rtl"] .source-aizoniq i { margin-right: 0; margin-left: 4px; }
.art-source i { color: var(--primary, #6366f1); }
.art-source a {
    color: var(--primary, #6366f1);
    text-decoration: none;
    font-weight: 600;
}
.art-source a:hover { text-decoration: underline; }

/* Share */
.art-share {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.share-label {
    font-size: .85rem;
    color: rgba(255,255,255,.5);
    font-weight: 500;
}
.share-label i { margin-right: 6px; }
[dir="rtl"] .share-label i { margin-right: 0; margin-left: 6px; }
.share-btns { display: flex; gap: 8px; }
.share-btn {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.03);
    color: rgba(255,255,255,.6);
    text-decoration: none;
    font-size: .9rem;
    transition: all .25s;
    cursor: pointer;
}
.share-btn:hover { transform: translateY(-2px); }
.share-btn.twitter:hover { background: rgba(29,161,242,.2); color: #1da1f2; border-color: rgba(29,161,242,.3); }
.share-btn.linkedin:hover { background: rgba(10,102,194,.2); color: #0a66c2; border-color: rgba(10,102,194,.3); }
.share-btn.facebook:hover { background: rgba(24,119,242,.2); color: #1877f2; border-color: rgba(24,119,242,.3); }
.share-btn.whatsapp:hover { background: rgba(37,211,102,.2); color: #25d366; border-color: rgba(37,211,102,.3); }
.share-btn.telegram:hover { background: rgba(0,136,204,.2); color: #0088cc; border-color: rgba(0,136,204,.3); }
.share-btn.email:hover { background: rgba(234,67,53,.2); color: #ea4335; border-color: rgba(234,67,53,.3); }
.share-btn.copy:hover { background: rgba(99,102,241,.2); color: #6366f1; border-color: rgba(99,102,241,.3); }

/* Related Articles */
.art-related {
    margin-bottom: 60px;
}
.art-related h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.related-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all .3s ease;
}
.related-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99,102,241,.25);
    box-shadow: 0 8px 25px rgba(0,0,0,.2);
}
.related-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
}
.related-info { padding: 12px; }
.related-cat {
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
}
.related-info h4 {
    font-size: .82rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 6px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.related-date {
    font-size: .7rem;
    color: rgba(255,255,255,.35);
}

/* 404 */
.art-404 {
    text-align: center;
    padding: 80px 20px;
}
.art-404 i { font-size: 3rem; color: rgba(255,255,255,.15); margin-bottom: 20px; }
.art-404 h2 { font-size: 1.5rem; margin-bottom: 12px; }
.art-404 p { color: rgba(255,255,255,.5); margin-bottom: 24px; }

/* ── CTA ───────────────────────────────────────────────────── */
.blog-cta { padding: 60px 0; }
.cta-card {
    position: relative;
    border-radius: 20px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    overflow: hidden;
}
.cta-glow {
    position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(99,102,241,.2), transparent 70%);
    top: -100px; right: -50px;
    pointer-events: none;
}
.cta-inner {
    position: relative;
    text-align: center;
    padding: 50px 30px;
}
.cta-ico {
    font-size: 2rem;
    color: var(--primary, #6366f1);
    margin-bottom: 16px;
}
.cta-inner h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.cta-inner p {
    color: rgba(255,255,255,.6);
    max-width: 500px;
    margin: 0 auto 24px;
    font-size: .9rem;
    line-height: 1.6;
}
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── FAQ ───────────────────────────────────────────────────── */
.blog-faq { padding: 60px 0; }
.faq-head { text-align: center; margin-bottom: 36px; }
.faq-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(99,102,241,.1); color: var(--primary, #6366f1);
    padding: 6px 16px; border-radius: 30px;
    font-size: .82rem; font-weight: 600;
    margin-bottom: 12px;
}
.faq-head h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem; font-weight: 700; margin-bottom: 8px;
}
.faq-head p { color: rgba(255,255,255,.5); font-size: .9rem; }
.faq-list { max-width: 750px; margin: 0 auto; }
.faq-item {
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color .3s;
}
.faq-item:hover { border-color: rgba(255,255,255,.12); }
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}
[dir="rtl"] .faq-q { text-align: right; }
.faq-q i {
    transition: transform .3s;
    color: var(--primary, #6366f1);
    font-size: .8rem;
}
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s;
}
.faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 20px 16px;
}
.faq-a p {
    font-size: .85rem;
    color: rgba(255,255,255,.55);
    line-height: 1.7;
}

/* ── SERVICES ──────────────────────────────────────────────── */
.blog-services { padding: 40px 0 60px; }
.srv-head { text-align: center; margin-bottom: 30px; }
.srv-head h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem; font-weight: 700; margin-bottom: 8px;
}
.srv-head p { color: rgba(255,255,255,.5); font-size: .9rem; }
.srv-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.srv-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 14px;
    padding: 24px 16px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all .3s;
}
.srv-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99,102,241,.2);
    box-shadow: 0 8px 25px rgba(0,0,0,.2);
}
.srv-ico {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px; margin: 0 auto 12px;
    font-size: 1.2rem; color: #fff;
}
.srv-card h4 { font-size: .82rem; font-weight: 600; }

/* ── TOAST ─────────────────────────────────────────────────── */
.news-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: linear-gradient(135deg, var(--primary, #6366f1), var(--accent, #8b5cf6));
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: .85rem;
    font-weight: 600;
    display: flex; align-items: center; gap: 8px;
    box-shadow: 0 8px 30px rgba(99,102,241,.4);
    opacity: 0;
    transition: all .4s cubic-bezier(.25,.8,.25,1);
    z-index: 9999;
    pointer-events: none;
}
.news-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════
   LIGHT THEME
   ═══════════════════════════════════════════════════════════ */
[data-theme="light"] .cat-nav-wrap {
    background: rgba(255,255,255,.95);
    border-bottom-color: rgba(0,0,0,.06);
}
[data-theme="light"] .cat-tab { color: rgba(0,0,0,.5); }
[data-theme="light"] .cat-tab:hover { color: rgba(0,0,0,.8); background: rgba(0,0,0,.04); }
[data-theme="light"] .cat-tab.active { color: #fff; }
[data-theme="light"] .cat-count { background: rgba(0,0,0,.08); color: rgba(0,0,0,.55); }
[data-theme="light"] .cat-tab.active .cat-count { background: rgba(255,255,255,.3); color: #fff; }

[data-theme="light"] .hero-sub { color: rgba(0,0,0,.5); }
[data-theme="light"] .hstat-label { color: rgba(0,0,0,.45); }
[data-theme="light"] .hstat-divider { background: rgba(0,0,0,.1); }

[data-theme="light"] .news-card { background: #fff; border-color: rgba(0,0,0,.08); }
[data-theme="light"] .news-card:hover { border-color: rgba(99,102,241,.25); box-shadow: 0 12px 40px rgba(0,0,0,.08); }
[data-theme="light"] .card-title { color: #1a1a2e; }
[data-theme="light"] .card-desc { color: rgba(0,0,0,.5); }
[data-theme="light"] .card-meta { color: rgba(0,0,0,.4); }
[data-theme="light"] .card-source { color: rgba(0,0,0,.35); border-top-color: rgba(0,0,0,.05); }

[data-theme="light"] .article-count { color: rgba(0,0,0,.5); }
[data-theme="light"] .toolbar-search input {
    background: rgba(0,0,0,.03);
    border-color: rgba(0,0,0,.08);
    color: #1a1a2e;
}
[data-theme="light"] .toolbar-search input:focus { border-color: var(--primary); background: #fff; }
[data-theme="light"] .toolbar-search i.fa-search { color: rgba(0,0,0,.3); }
[data-theme="light"] .s-clear { color: rgba(0,0,0,.35); }

[data-theme="light"] .pg-btn { background: #fff; border-color: rgba(0,0,0,.1); color: rgba(0,0,0,.6); }
[data-theme="light"] .pg-btn:hover:not(:disabled):not(.pg-active) { background: rgba(0,0,0,.03); color: #1a1a2e; }
[data-theme="light"] .pg-btn.pg-active { color: #fff; }
[data-theme="light"] .pg-dots { color: rgba(0,0,0,.3); }

[data-theme="light"] .grid-empty i { color: rgba(0,0,0,.12); }
[data-theme="light"] .grid-empty h3 { color: rgba(0,0,0,.5); }
[data-theme="light"] .grid-empty p { color: rgba(0,0,0,.35); }

[data-theme="light"] .art-breadcrumb { color: rgba(0,0,0,.4); }
[data-theme="light"] .art-breadcrumb a { color: rgba(0,0,0,.5); }
[data-theme="light"] .art-breadcrumb span { color: rgba(0,0,0,.7); }
[data-theme="light"] .art-title { color: #1a1a2e; }
[data-theme="light"] .art-meta { color: rgba(0,0,0,.45); }
[data-theme="light"] .art-body { color: rgba(0,0,0,.75); }
[data-theme="light"] .art-body .art-subheading { color: #1a1a2e; border-bottom-color: rgba(99,102,241,.12); }
[data-theme="light"] .art-body .art-quote { background: rgba(99,102,241,.04); color: rgba(0,0,0,.6); }
[data-theme="light"] .art-inline-img { border-color: rgba(0,0,0,.08); }
[data-theme="light"] .art-tags { border-bottom-color: rgba(0,0,0,.06); }
[data-theme="light"] .art-tag { background: rgba(99,102,241,.06); border-color: rgba(99,102,241,.12); color: rgba(99,102,241,.85); }
[data-theme="light"] .art-source { background: rgba(0,0,0,.02); border-color: rgba(0,0,0,.06); color: rgba(0,0,0,.5); }
[data-theme="light"] .source-name { color: rgba(0,0,0,.8); }
[data-theme="light"] .source-aizoniq { color: rgba(0,0,0,.35); }
[data-theme="light"] .art-share { border-color: rgba(0,0,0,.06); }
[data-theme="light"] .share-label { color: rgba(0,0,0,.5); }
[data-theme="light"] .share-btn { border-color: rgba(0,0,0,.1); background: rgba(0,0,0,.02); color: rgba(0,0,0,.5); }
[data-theme="light"] .related-card { background: #fff; border-color: rgba(0,0,0,.08); }
[data-theme="light"] .related-card:hover { border-color: rgba(99,102,241,.2); }
[data-theme="light"] .related-info h4 { color: #1a1a2e; }
[data-theme="light"] .related-date { color: rgba(0,0,0,.35); }
[data-theme="light"] .art-404 i { color: rgba(0,0,0,.12); }
[data-theme="light"] .art-404 p { color: rgba(0,0,0,.45); }

[data-theme="light"] .cta-card { background: #fff; border-color: rgba(0,0,0,.06); }
[data-theme="light"] .cta-inner p { color: rgba(0,0,0,.55); }

[data-theme="light"] .faq-item { border-color: rgba(0,0,0,.06); }
[data-theme="light"] .faq-item:hover { border-color: rgba(0,0,0,.12); }
[data-theme="light"] .faq-q { color: #1a1a2e; }
[data-theme="light"] .faq-a p { color: rgba(0,0,0,.55); }
[data-theme="light"] .faq-head p { color: rgba(0,0,0,.5); }

[data-theme="light"] .srv-card { background: #fff; border-color: rgba(0,0,0,.06); }
[data-theme="light"] .srv-card:hover { border-color: rgba(99,102,241,.15); }
[data-theme="light"] .srv-card h4 { color: #1a1a2e; }
[data-theme="light"] .srv-head p { color: rgba(0,0,0,.5); }

[data-theme="light"] .news-loading, [data-theme="light"] .article-loading { color: rgba(0,0,0,.4); }
[data-theme="light"] .live-pulse { background: rgba(16,185,129,.1); }

/* ═══════════════════════════════════════════════════════════
   Feature 1: BREAKING NEWS TICKER
   ═══════════════════════════════════════════════════════════ */
.news-ticker {
    display: flex;
    align-items: center;
    position: fixed;
    top: 86px;
    left: 0; right: 0;
    z-index: 95;
    background: linear-gradient(90deg, rgba(239,68,68,.18), rgba(99,102,241,.12), rgba(239,68,68,.08));
    border-bottom: 1px solid rgba(239,68,68,.25);
    backdrop-filter: blur(16px);
    height: 42px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(239,68,68,.1);
}
.ticker-label {
    flex-shrink: 0;
    background: #ef4444;
    color: #fff;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
    animation: ticker-pulse 2s infinite;
    z-index: 1;
}
@keyframes ticker-pulse {
    0%,100%{ background:#ef4444; }
    50%{ background:#dc2626; }
}
.ticker-track-wrap {
    flex: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
}
.ticker-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: ticker-scroll 60s linear infinite;
    padding: 0 30px;
}
@keyframes ticker-scroll {
    0%{ transform:translateX(0); }
    100%{ transform:translateX(-50%); }
}
[dir="rtl"] .ticker-track { animation:ticker-scroll-rtl 60s linear infinite; }
@keyframes ticker-scroll-rtl {
    0%{ transform:translateX(0); }
    100%{ transform:translateX(50%); }
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: rgba(255,255,255,.85);
    font-size: .8rem;
    font-weight: 500;
    padding: 4px 0;
    transition: color .2s;
}
.ticker-item:hover { color: #fff; }
.ticker-cat {
    font-size: .65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    color: #fff;
    text-transform: uppercase;
    flex-shrink: 0;
}
.ticker-title { max-width: 300px; overflow: hidden; text-overflow: ellipsis; }
.ticker-time { font-size: .7rem; color: rgba(255,255,255,.4); flex-shrink: 0; }

/* Offset hero when ticker is visible — class-based (set by JS) */
body.ticker-visible .blog-hero { padding-top: 196px; }
body.ticker-visible .cat-nav-wrap { top: 128px; }

[data-theme="light"] .news-ticker { background: linear-gradient(90deg, rgba(239,68,68,.08), rgba(99,102,241,.05)); border-bottom-color: rgba(239,68,68,.15); }
[data-theme="light"] .ticker-item { color: rgba(0,0,0,.75); }
[data-theme="light"] .ticker-item:hover { color: #000; }
[data-theme="light"] .ticker-time { color: rgba(0,0,0,.35); }

/* ═══════════════════════════════════════════════════════════
   Feature 2: READER MODE
   ═══════════════════════════════════════════════════════════ */
body.reader-mode .navbar,
body.reader-mode .blog-cta,
body.reader-mode .art-share,
body.reader-mode .art-related,
body.reader-mode .footer,
body.reader-mode .art-cat,
body.reader-mode .art-actions { display: none !important; }
body.reader-mode { background: #fafaf9 !important; color: #1a1a2e !important; }
body.reader-mode .article-page { padding-top: 40px; }
body.reader-mode .art-content { max-width: 680px; }
body.reader-mode .art-title { color: #111 !important; font-size: 2rem !important; }
body.reader-mode .art-meta { color: rgba(0,0,0,.5) !important; }
body.reader-mode .art-meta-item i { color: rgba(0,0,0,.4) !important; }
body.reader-mode .art-body { color: #333 !important; font-size: 1.18rem !important; line-height: 2 !important; }
body.reader-mode .art-body .art-subheading { color: #111 !important; }
body.reader-mode .art-body .art-quote { background: rgba(0,0,0,.03) !important; border-left-color: #6366f1 !important; color: #555 !important; }
body.reader-mode .art-hero { border-radius: 12px; }
body.reader-mode .art-tags { border-bottom-color: rgba(0,0,0,.08); }
body.reader-mode .art-tag { background: rgba(99,102,241,.06); color: #6366f1; border-color: rgba(99,102,241,.15); }
body.reader-mode .art-source { background: rgba(0,0,0,.02); border-color: rgba(0,0,0,.08); color: rgba(0,0,0,.5); }
body.reader-mode .source-name { color: #333 !important; }
body.reader-mode .art-breadcrumb { color: rgba(0,0,0,.4); }
body.reader-mode .art-breadcrumb a { color: rgba(0,0,0,.5); }
body.reader-mode .ai-summary { background: rgba(99,102,241,.04); border-color: rgba(99,102,241,.12); color: #333; }
/* Exit reader button (fixed) */
body.reader-mode::after {
    content: '✕ Exit Reader';
    position: fixed; top: 16px; right: 16px;
    background: #6366f1; color: #fff;
    padding: 8px 18px; border-radius: 10px;
    font-size: .82rem; font-weight: 600;
    cursor: pointer; z-index: 9999;
    box-shadow: 0 4px 15px rgba(99,102,241,.4);
}

/* ═══════════════════════════════════════════════════════════
   Feature 4: AI SUMMARY
   ═══════════════════════════════════════════════════════════ */
.ai-summary {
    background: rgba(99,102,241,.06);
    border: 1px solid rgba(99,102,241,.15);
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 28px;
}
.ai-summary-head {
    display: flex; align-items: center; gap: 8px;
    font-weight: 700; font-size: .9rem;
    color: var(--primary,#6366f1);
    margin-bottom: 12px;
}
.ai-summary-head i { font-size: 1rem; }
.ai-summary ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 8px;
}
.ai-summary li {
    position: relative;
    padding-left: 20px;
    font-size: .88rem;
    line-height: 1.6;
    color: rgba(255,255,255,.7);
}
.ai-summary li::before {
    content: '→';
    position: absolute; left: 0;
    color: var(--primary,#6366f1);
    font-weight: 700;
}
[dir="rtl"] .ai-summary li { padding-left: 0; padding-right: 20px; }
[dir="rtl"] .ai-summary li::before { left: auto; right: 0; content: '←'; }
[data-theme="light"] .ai-summary { background: rgba(99,102,241,.04); border-color: rgba(99,102,241,.12); }
[data-theme="light"] .ai-summary li { color: rgba(0,0,0,.6); }

/* ═══════════════════════════════════════════════════════════
   Article Action Buttons (Reader, TTS, Bookmark)
   ═══════════════════════════════════════════════════════════ */
.art-actions {
    display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap;
}
.art-action-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 18px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    color: rgba(255,255,255,.7);
    border-radius: 10px;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
}
.art-action-btn i { font-size: .9rem; }
.art-action-btn:hover {
    background: rgba(99,102,241,.12);
    border-color: rgba(99,102,241,.3);
    color: #fff;
}
.art-action-btn.active {
    background: linear-gradient(135deg,#6366f1,#8b5cf6);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 2px 12px rgba(99,102,241,.35);
}
[data-theme="light"] .art-action-btn { border-color: rgba(0,0,0,.1); background: rgba(0,0,0,.02); color: rgba(0,0,0,.6); }
[data-theme="light"] .art-action-btn:hover { background: rgba(99,102,241,.08); color: #6366f1; }

/* ═══════════════════════════════════════════════════════════
   Feature 5: TRENDING TOPICS
   ═══════════════════════════════════════════════════════════ */
.trending-section { padding: 40px 0; }
.trending-head { margin-bottom: 20px; }
.trending-head h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem; font-weight: 700;
    display: flex; align-items: center; gap: 10px;
}
.trending-head h2 i { color: #f59e0b; }
.trending-cloud {
    display: flex; flex-wrap: wrap; gap: 10px;
    padding: 20px;
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px;
}
.trend-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(99,102,241,.06);
    border: 1px solid rgba(99,102,241,.12);
    border-radius: 20px;
    color: rgba(99,102,241,.85);
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
}
.trend-tag:hover {
    background: rgba(99,102,241,.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99,102,241,.15);
}
.trend-tag sup { font-size: .65em; opacity: .6; margin-left: 3px; }
[data-theme="light"] .trending-cloud { background: rgba(0,0,0,.01); border-color: rgba(0,0,0,.06); }
[data-theme="light"] .trend-tag { background: rgba(99,102,241,.04); border-color: rgba(99,102,241,.1); }

/* ═══════════════════════════════════════════════════════════
   Feature 6: CARD BOOKMARK BUTTON
   ═══════════════════════════════════════════════════════════ */
.news-card { position: relative; }
.card-bookmark {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,.5);
    backdrop-filter: blur(8px);
    border: none;
    border-radius: 8px;
    color: rgba(255,255,255,.7);
    font-size: .85rem;
    cursor: pointer;
    z-index: 2;
    transition: all .25s;
    opacity: 0;
}
.news-card:hover .card-bookmark { opacity: 1; }
.card-bookmark.active { opacity: 1; color: #f59e0b; background: rgba(245,158,11,.2); }
.card-bookmark:hover { color: #f59e0b; transform: scale(1.1); }
[dir="rtl"] .card-bookmark { right: auto; left: 12px; }
[dir="rtl"] .card-cat { left: auto; right: 44px; }
.card-source-sm {
    display: inline-flex; align-items: center; gap: 4px;
}
.card-source-sm .source-dot { width: 5px; height: 5px; }

/* ═══════════════════════════════════════════════════════════
   Feature 7: INFINITE SCROLL SENTINEL
   ═══════════════════════════════════════════════════════════ */
.scroll-sentinel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 30px 20px;
    color: rgba(255,255,255,.4);
    font-size: .85rem;
}
[data-theme="light"] .scroll-sentinel { color: rgba(0,0,0,.35); }

/* ═══════════════════════════════════════════════════════════
   Feature 9: LIVE SOURCE STATUS
   ═══════════════════════════════════════════════════════════ */
.live-ok { color: #10b981; font-weight: 800; }
.live-total { color: rgba(255,255,255,.5); }
[data-theme="light"] .live-total { color: rgba(0,0,0,.4); }

/* ═══════════════════════════════════════════════════════════
   Feature 11: CATEGORY ANALYTICS CHART
   ═══════════════════════════════════════════════════════════ */
.cat-analytics-section { padding: 30px 0 20px; }
.analytics-head { text-align: center; margin-bottom: 20px; }
.analytics-head h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center; gap: 10px;
}
.analytics-head h2 i { color: #0ea5e9; }
.analytics-head p { color: rgba(255,255,255,.5); font-size: .85rem; margin-top: 4px; }
.cat-chart {
    max-width: 600px; margin: 0 auto;
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px;
    padding: 20px 24px;
}
.chart-bar-wrap {
    display: flex; align-items: center; gap: 12px; margin-bottom: 10px;
}
.chart-label { width: 110px; font-size: .8rem; font-weight: 600; text-align: right; color: rgba(255,255,255,.7); flex-shrink: 0; }
[dir="rtl"] .chart-label { text-align: left; }
.chart-bar-bg {
    flex: 1; height: 22px;
    background: rgba(255,255,255,.04);
    border-radius: 6px;
    overflow: hidden;
}
.chart-bar {
    height: 100%;
    border-radius: 6px;
    transition: width .8s ease;
    min-width: 2px;
}
.chart-val { width: 80px; font-size: .75rem; color: rgba(255,255,255,.5); }
[data-theme="light"] .cat-chart { background: rgba(0,0,0,.01); border-color: rgba(0,0,0,.06); }
[data-theme="light"] .chart-label { color: rgba(0,0,0,.6); }
[data-theme="light"] .chart-bar-bg { background: rgba(0,0,0,.04); }
[data-theme="light"] .chart-val { color: rgba(0,0,0,.4); }
[data-theme="light"] .analytics-head p { color: rgba(0,0,0,.45); }

/* ═══════════════════════════════════════════════════════════
   Feature 5: NEWSLETTER
   ═══════════════════════════════════════════════════════════ */
.newsletter-section { padding: 40px 0; }
.newsletter-card {
    max-width: 600px; margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, rgba(99,102,241,.08), rgba(139,92,246,.06));
    border: 1px solid rgba(99,102,241,.15);
    border-radius: 20px;
    padding: 40px 30px;
}
.newsletter-icon { font-size: 2.5rem; color: var(--primary,#6366f1); margin-bottom: 16px; }
.newsletter-card h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem; font-weight: 700; margin-bottom: 8px;
}
.newsletter-card p { color: rgba(255,255,255,.5); font-size: .9rem; margin-bottom: 20px; }
.newsletter-form {
    display: flex; gap: 10px; max-width: 400px; margin: 0 auto;
}
.newsletter-form input {
    flex: 1;
    padding: 12px 18px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    color: #fff;
    font-size: .88rem;
}
.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary,#6366f1);
    box-shadow: 0 0 0 3px rgba(99,102,241,.15);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.3); }
.newsletter-form button {
    padding: 12px 22px;
    background: linear-gradient(135deg,#6366f1,#8b5cf6);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-weight: 700;
    font-size: .85rem;
    cursor: pointer;
    display: flex; align-items: center; gap: 6px;
    transition: all .25s;
    white-space: nowrap;
}
.newsletter-form button:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(99,102,241,.4); }
.newsletter-success { color: #10b981; font-weight: 700; font-size: 1.1rem; display: flex; align-items: center; gap: 8px; justify-content: center; }
[data-theme="light"] .newsletter-card { background: linear-gradient(135deg, rgba(99,102,241,.04), rgba(139,92,246,.03)); border-color: rgba(99,102,241,.1); }
[data-theme="light"] .newsletter-card p { color: rgba(0,0,0,.5); }
[data-theme="light"] .newsletter-form input { background: rgba(0,0,0,.03); border-color: rgba(0,0,0,.08); color: #1a1a2e; }
[data-theme="light"] .newsletter-form input::placeholder { color: rgba(0,0,0,.3); }

/* ═══════════════════════════════════════════════════════════
   Feature 12: PUSH NOTIFICATION BUTTON
   ═══════════════════════════════════════════════════════════ */
.push-btn {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 16px;
    padding: 8px 20px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 30px;
    color: rgba(255,255,255,.6);
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
}
.push-btn:hover { background: rgba(99,102,241,.12); color: #fff; border-color: rgba(99,102,241,.3); }
.push-btn.active {
    background: rgba(16,185,129,.15);
    border-color: rgba(16,185,129,.3);
    color: #10b981;
}
.push-btn i { font-size: .9rem; }
[data-theme="light"] .push-btn { background: rgba(0,0,0,.03); border-color: rgba(0,0,0,.08); color: rgba(0,0,0,.5); }

/* ═══════════════════════════════════════════════════════════
   RTL
   ═══════════════════════════════════════════════════════════ */
[dir="rtl"] .cat-nav { direction: rtl; }
[dir="rtl"] .card-meta { direction: rtl; }
[dir="rtl"] .art-meta { direction: rtl; }
[dir="rtl"] .art-share { direction: rtl; }

/* ═══════════════════════════════════════════════════════════
   WOW: SKELETON LOADING CARDS
   ═══════════════════════════════════════════════════════════ */
.skeleton-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px;
    overflow: hidden;
    animation: card-in .5s ease both;
}
.skeleton-img {
    height: 200px;
    background: linear-gradient(90deg, rgba(255,255,255,.03) 25%, rgba(255,255,255,.08) 50%, rgba(255,255,255,.03) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}
.skeleton-body { padding: 16px; }
.skeleton-line {
    height: 14px;
    border-radius: 7px;
    background: linear-gradient(90deg, rgba(255,255,255,.04) 25%, rgba(255,255,255,.08) 50%, rgba(255,255,255,.04) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    margin-bottom: 10px;
}
.skeleton-line:nth-child(1) { width: 80%; }
.skeleton-line:nth-child(2) { width: 60%; }
.skeleton-line:nth-child(3) { width: 45%; height: 10px; }
@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
[data-theme="light"] .skeleton-img { background: linear-gradient(90deg, rgba(0,0,0,.03) 25%, rgba(0,0,0,.06) 50%, rgba(0,0,0,.03) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; }
[data-theme="light"] .skeleton-line { background: linear-gradient(90deg, rgba(0,0,0,.03) 25%, rgba(0,0,0,.06) 50%, rgba(0,0,0,.03) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; }
[data-theme="light"] .skeleton-card { background: #fff; border-color: rgba(0,0,0,.06); }

/* ═══════════════════════════════════════════════════════════
   WOW: SECTION DIVIDERS — glowing lines between sections
   ═══════════════════════════════════════════════════════════ */
.trending-section::before,
.cat-analytics-section::before,
.newsletter-section::before,
.blog-cta::before,
.blog-faq::before {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary, #6366f1), transparent);
    margin: 0 auto 30px;
    border-radius: 3px;
}

/* ═══════════════════════════════════════════════════════════
   WOW: ENHANCED LIVE BADGE (pulsing green)
   ═══════════════════════════════════════════════════════════ */
.live-pulse {
    border: 1px solid rgba(16,185,129,.2);
    box-shadow: 0 0 15px rgba(16,185,129,.1);
    animation: badge-glow 3s ease-in-out infinite;
}
@keyframes badge-glow {
    0%,100% { box-shadow: 0 0 10px rgba(16,185,129,.1); }
    50% { box-shadow: 0 0 25px rgba(16,185,129,.2); }
}

/* ═══════════════════════════════════════════════════════════
   WOW: CTA WITH ANIMATED BORDER
   ═══════════════════════════════════════════════════════════ */
.cta-card {
    position: relative;
    border-radius: 20px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
}
.cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(99,102,241,.15);
}
.cta-glow {
    position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(99,102,241,.25), transparent 70%);
    top: -100px; right: -50px;
    pointer-events: none;
    animation: orb-float 8s ease-in-out infinite alternate;
}

/* ═══════════════════════════════════════════════════════════
   WOW: NEWSLETTER CARD ENHANCED
   ═══════════════════════════════════════════════════════════ */
.newsletter-card {
    max-width: 600px; margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, rgba(99,102,241,.08), rgba(139,92,246,.06));
    border: 1px solid rgba(99,102,241,.15);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
}
.newsletter-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99,102,241,.1);
}
.newsletter-icon {
    font-size: 2.5rem;
    color: var(--primary,#6366f1);
    margin-bottom: 16px;
    animation: icon-bounce 3s ease-in-out infinite;
}
@keyframes icon-bounce {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ═══════════════════════════════════════════════════════════
   WOW: TICKER LABEL FLASH
   ═══════════════════════════════════════════════════════════ */
.ticker-label i {
    animation: flash-icon 2s ease-in-out infinite;
}
@keyframes flash-icon {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: .7; transform: scale(1.2); }
}

/* ═══════════════════════════════════════════════════════════
   WOW: CATEGORY TAB HOVER GLOW
   ═══════════════════════════════════════════════════════════ */
.cat-tab { position: relative; }
.cat-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
    border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════
   WOW: FAQ ITEM ENHANCED ANIMATION
   ═══════════════════════════════════════════════════════════ */
.faq-item {
    transition: border-color .3s, box-shadow .3s, transform .3s;
}
.faq-item.open {
    border-color: rgba(99,102,241,.2);
    box-shadow: 0 4px 20px rgba(99,102,241,.08);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   WOW: SERVICES CARD ICON FLOAT
   ═══════════════════════════════════════════════════════════ */
.srv-card:hover .srv-ico {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
}
.srv-ico {
    transition: transform .3s, box-shadow .3s;
}

/* ═══════════════════════════════════════════════════════════
   WOW: CHART BAR ANIMATED ENTRANCE
   ═══════════════════════════════════════════════════════════ */
.chart-bar {
    height: 100%;
    border-radius: 6px;
    transition: width 1.2s cubic-bezier(.25,.8,.25,1);
    min-width: 2px;
    position: relative;
    overflow: hidden;
}
.chart-bar::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; right: 0; bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
    animation: bar-shine 3s ease-in-out infinite;
}
@keyframes bar-shine {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* ═══════════════════════════════════════════════════════════
   WOW: TRENDING TAG RAINBOW HOVER
   ═══════════════════════════════════════════════════════════ */
.trend-tag:nth-child(3n+1):hover { background: rgba(236,72,153,.15); color: #ec4899; border-color: rgba(236,72,153,.25); }
.trend-tag:nth-child(3n+2):hover { background: rgba(14,165,233,.15); color: #0ea5e9; border-color: rgba(14,165,233,.25); }
.trend-tag:nth-child(3n):hover { background: rgba(16,185,129,.15); color: #10b981; border-color: rgba(16,185,129,.25); }

/* ═══════════════════════════════════════════════════════════
   WOW: TOAST NOTIFICATION — premium style
   ═══════════════════════════════════════════════════════════ */
.news-toast i { animation: bell-ring 1s ease-in-out; }
@keyframes bell-ring {
    0%,100% { transform: rotate(0); }
    15% { transform: rotate(15deg); }
    30% { transform: rotate(-10deg); }
    45% { transform: rotate(7deg); }
    60% { transform: rotate(-3deg); }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .news-grid { grid-template-columns: repeat(3, 1fr); }
    .srv-grid { grid-template-columns: repeat(3, 1fr); }
    .related-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
    .srv-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .blog-hero { padding: 120px 0 40px; }
    .blog-hero h1 { font-size: 1.8rem; }
    .hero-stats { gap: 14px; }
    .hstat-num { font-size: 1.2rem; }

    .cat-nav-wrap { top: 60px; }
    .cat-tab { padding: 7px 14px; font-size: .8rem; }

    .news-toolbar { flex-direction: column; align-items: stretch; }
    .toolbar-search { max-width: 100%; }

    .srv-grid { grid-template-columns: repeat(2, 1fr); }
    .related-grid { grid-template-columns: repeat(2, 1fr); }

    .art-title { font-size: 1.4rem; }
    .art-body { font-size: .95rem; }
    .art-share { flex-direction: column; gap: 12px; }

    .news-ticker { top: 70px; }
    body.ticker-visible .blog-hero { padding-top: 170px; }
    body.ticker-visible .cat-nav-wrap { top: 112px; }
    .ticker-title { max-width: 200px; }

    .newsletter-form { flex-direction: column; }
    .newsletter-form button { justify-content: center; }
    .art-actions { gap: 8px; }
    .art-action-btn { padding: 7px 14px; font-size: .78rem; }
}
@media (max-width: 540px) {
    .news-grid { grid-template-columns: 1fr; gap: 16px; }
    .card-img { height: 180px; }
    .srv-grid { grid-template-columns: repeat(2, 1fr); }
    .related-grid { grid-template-columns: 1fr; }
    .cta-inner { padding: 36px 20px; }
    .cta-inner h2 { font-size: 1.3rem; }
    .pg-btn { min-width: 34px; height: 34px; font-size: .8rem; }
}
