/* ============================================================
   LATEST SARKARI — Full Stylesheet
   Theme: DeepSeek Blue #4D6BFE
   ============================================================ */

/* ==================== ROOT ==================== */
:root {
    --blue: #4D6BFE;
    --blue-dark: #3A54D6;
    --blue-light: #6B85FF;
    --blue-soft: #eef2ff;
    --blue-softer: #f6f8ff;
    --blue-glow: rgba(77, 107, 254, 0.35);
    --ink: #0f172a;
    --muted: #64748b;
    --muted-soft: #94a3b8;
    --line: rgba(15, 23, 42, 0.07);
    --line-strong: rgba(15, 23, 42, 0.10);
    --danger: #ef4444;
    --success: #10b981;
    --amber: #f59e0b;
    --nav-h: 76px;
    --radius: 12px;
    --radius-lg: 18px;
    --radius-pill: 999px;
    --shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 20px 50px rgba(77, 107, 254, 0.12);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==================== RESET ==================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body {
    height: 100%;
    background: #ffffff;
    color: var(--ink);
    font-family: 'Plus Jakarta Sans', Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
    overflow-x: hidden;
}
body { min-height: 100vh; display: flex; flex-direction: column; }
a { color: var(--blue); text-decoration: none; transition: color 0.2s; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--blue); color: #fff; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #f8fafc; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

/* ==================== BACKGROUND ==================== */
.bg-grid {
    position: fixed; inset: 0; z-index: -10; pointer-events: none;
    background-image: radial-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}
.glow-blob {
    position: fixed; border-radius: 50%; filter: blur(120px);
    opacity: 0.14; animation: floatBlob 20s infinite ease-in-out alternate;
    z-index: -9; pointer-events: none;
}
.blob-blue { top: -10%; left: -10%; width: 600px; height: 600px; background: var(--blue); }
.blob-indigo { bottom: -10%; right: -10%; width: 600px; height: 600px; background: var(--blue-light); animation-delay: -5s; }
@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -40px) scale(1.1); }
}
.deepseek-border {
    height: 4px; width: 100%; flex-shrink: 0;
    background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 50%, var(--blue-dark) 100%);
}

/* ==================== SCROLL PROGRESS ==================== */
.scroll-progress {
    position: fixed; top: 0; left: 0;
    height: 3px; width: 0; z-index: 200;
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
    transition: width 0.1s linear;
    box-shadow: 0 0 10px var(--blue-glow);
    pointer-events: none;
}

/* ==================== MARQUEE ==================== */
.marquee-top {
    overflow: hidden; white-space: nowrap; display: flex;
    background: linear-gradient(90deg, var(--blue), var(--blue-light), var(--blue-dark));
    color: #fff; padding: 8px 0;
    font-size: 11px; font-weight: 800; letter-spacing: 0.15em;
    text-transform: uppercase; flex-shrink: 0;
}
.marquee-top-content { display: flex; animation: marquee 30s linear infinite; }
.marquee-top-content span { margin: 0 32px; display: inline-flex; align-items: center; gap: 8px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ==================== NAVBAR ==================== */
.nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(1.7);
    -webkit-backdrop-filter: blur(20px) saturate(1.7);
    border-bottom: 1px solid var(--line);
    flex-shrink: 0;
    transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.scrolled { box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05); background: rgba(255, 255, 255, 0.95); }
.nav-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 24px;
    height: var(--nav-h); display: flex; align-items: center; gap: 24px;
}
.brand {
    display: flex; align-items: center; gap: 12px;
    color: var(--ink); font-weight: 800;
    transition: transform 0.25s var(--ease); flex-shrink: 0;
}
.brand:hover { transform: translateY(-1px); }
.brand-logo {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 20px;
    box-shadow: 0 8px 20px var(--blue-glow);
    transition: transform 0.7s var(--ease);
}
.brand:hover .brand-logo { transform: rotate(360deg); }
.brand-text { font-size: 22px; font-weight: 900; letter-spacing: -0.02em; line-height: 1; }
.brand-text .accent {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu { display: flex; align-items: center; gap: 4px; flex: 1; overflow-x: auto; scrollbar-width: none; }
.nav-menu::-webkit-scrollbar { display: none; }
.nav-link {
    padding: 9px 14px; font-size: 14px; font-weight: 600;
    color: var(--ink); border-radius: 10px;
    transition: all 0.25s var(--ease); white-space: nowrap;
}
.nav-link:hover { color: var(--blue); background: var(--blue-soft); }
.nav-link.active { color: var(--blue); background: var(--blue-soft); }

.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.nav-icon-btn {
    width: 42px; height: 42px; border-radius: 12px;
    background: var(--blue-soft); color: var(--blue);
    border: none; display: none;
    align-items: center; justify-content: center;
    font-size: 16px; transition: all 0.2s var(--ease);
}
.nav-icon-btn:hover { background: var(--blue); color: #fff; }

.nav-search {
    position: relative; display: flex; align-items: center;
    background: var(--blue-softer); border: 1.5px solid var(--line);
    border-radius: var(--radius-pill); padding: 0 16px;
    transition: all 0.25s var(--ease); min-width: 240px;
}
.nav-search:focus-within { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(77, 107, 254, 0.12); background: #fff; }
.nav-search i { color: var(--muted); font-size: 14px; }
.nav-search input {
    flex: 1; padding: 11px 10px; border: none; background: transparent;
    font-size: 14px; font-family: inherit; outline: none; color: var(--ink);
}
.search-suggest {
    position: absolute; top: calc(100% + 8px); left: 0; right: 0;
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
    max-height: 400px; overflow-y: auto; display: none; z-index: 200;
}
.search-suggest.active { display: block; }
.search-suggest a {
    display: block; padding: 12px 16px; color: var(--ink);
    font-size: 13.5px; border-bottom: 1px solid var(--line);
    transition: background 0.2s;
}
.search-suggest a:last-child { border-bottom: none; }
.search-suggest a:hover { background: var(--blue-softer); color: var(--blue); }

.menu-toggle {
    display: none; background: none; border: none;
    font-size: 22px; color: var(--blue);
    width: 42px; height: 42px; border-radius: 10px;
    align-items: center; justify-content: center;
    transition: background 0.2s;
}
.menu-toggle:hover { background: var(--blue-soft); }

.mobile-search-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.5); backdrop-filter: blur(8px);
    z-index: 500; display: none; padding: 80px 16px 0;
}
.mobile-search-overlay.active { display: block; }
.mobile-search-form {
    background: #fff; border-radius: var(--radius-lg);
    display: flex; align-items: center; padding: 0 16px;
    box-shadow: var(--shadow-lg);
}
.mobile-search-form i { color: var(--blue); font-size: 18px; }
.mobile-search-form input {
    flex: 1; padding: 18px 12px; border: none; font-size: 16px;
    font-family: inherit; outline: none; color: var(--ink);
}
.mobile-search-form button {
    background: var(--blue-soft); color: var(--blue); border: none;
    width: 36px; height: 36px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}

/* ==================== MAIN ==================== */
.app-main { flex: 1 0 auto; display: flex; flex-direction: column; position: relative; }
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 24px; width: 100%; }

/* ==================== HERO ==================== */
.hero {
    padding: 70px 0 60px;
    background: linear-gradient(180deg, #ffffff 0%, var(--blue-softer) 100%);
    position: relative; overflow: hidden; text-align: center;
}
.hero::before {
    content: ""; position: absolute; top: -200px; left: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(closest-side, rgba(77, 107, 254, 0.18), transparent 70%);
    filter: blur(30px); pointer-events: none;
}
.hero::after {
    content: ""; position: absolute; bottom: -200px; right: -150px;
    width: 400px; height: 400px;
    background: radial-gradient(closest-side, rgba(107, 133, 255, 0.14), transparent 70%);
    filter: blur(30px); pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; }

.badge-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--blue-soft); color: var(--blue);
    padding: 7px 16px; border-radius: var(--radius-pill);
    font-size: 12px; font-weight: 800;
    letter-spacing: 0.12em; text-transform: uppercase;
    margin-bottom: 22px; position: relative; overflow: hidden;
}
.badge-pill::before {
    content: ""; position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shine 3s infinite;
}
@keyframes shine { to { left: 100%; } }

.hero h1 {
    font-size: clamp(34px, 5.5vw, 64px);
    line-height: 1.02; letter-spacing: -0.03em;
    margin: 0 0 22px; color: var(--ink);
    font-weight: 900; text-transform: uppercase;
    font-family: 'Space Grotesk', sans-serif;
}
.hero h1 .accent {
    display: inline-block;
    background: linear-gradient(135deg, var(--blue), #7d92ff, var(--blue));
    background-size: 200% auto;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 4s linear infinite;
}
@keyframes gradientMove { to { background-position: 200% center; } }

.hero-sub {
    color: var(--muted); font-size: 17px; line-height: 1.6;
    margin: 0 auto 30px; max-width: 640px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.trust-strip {
    margin-top: 50px;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px; padding: 24px;
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.trust-item { text-align: center; transition: transform 0.3s var(--ease); }
.trust-item:hover { transform: translateY(-4px); }
.trust-num {
    font-size: clamp(22px, 3vw, 32px); font-weight: 900;
    letter-spacing: -0.02em; line-height: 1.1;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.trust-label {
    font-size: 11.5px; color: var(--muted); font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase; margin-top: 6px;
}

/* ==================== SECTIONS ==================== */
.section { padding: 70px 0; position: relative; }
.section-alt { background: var(--blue-softer); }
.section-tight { padding: 20px 0; }
.sec-head { text-align: center; max-width: 680px; margin: 0 auto 50px; }
.sec-head .kicker {
    display: inline-block; background: var(--blue-soft); color: var(--blue);
    padding: 6px 14px; border-radius: var(--radius-pill);
    font-size: 11px; font-weight: 800;
    letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 18px;
}
.sec-head h2 {
    font-size: clamp(30px, 4.5vw, 48px); margin: 0 0 14px;
    letter-spacing: -0.03em; font-weight: 900;
    text-transform: uppercase; line-height: 1.05;
    font-family: 'Space Grotesk', sans-serif;
}
.sec-head h2 .accent {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.sec-head p { color: var(--muted); font-size: 16px; margin: 0; line-height: 1.6; }
.sec-head-row {
    display: flex; align-items: center; justify-content: space-between;
    gap: 14px; margin-bottom: 24px; flex-wrap: wrap;
}
.sec-title {
    font-size: 16px; font-weight: 900;
    letter-spacing: -0.01em; color: var(--ink);
    display: flex; align-items: center; gap: 10px;
}
.sec-title::before {
    content: ""; width: 4px; height: 22px; border-radius: 2px;
    background: linear-gradient(180deg, var(--blue), var(--blue-light));
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 11px 22px;
    border-radius: var(--radius-pill);
    border: none;
    font-weight: 700; font-size: 14px;
    transition: all 0.3s var(--ease);
    text-align: center;
    position: relative; overflow: hidden;
    isolation: isolate; cursor: pointer;
    white-space: nowrap; text-decoration: none;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
    background: linear-gradient(90deg, var(--blue), var(--blue-dark));
    color: #fff;
    box-shadow: 0 10px 25px -5px var(--blue-glow);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px var(--blue-glow);
}

.btn-outline {
    background: transparent; color: var(--blue);
    border: 1.5px solid var(--blue);
}
.btn-outline:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }

.btn-ghost {
    background: #fff; color: var(--ink);
    border: 1.5px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-sm { padding: 7px 14px; font-size: 12.5px; }
.btn-block { width: 100%; }

/* ==================== POST CARDS ==================== */
.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}

.post-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: all 0.4s var(--ease);
    position: relative;
}
.post-card:hover {
    transform: translateY(-8px);
    border-color: rgba(77, 107, 254, 0.35);
    box-shadow: 0 24px 50px rgba(77, 107, 254, 0.14);
}

.post-card-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--blue-soft);
    display: block;
}
.post-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.post-card:hover .post-card-image img { transform: scale(1.08); }

.post-card-tag {
    position: absolute; top: 12px; left: 12px;
    padding: 5px 12px;
    color: #fff; font-size: 11px; font-weight: 800;
    letter-spacing: 0.05em; text-transform: uppercase;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.post-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }

.post-card-title {
    font-size: 16px; font-weight: 800;
    line-height: 1.35; margin: 0 0 10px;
    letter-spacing: -0.01em;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
}
.post-card-title a { color: var(--ink); }
.post-card-title a:hover { color: var(--blue); }

.post-card-excerpt {
    font-size: 13.5px; color: var(--muted);
    line-height: 1.55; margin: 0 0 16px;
    flex: 1;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card-meta {
    display: flex; align-items: center; gap: 16px;
    font-size: 11.5px; color: var(--muted-soft);
    font-weight: 600;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}
.post-card-meta span { display: inline-flex; align-items: center; gap: 5px; }
.post-card-meta i { font-size: 12px; color: var(--blue); }

/* ==================== QUICK CARDS ==================== */
.quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}
.quick-card {
    display: flex; flex-direction: column; align-items: flex-start;
    gap: 12px; padding: 22px;
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid var(--line);
    text-decoration: none; color: var(--ink);
    transition: all 0.35s var(--ease);
    position: relative; overflow: hidden;
}
.quick-card:hover {
    transform: translateY(-4px);
    border-color: rgba(77, 107, 254, 0.35);
    box-shadow: 0 18px 40px rgba(77, 107, 254, 0.12);
}
.quick-icon {
    width: 42px; height: 42px; border-radius: 12px;
    background: var(--blue-soft); color: var(--blue);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    transition: all 0.4s var(--ease);
}
.quick-card:hover .quick-icon {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: #fff;
    transform: scale(1.1) rotate(-8deg);
    box-shadow: 0 8px 20px var(--blue-glow);
}
.quick-card b { font-size: 14.5px; font-weight: 800; }
.quick-card span { font-size: 12.5px; color: var(--muted); line-height: 1.4; }

/* ==================== AD BLOCKER MODAL ==================== */
.adblock-overlay {
    position: fixed; inset: 0;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
}
.adblock-modal {
    background: #fff;
    border-radius: 24px;
    padding: 40px 32px;
    max-width: 520px; width: 100%;
    text-align: center;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    animation: fadeUp 0.4s var(--ease);
    max-height: 90vh; overflow-y: auto;
}
.adblock-icon {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: #fff; font-size: 36px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 20px 40px var(--blue-glow);
}
.adblock-modal h2 {
    font-size: 24px; font-weight: 900;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
    font-family: 'Space Grotesk', sans-serif;
}
.adblock-message {
    color: var(--muted); font-size: 14.5px;
    line-height: 1.6; margin: 0 0 24px;
}
.adblock-reasons {
    display: flex; flex-direction: column; gap: 12px;
    text-align: left; margin-bottom: 24px;
}
.adblock-reason {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 14px 16px;
    background: var(--blue-softer);
    border-radius: var(--radius);
    border: 1px solid var(--line);
}
.adblock-reason > i {
    color: var(--blue); font-size: 20px;
    flex-shrink: 0; margin-top: 2px;
}
.adblock-reason > div { display: flex; flex-direction: column; gap: 2px; }
.adblock-reason b { font-size: 13.5px; font-weight: 800; }
.adblock-reason span { font-size: 12.5px; color: var(--muted); line-height: 1.4; }
.adblock-actions {
    display: flex; gap: 10px; justify-content: center;
    flex-wrap: wrap; margin-bottom: 20px;
}
.adblock-actions .btn { min-width: 140px; }
.adblock-hint {
    font-size: 12px; color: var(--muted-soft);
    line-height: 1.5; margin: 0;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}
.adblock-hint b { color: var(--blue); }

/* ==================== BREADCRUMB ==================== */
.breadcrumb {
    padding: 18px 0;
    background: var(--blue-softer);
    border-bottom: 1px solid var(--line);
}
.breadcrumb ol {
    list-style: none; padding: 0; margin: 0;
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; flex-wrap: wrap;
}
.breadcrumb li {
    display: flex; align-items: center; gap: 8px;
    color: var(--muted); font-weight: 600;
}
.breadcrumb li:not(:last-child)::after {
    content: "/"; color: var(--muted-soft);
}
.breadcrumb a { color: var(--blue); font-weight: 700; }
.breadcrumb li[aria-current="page"] { color: var(--ink); font-weight: 800; }

/* ==================== BACK BUTTON ==================== */
.back-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    background: #fff;
    border: 1.5px solid var(--line-strong);
    border-radius: var(--radius-pill);
    color: var(--ink); font-weight: 700; font-size: 13.5px;
    margin: 20px 0;
    transition: all 0.3s var(--ease);
    cursor: pointer;
}
.back-btn:hover {
    background: var(--blue); color: #fff;
    border-color: var(--blue);
    transform: translateX(-4px);
}
.back-btn i { font-size: 12px; }

/* ==================== SINGLE POST ==================== */
.post-single {
    background: #fff;
    padding: 40px 0 80px;
}
.post-single .wrap { max-width: 860px; }

.post-single-head { margin-bottom: 32px; }
.post-single-title {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 900; line-height: 1.15;
    letter-spacing: -0.025em;
    margin: 0 0 20px;
    font-family: 'Space Grotesk', sans-serif;
}
.post-single-meta {
    display: flex; gap: 18px; flex-wrap: wrap;
    font-size: 13px; color: var(--muted);
    font-weight: 600;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}
.post-single-meta span { display: inline-flex; align-items: center; gap: 6px; }
.post-single-meta i { color: var(--blue); }

.post-featured-image {
    margin: 24px 0 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.post-featured-image img { width: 100%; height: auto; }

.post-content {
    font-size: 16.5px; line-height: 1.75;
    color: #1e293b;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.post-content p { margin: 0 0 20px; }
.post-content h2 {
    font-size: 24px; font-weight: 900;
    margin: 36px 0 16px; letter-spacing: -0.02em;
    font-family: 'Space Grotesk', sans-serif;
}
.post-content h3 {
    font-size: 20px; font-weight: 800;
    margin: 28px 0 14px;
}
.post-content a { color: var(--blue); font-weight: 700; text-decoration: underline; }
.post-content ul, .post-content ol { margin: 0 0 20px; padding-left: 24px; }
.post-content li { margin-bottom: 8px; }
.post-content img {
    max-width: 100%; height: auto;
    border-radius: var(--radius);
    margin: 20px 0;
}
.post-content blockquote {
    border-left: 4px solid var(--blue);
    padding: 8px 20px;
    background: var(--blue-softer);
    border-radius: var(--radius);
    margin: 24px 0;
    font-style: italic;
    color: var(--muted);
}
.post-content table {
    width: 100%; border-collapse: collapse;
    margin: 20px 0; font-size: 14.5px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.post-content table th {
    background: linear-gradient(180deg, #f8fafc, #f1f5f9);
    padding: 12px 16px;
    text-align: left;
    font-size: 12px; font-weight: 800;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--muted);
    border-bottom: 1px solid var(--line);
}
.post-content table td {
    padding: 12px 16px;
    border-top: 1px solid var(--line);
    color: var(--ink);
}
.post-content table tr:hover { background: var(--blue-softer); }
.post-content code {
    background: var(--blue-softer);
    padding: 3px 8px;
    border-radius: 6px;
    font-family: ui-monospace, Menlo, Consolas, monospace;
    font-size: 0.9em;
    color: var(--blue-dark);
}

/* Share buttons */
.share-buttons {
    display: flex; gap: 10px; flex-wrap: wrap;
    margin: 40px 0;
    padding: 24px;
    background: var(--blue-softer);
    border-radius: var(--radius-lg);
    align-items: center;
}
.share-buttons > span {
    font-size: 13px; font-weight: 800;
    color: var(--muted); text-transform: uppercase;
    letter-spacing: 0.08em; margin-right: 10px;
}
.share-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px; border-radius: var(--radius-pill);
    font-size: 13px; font-weight: 700;
    color: #fff; transition: all 0.3s var(--ease);
    cursor: pointer; border: none;
}
.share-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.15); }
.share-fb { background: #1877f2; }
.share-tw { background: #0f172a; }
.share-wa { background: #25d366; }
.share-tg { background: #0088cc; }
.share-cp { background: var(--blue); }

/* ==================== FOOTER ==================== */
.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 60px 0 0;
    margin-top: auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-col h4 {
    color: #fff; font-size: 14px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.1em;
    margin: 0 0 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
    color: #cbd5e1; font-size: 14px;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--blue-light); }

.footer .brand { color: #fff; margin-bottom: 16px; }
.footer .brand-text { color: #fff; }
.footer-about {
    color: #94a3b8; font-size: 13.5px;
    line-height: 1.65; margin: 0 0 20px;
    max-width: 340px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff; font-size: 15px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s var(--ease);
}
.footer-social a:hover {
    background: var(--blue); transform: translateY(-3px);
}

.footer-search {
    display: flex; align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-pill);
    padding: 0 6px 0 16px;
    margin-bottom: 16px;
}
.footer-search input {
    flex: 1; padding: 11px 10px 11px 0;
    background: transparent; border: none;
    color: #fff; font-size: 14px; font-family: inherit;
    outline: none;
}
.footer-search input::placeholder { color: #64748b; }
.footer-search button {
    background: var(--blue); color: #fff;
    border: none; width: 36px; height: 36px;
    border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    transition: all 0.3s var(--ease);
}
.footer-search button:hover { background: var(--blue-dark); }
.footer-note {
    font-size: 12.5px; color: #94a3b8;
    display: flex; align-items: center; gap: 6px;
    margin: 0;
}
.footer-note i { color: var(--blue-light); }

.footer-bottom {
    padding: 24px 0;
    display: flex; justify-content: space-between;
    align-items: center; gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #94a3b8;
}

/* ==================== REVEAL ANIMATION ==================== */
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: none; }
}

/* ==================== 404 / ERROR ==================== */
.error-wrap {
    flex: 1;
    display: flex; align-items: center; justify-content: center;
    padding: 60px 20px;
    min-height: 60vh;
}
.error-card {
    text-align: center;
    max-width: 480px;
    padding: 40px 30px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.error-icon {
    width: 100px; height: 100px; border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: #fff; font-size: 44px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 20px 40px var(--blue-glow);
}
.error-card h1 {
    font-size: 28px; font-weight: 900;
    margin: 0 0 12px;
    font-family: 'Space Grotesk', sans-serif;
}
.error-card p {
    color: var(--muted); font-size: 15px;
    line-height: 1.6; margin: 0 0 24px;
}

/* ==================== PAGINATION ==================== */
.pagination {
    display: flex; gap: 6px; justify-content: center;
    margin: 40px 0 0; flex-wrap: wrap;
}
.pagination a, .pagination span {
    min-width: 42px; height: 42px;
    padding: 0 14px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: var(--radius);
    background: #fff; border: 1.5px solid var(--line);
    color: var(--ink); font-weight: 700; font-size: 14px;
    transition: all 0.25s var(--ease);
}
.pagination a:hover { border-color: var(--blue); color: var(--blue); }
.pagination .current {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: #fff; border-color: transparent;
    box-shadow: 0 8px 20px var(--blue-glow);
}

/* ==================== PAGE HEAD (category/search) ==================== */
.page-head {
    padding: 40px 0 30px;
    background: linear-gradient(180deg, #ffffff, var(--blue-softer));
    border-bottom: 1px solid var(--line);
    text-align: center;
}
.page-head h1 {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 900;
    letter-spacing: -0.025em;
    margin: 0 0 10px;
    font-family: 'Space Grotesk', sans-serif;
}
.page-head h1 .accent {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.page-head p { color: var(--muted); font-size: 15px; margin: 0; }

/* ==================== EMPTY STATE ==================== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}
.empty-state i {
    font-size: 48px; color: var(--muted-soft);
    margin-bottom: 16px;
}
.empty-state h3 { font-size: 20px; font-weight: 800; margin: 0 0 8px; }
.empty-state p { color: var(--muted); font-size: 14px; margin: 0 0 20px; }

/* ==================== SIDEBAR LAYOUT ==================== */
.content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    padding: 40px 0;
}
.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}
.sidebar-widget {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 22px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}
.sidebar-widget h3 {
    font-size: 15px; font-weight: 900;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
    display: flex; align-items: center; gap: 8px;
}
.sidebar-widget h3::before {
    content: ""; width: 3px; height: 18px;
    background: linear-gradient(180deg, var(--blue), var(--blue-light));
    border-radius: 2px;
}

.sidebar-search {
    display: flex; align-items: center;
    background: var(--blue-softer);
    border: 1.5px solid var(--line);
    border-radius: var(--radius-pill);
    padding: 0 16px;
    margin-bottom: 16px;
}
.sidebar-search input {
    flex: 1; padding: 11px 10px;
    border: none; background: transparent;
    font-size: 14px; font-family: inherit; outline: none;
}
.sidebar-search button {
    background: none; border: none;
    color: var(--blue); font-size: 14px;
    padding: 8px;
}

.sidebar-posts { display: flex; flex-direction: column; gap: 12px; }
.sidebar-post {
    display: flex; gap: 12px;
    padding: 10px; border-radius: var(--radius);
    transition: background 0.2s;
}
.sidebar-post:hover { background: var(--blue-softer); }
.sidebar-post img {
    width: 64px; height: 64px;
    border-radius: 10px; object-fit: cover;
    flex-shrink: 0;
}
.sidebar-post-info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.sidebar-post-info b {
    font-size: 13px; font-weight: 700;
    line-height: 1.35; color: var(--ink);
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
}
.sidebar-post-info span {
    font-size: 11px; color: var(--muted-soft);
    font-weight: 600;
}

.sidebar-cats { list-style: none; padding: 0; margin: 0; }
.sidebar-cats li { margin-bottom: 6px; }
.sidebar-cats a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 14px;
    border-radius: var(--radius);
    color: var(--ink); font-size: 13.5px;
    font-weight: 700;
    transition: all 0.25s var(--ease);
}
.sidebar-cats a:hover { background: var(--blue-soft); color: var(--blue); }
.sidebar-cats a i { color: var(--blue); margin-right: 10px; }
.sidebar-cats a .count {
    font-size: 11px; padding: 2px 8px;
    background: var(--blue-soft); color: var(--blue);
    border-radius: 999px;
    font-weight: 800;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .content-with-sidebar {
        grid-template-columns: 1fr;
    }
    .sidebar { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 900px) {
    .nav-menu { display: none; }
    .nav-menu.open {
        display: flex; flex-direction: column;
        position: absolute; top: var(--nav-h); left: 0; right: 0;
        background: #fff; padding: 20px;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-lg);
        gap: 4px;
    }
    .nav-search { display: none; }
    .nav-icon-btn { display: flex; }
    .menu-toggle { display: flex; }
    .hero { padding: 44px 0 40px; }
    .section { padding: 44px 0; }
    .trust-strip { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: left; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
    .wrap { padding: 0 16px; }
    .nav-inner { padding: 0 16px; height: 66px; }
    .brand-text { font-size: 18px; }
    .brand-logo { width: 38px; height: 38px; font-size: 17px; }
    .hero h1 { font-size: 30px; }
    .hero-sub { font-size: 14.5px; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { width: 100%; }
    .post-grid { grid-template-columns: 1fr; gap: 16px; }
    .quick-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .quick-card { padding: 16px; }
    .share-buttons { padding: 16px; gap: 8px; }
    .share-btn { padding: 8px 14px; font-size: 12px; }
    .adblock-modal { padding: 30px 22px; }
    .adblock-modal h2 { font-size: 20px; }
    .adblock-icon { width: 64px; height: 64px; font-size: 28px; }
    .sec-head h2 { font-size: 26px; }
    .post-card-title { font-size: 15px; }
}
/* ==================== ADBLOCK BLUR ==================== */
.adblock-blur {
    filter: blur(8px);
    pointer-events: none;
    user-select: none;
}

@keyframes shakeAnim {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-10px); }
    40% { transform: translateX(10px); }
    60% { transform: translateX(-6px); }
    80% { transform: translateX(6px); }
}