:root {
    /* === Brand Colors === */
    --pink-50:  #fdf2f8;
    --pink-100: #fce7f3;
    --pink-200: #fbcfe8;
    --pink-300: #f9a8d4;
    --pink-400: #f472b6;
    --pink-500: #ec4899;
    --pink-600: #db2777;
    --pink-700: #be185d;
    --pink-800: #9d174d;

    --purple-400: #c084fc;
    --purple-500: #a855f7;
    --purple-600: #9333ea;

    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;

    --green-400: #4ade80;
    --green-500: #22c55e;

    --red-400: #f87171;
    --red-500: #ef4444;

    /* === Neutral Palette === */
    --gray-50:  #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* === Semantic Light === */
    --bg-body:      #f3f4f6;
    --bg-card:      #ffffff;
    --bg-header:    rgba(255,255,255,0.92);
    --bg-input:     #ffffff;
    --bg-hover:     #f3f4f6;
    --bg-sidebar:   #ffffff;
    --bg-glass:     rgba(255,255,255,0.7);
    --bg-catbar:    #ffffff;

    --text-primary:   #111827;
    --text-secondary: #4b5563;
    --text-muted:     #9ca3af;
    --text-link:      #db2777;

    --border:       #e5e7eb;
    --border-input: #d1d5db;

    --shadow-xs: 0 1px 2px 0 rgba(0,0,0,0.05);
    --shadow:    0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -2px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.06);

    --radius:    8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl:20px;

    --gradient-brand: linear-gradient(135deg, var(--pink-500), var(--purple-500));
    --gradient-warm:  linear-gradient(135deg, var(--amber-400), var(--pink-500));
    --gradient-hero:  linear-gradient(135deg, #fdf2f8 0%, #fce7f3 50%, #f3e8ff 100%);

    --transition: 0.2s ease;
    --transition-slow: 0.4s ease;
}

/* ===== DARK MODE ===== */
.dark {
    --bg-body:      #0f0f0f;
    --bg-card:      #1a1a1a;
    --bg-header:    rgba(15,15,15,0.95);
    --bg-input:     #262626;
    --bg-hover:     #2a2a2a;
    --bg-sidebar:   #1a1a1a;
    --bg-glass:     rgba(26,26,26,0.8);
    --bg-catbar:    #141414;

    --text-primary:   #f5f5f5;
    --text-secondary: #a3a3a3;
    --text-muted:     #737373;
    --text-link:      #f9a8d4;

    --border:       #2a2a2a;
    --border-input: #404040;

    --shadow-xs: 0 1px 2px 0 rgba(0,0,0,0.3);
    --shadow:    0 1px 3px 0 rgba(0,0,0,0.4);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.4);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.5);

    --gradient-hero: linear-gradient(135deg, #1a0a12 0%, #1a0a1a 50%, #100a1a 100%);
}

/* ===== SVG SIZES (Tailwind-style utilities) ===== */
.w-3 { width: 12px !important; }
.h-3 { height: 12px !important; }
.w-4 { width: 16px !important; }
.h-4 { height: 16px !important; }
.w-5 { width: 20px !important; }
.h-5 { height: 20px !important; }
.w-6 { width: 22px !important; }
.h-6 { height: 22px !important; }
.w-7 { width: 24px !important; }
.h-7 { height: 24px !important; }
.w-8 { width: 28px !important; }
.h-8 { height: 28px !important; }
.w-12 { width: 48px !important; }
.h-12 { height: 48px !important; }

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background var(--transition-slow), color var(--transition-slow);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--pink-400); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--pink-600); }

/* ===== SELECTION ===== */
::selection { background: var(--pink-200); color: var(--pink-800); }
.dark ::selection { background: var(--pink-800); color: var(--pink-100); }

/* ===================================================
   HEADER
   =================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-header);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition), border var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    gap: 16px;
}

@media (min-width: 768px)  { .header-inner { padding: 0 28px; } }
@media (min-width: 1280px) { .header-inner { padding: 0 40px; } }

/* Logo */
.site-logo { flex-shrink: 0; display: flex; align-items: center; }
.site-logo svg { height: 34px; width: auto; transition: opacity var(--transition); }
.site-logo:hover svg { opacity: 0.85; }

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

.header-search .search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.header-search .search-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    width: 18px;
    height: 18px;
    transition: color var(--transition);
}

.header-search input {
    width: 100%;
    padding: 9px 42px 9px 14px;
    border: 1.5px solid var(--border-input);
    border-radius: 10px;
    background: var(--bg-input);
    color: var(--text-primary);
    font-size: 0.875rem;
    font-family: inherit;
    transition: all var(--transition);
    outline: none;
}

.header-search input:focus {
    border-color: var(--pink-400);
    box-shadow: 0 0 0 3px rgba(244, 114, 182, 0.15);
    background: var(--bg-card);
}

.header-search input::placeholder { color: var(--text-muted); }

/* Live Search Dropdown */
.search-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    overflow: hidden;
    z-index: 200;
    display: none;
    animation: dropDown 0.15s ease;
}

.search-dropdown.show { display: block; }

@keyframes dropDown {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    transition: background var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: var(--text-primary);
}

.search-result-item:hover { background: var(--bg-hover); }

.search-result-thumb {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--bg-hover);
}

.search-result-thumb.no-img {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.search-result-info { flex: 1; min-width: 0; }
.search-result-title {
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.search-result-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.search-loading, .search-no-results {
    text-align: center;
    padding: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.header-actions .desktop-items {
    display: none;
    align-items: center;
    gap: 8px;
}

@media (min-width: 1024px) {
    .header-actions .desktop-items { display: flex; }
    .mobile-menu-btn { display: none !important; }
}

.action-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 8px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--pink-600);
    white-space: nowrap;
    border-radius: 8px;
    transition: background var(--transition);
    gap: 2px;
}
.action-link:hover { background: var(--pink-50); }
.dark .action-link:hover { background: rgba(244,114,182,0.1); }
.action-link svg { width: 22px; height: 22px; }

.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 99px;
    background: var(--gradient-warm);
    color: #fff;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
    transition: all var(--transition);
    border: none;
}

.btn-premium:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.5);
    color: #fff;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    color: var(--text-muted);
    background: transparent;
    border: none;
    transition: all var(--transition);
    position: relative;
}

.btn-icon:hover {
    background: var(--bg-hover);
    color: var(--text-secondary);
    transform: translateY(-1px);
}

.btn-icon svg { width: 20px; height: 20px; }

/* Notification badge */
.notif-badge {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--pink-500);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-header);
}

.btn-upload {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 10px;
    background: var(--gradient-brand);
    color: #fff;
    white-space: nowrap;
    border: none;
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(219, 39, 119, 0.35);
}

.btn-upload:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(219, 39, 119, 0.45);
    color: #fff;
}

.btn-upload svg { width: 16px; height: 16px; }

/* User Dropdown */
.user-dropdown { position: relative; }

.dropdown-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    width: 200px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    padding: 6px;
    z-index: 200;
    display: none;
    animation: dropDown 0.15s ease;
}

.dropdown-menu.open { display: block; }

.dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: background var(--transition);
    border-radius: 8px;
    gap: 8px;
}

.dropdown-item:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.dropdown-item svg { width: 17px; height: 17px; flex-shrink: 0; }
.dropdown-divider { height: 1px; background: var(--border); margin: 4px 0; }

/* Mobile Menu Button */
.mobile-menu-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    background: var(--bg-card);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.mobile-menu-btn:hover { border-color: var(--pink-400); color: var(--pink-600); }

/* ===================================================
   CATEGORY NAV BAR
   =================================================== */
.catbar {
    background: var(--bg-catbar);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 60px;
    z-index: 90;
    transition: background var(--transition-slow);
}

.catbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    overflow-x: auto;
    gap: 2px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.catbar-inner::-webkit-scrollbar { display: none; }

@media (min-width: 768px)  { .catbar-inner { padding: 0 28px; } }
@media (min-width: 1280px) { .catbar-inner { padding: 0 40px; } }

.catbar-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 10px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
    position: relative;
    transition: color var(--transition);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    flex-shrink: 0;
    margin-bottom: -1px;
}

.catbar-item:hover { color: var(--pink-600); }

.catbar-item.active {
    color: var(--pink-600);
    border-bottom-color: var(--pink-600);
}

.catbar-emoji { display: inline-flex; align-items: center; }

/* ===================================================
   MOBILE NAVIGATION
   =================================================== */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 149;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.2s ease;
}
.mobile-overlay.open { display: block; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100dvh;
    background: var(--bg-card);
    z-index: 150;
    overflow-y: auto;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
}

.mobile-nav.open { right: 0; }

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}

.mobile-nav-close {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}
.mobile-nav-close:hover { background: var(--bg-hover); color: var(--text-primary); }

.mobile-nav-body { flex: 1; padding: 12px; }

.mobile-nav-section { margin-bottom: 8px; }
.mobile-nav-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 8px 8px 4px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition);
}
.mobile-nav-link:hover { background: var(--bg-hover); color: var(--text-primary); }
.mobile-nav-link.active { background: var(--pink-50); color: var(--pink-600); }
.dark .mobile-nav-link.active { background: rgba(244,114,182,0.1); }

.mobile-theme-row {
    display: flex;
    gap: 6px;
    padding: 8px;
}
.mobile-theme-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 6px;
    border-radius: 10px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-hover);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
}
.mobile-theme-btn:hover { border-color: var(--pink-300); color: var(--pink-600); }
.mobile-theme-btn.active { border-color: var(--pink-400); background: var(--pink-50); color: var(--pink-600); }
.dark .mobile-theme-btn.active { background: rgba(244,114,182,0.1); }
.mobile-theme-btn svg { width: 18px; height: 18px; }

.mobile-nav-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Bottom Bar (Mobile) */
.bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    z-index: 80;
    padding: 0 8px;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    backdrop-filter: blur(20px);
}

@media (min-width: 1024px) { .bottom-bar { display: none; } }

.bottom-bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 10px 4px;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
    border: none;
    background: none;
    cursor: pointer;
}

.bottom-bar-item.active { color: var(--pink-600); }
.bottom-bar-item:hover { color: var(--pink-500); }
.bottom-bar-item svg { width: 22px; height: 22px; }

/* Body padding for bottom bar on mobile */
@media (max-width: 1023px) {
    body { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)); }
}

/* ===================================================
   MAIN LAYOUT
   =================================================== */
.site-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
}

/* Mega Menu */
.mega-menu-wrap {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    z-index: 99;
    box-shadow: var(--shadow-lg);
}
.mega-menu-wrap.open { display: block; }
.mega-menu-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 8px;
}
.mega-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 10px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-secondary);
    transition: all 0.2s;
}
.mega-item:hover { background: var(--bg-hover); color: var(--pink-600); }
.mega-icon svg { width: 24px; height: 24px; }
.mega-name { font-size: 0.82rem; font-weight: 600; text-align: center; }
.mega-count {
    font-size: 0.7rem; padding: 1px 8px;
    border-radius: 99px; background: var(--bg-hover); color: var(--text-muted);
}

@media (min-width: 768px) { .site-content { padding: 24px 28px; } }

@media (min-width: 1024px) {
    .site-content {
        grid-template-columns: 1fr 300px;
        padding: 28px 40px;
    }
}

@media (min-width: 1280px) {
    .site-content { grid-template-columns: 1fr 320px; }
}

.content-main { min-width: 0; }

/* ===================================================
   SECTION TABS
   =================================================== */
.section-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
    scrollbar-width: none;
}
.section-tabs::-webkit-scrollbar { display: none; }

.section-tab {
    padding: 11px 20px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    white-space: nowrap;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.section-tab:hover { color: var(--text-primary); }

.section-tab.active {
    color: var(--pink-600);
    border-bottom-color: var(--pink-600);
}

/* ===================================================
   POST CARD
   =================================================== */
.fb-post {
    background: #fff;
    border-radius: 2px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    overflow: hidden;
}
.dark .fb-post { background: #1a1a1a; border-color: #333; }

.fb-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px 4px;
}
.fb-avatar-link {
    flex-shrink: 0; width: 40px; height: 40px;
    border-radius: 50%; overflow: hidden; display: block;
}
.fb-avatar { width: 40px; height: 40px; border-radius: 50%; display: block; }
.fb-author { flex: 1; min-width: 0; }
.fb-name {
    font-weight: 700; font-size: 0.9rem; color: #1a1a1a; display: block;
}
.dark .fb-name { color: #e5e5e5; }
.fb-time {
    font-size: 0.78rem; color: #888; margin-top: 1px;
}
.fb-time a { color: #385898; font-weight: 500; }
.fb-time a:hover { text-decoration: underline; }

.fb-content {
    padding: 8px 16px 10px;
    line-height: 1.6;
}
.fb-title {
    font-weight: 700; font-size: 0.95rem; color: #1a1a1a;
    display: inline;
}
.dark .fb-title { color: #e5e5e5; }
.fb-text {
    font-size: 0.9rem; color: #333; display: inline;
}
.dark .fb-text { color: #ccc; }
.fb-more {
    color: #385898; font-weight: 600; font-size: 0.85rem;
    display: inline; margin-right: 4px;
    cursor: pointer;
}
.fb-more:hover { text-decoration: underline; }

.fb-thumb-wrap {
    margin: 0 12px 8px;
    border-radius: 4px; overflow: hidden;
    background: #f0f2f5;
}
.dark .fb-thumb-wrap { background: #2a2a2a; }
.fb-thumb { width: 100%; display: block; max-height: 400px; margin: 0 auto; object-fit: contain; background: #f0f2f5; }
.dark .fb-thumb { background: #2a2a2a; }

.fb-stats {
    display: flex; gap: 20px;
    padding: 8px 16px 6px;
    font-size: 0.82rem; color: #888;
}
.fb-stats span, .fb-stats a {
    display: flex; align-items: center; gap: 4px;
    color: #888; text-decoration: none;
}
.fb-stats svg { width: 14px; height: 14px; }

.fb-actions {
    display: flex;
    border-top: 1px solid #e4e6eb;
    padding: 2px 0;
    margin: 0 12px;
}
.dark .fb-actions { border-color: #333; }
.fb-action {
    flex: 1;
    display: flex; align-items: center; justify-content: center;
    gap: 5px;
    padding: 8px 4px;
    font-size: 0.85rem; font-weight: 600;
    font-family: inherit; border: none;
    background: transparent; color: #65676b;
    cursor: pointer; text-decoration: none;
    border-radius: 4px;
    transition: background 0.15s;
}
.dark .fb-action { color: #999; }
.fb-action:hover { background: #f0f2f5; }
.dark .fb-action:hover { background: #2a2a2a; }
.fb-action.liked { color: #e41e3f; }
.fb-action svg { width: 18px; height: 18px; }
.fb-action .like-count { font-weight: 700; margin-left: 2px; }

.fb-post-single { margin-bottom: 16px; }
.fb-thumb-single { margin: 0; border-radius: 0; background: #f0f2f5; }
.dark .fb-thumb-single { background: #2a2a2a; }
.fb-thumb-single .fb-thumb { max-height: 500px; width: 100%; object-fit: contain; }
.fb-content-single { padding: 10px 16px 14px; }
.fb-text-full { font-size: 0.95rem; line-height: 1.7; color: #333; margin-top: 6px; }
.dark .fb-text-full { color: #ccc; }
.fb-text-full p { margin-bottom: 0.6em; }
.fb-text-full img, .fb-text-full figure img, .fb-text-full .wp-block-image img { max-width: 100%; height: auto; margin: 0.6em 0; display: block; border-radius: 4px; }
.fb-text-full .wp-block-image { margin: 0.6em 0; }
.fb-text-full a { color: #385898; text-decoration: underline; }

.fb-comments-section { border-top: 1px solid #e4e6eb; padding: 0; }
.dark .fb-comments-section { border-color: #333; }

/* ===== اختارت لك ===== */
.picked-section { margin-bottom: 20px; }
.picked-header { margin-bottom: 12px; }
.picked-title {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.9rem; font-weight: 700; color: var(--text-primary);
}
.picked-scroll {
    display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none;
    padding-bottom: 6px; -ms-overflow-style: none;
}
.picked-scroll::-webkit-scrollbar { display: none; }
.picked-card {
    flex: 0 0 180px; border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--border); background: var(--bg-card);
    text-decoration: none; transition: all 0.2s;
}
.picked-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--pink-200); }
.picked-thumb {
    width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block;
    background: var(--bg-hover);
}
.picked-thumb-placeholder {
    display: flex; align-items: center; justify-content: center; color: var(--text-muted);
}
.picked-card-body { padding: 10px 12px; }
.picked-card-title {
    font-size: 0.82rem; font-weight: 600; color: var(--text-primary);
    line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 4px;
}
.picked-card-meta { font-size: 0.72rem; color: var(--text-muted); display: flex; align-items: center; gap: 3px; }
.picked-card-meta svg { width: 12px; height: 12px; }

.post-card-body {
    padding: 0 20px 8px;
}

.post-card-text {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

.post-card-title-inline {
    font-weight: 700;
    color: var(--text-primary);
    display: inline;
}

.post-card-more {
    display: inline-block;
    color: var(--pink-600);
    font-weight: 600;
    font-size: 0.85rem;
    padding-top: 4px;
}
.post-card-more:hover { color: var(--pink-800); text-decoration: underline; }

.post-card-footer {
    display: flex;
    align-items: center;
    padding: 8px 20px 16px;
    gap: 12px;
    flex-wrap: wrap;
}

.post-card-stats {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.stat-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: default;
}
.stat-item svg { width: 15px; height: 15px; }

/* Like/Dislike */
.like-btn, .dislike-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-family: inherit;
    padding: 3px 8px;
    border-radius: 99px;
    transition: all 0.15s;
}

.like-btn:hover { color: var(--red-500); background: rgba(239,68,68,0.08); }
.like-btn.liked { color: var(--red-500); }
.like-btn.liked svg { fill: var(--red-500); }

.dislike-btn:hover { color: var(--amber-500); background: rgba(245,158,11,0.08); }

.like-btn svg, .dislike-btn svg { width: 15px; height: 15px; }

/* Category Badge */
.post-card-category {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.post-card-category a {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 99px;
    font-size: 0.72rem;
    font-weight: 700;
    background: var(--pink-50);
    color: var(--pink-600);
    border: 1px solid var(--pink-100);
    transition: all var(--transition);
}
.dark .post-card-category a { background: rgba(244,114,182,0.1); border-color: rgba(244,114,182,0.2); }
.post-card-category a:hover { background: var(--pink-100); }

/* ===================================================
   COMMENTS
   =================================================== */
.fb-cmts { padding: 8px 16px 16px; }
.fb-cmts-header {
    font-size: 0.9rem; color: #65676b; margin-bottom: 12px;
}
.dark .fb-cmts-header { color: #999; }

.fb-cmt { display: flex; gap: 8px; margin-bottom: 12px; }
.fb-cmt-avatar { flex-shrink: 0; }
.fb-cmt-avatar img { width: 32px; height: 32px; border-radius: 50%; display: block; }
.fb-cmt-body {
    flex: 1; background: #f0f2f5; border-radius: 18px;
    padding: 8px 12px; min-width: 0;
}
.dark .fb-cmt-body { background: #2a2a2a; }
.fb-cmt-author { font-weight: 700; font-size: 0.82rem; margin-bottom: 2px; }
.fb-cmt-author a { color: #1a1a1a; }
.dark .fb-cmt-author a { color: #e5e5e5; }
.fb-cmt-text { font-size: 0.85rem; color: #333; line-height: 1.5; }
.dark .fb-cmt-text { color: #ccc; }
.fb-cmt-actions {
    display: flex; gap: 12px; margin-top: 4px;
    font-size: 0.75rem; color: #888;
}
.fb-cmt-reply a { color: #888; font-weight: 600; }
.fb-cmt-reply a:hover { color: #385898; text-decoration: underline; }

.fb-cmt-form { margin-top: 12px; }
.fb-cmt-form-title { font-size: 0.9rem; color: #65676b; margin-bottom: 8px; }
.dark .fb-cmt-form-title { color: #999; }
.fb-cmt-textarea {
    width: 100%; padding: 10px 14px;
    border: 1px solid #ccd0d5; border-radius: 20px;
    background: #f0f2f5;
    color: #1a1a1a;
    font-size: 0.85rem; font-family: inherit;
    resize: none; min-height: 44px; outline: none;
    box-sizing: border-box;
}
.dark .fb-cmt-textarea { background: #2a2a2a; border-color: #444; color: #e5e5e5; }
.fb-cmt-textarea:focus { border-color: #385898; }
.fb-cmt-input {
    width: 100%; padding: 10px 14px; margin-bottom: 6px;
    border: 1px solid #ccd0d5; border-radius: 18px;
    background: #f0f2f5; color: #1a1a1a;
    font-size: 0.85rem; font-family: inherit; outline: none;
    box-sizing: border-box;
}
.dark .fb-cmt-input { background: #2a2a2a; border-color: #444; color: #e5e5e5; }
.fb-cmt-input:focus { border-color: #385898; }
.fb-cmt-submit {
    padding: 7px 16px; background: #385898; color: #fff;
    border: none; border-radius: 6px;
    font-size: 0.85rem; font-weight: 600; font-family: inherit; cursor: pointer;
}
.fb-cmt-submit:hover { background: #2d4373; }
.fb-cmt-closed { text-align: center; color: #888; padding: 16px 0; font-size: 0.85rem; }

/* ===================================================
   SIDEBAR
   =================================================== */
.sidebar {
    display: none;
}

@media (min-width: 1024px) {
    .sidebar {
        display: flex;
        flex-direction: column;
        gap: 16px;
        position: sticky;
        top: calc(60px + 44px + 16px);
        align-self: start;
        max-height: calc(100vh - 140px);
        overflow-y: auto;
        scrollbar-width: none;
        padding-right: 2px;
    }
    .sidebar::-webkit-scrollbar { display: none; }
}

.widget {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 18px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

.widget:hover { box-shadow: var(--shadow-md); }

.widget-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.widget-title span {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Online Users */
.online-users {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.online-user {
    position: relative;
    width: 38px;
    height: 38px;
    cursor: pointer;
    transition: transform var(--transition);
}
.online-user:hover { transform: scale(1.1); }

.online-user img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--bg-card);
}

.online-dot {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 11px;
    height: 11px;
    background: var(--green-500);
    border-radius: 50%;
    border: 2px solid var(--bg-card);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50%       { box-shadow: 0 0 0 4px rgba(34, 197, 94, 0); }
}

.online-count {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}
.online-dot-sm {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-500);
    display: inline-block;
    animation: pulse-green 2s infinite;
}

/* Stats */
.stats-list { display: flex; flex-direction: column; gap: 0; }

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border);
}
.stat-row:last-child { border-bottom: none; }
.stat-label { color: var(--text-secondary); display: flex; align-items: center; gap: 6px; }
.stat-label span { font-size: 1rem; }
.stat-number {
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Popular Posts */
.popular-posts { display: flex; flex-direction: column; gap: 0; }

.popular-post-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    transition: all var(--transition);
}
.popular-post-item:last-child { border-bottom: none; }
.popular-post-item:hover { padding-right: 6px; }

.popular-rank {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: var(--bg-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--text-muted);
    flex-shrink: 0;
}
.popular-post-item:nth-child(1) .popular-rank { background: var(--amber-400); color: #fff; }
.popular-post-item:nth-child(2) .popular-rank { background: var(--gray-400); color: #fff; }
.popular-post-item:nth-child(3) .popular-rank { background: #cd7f32; color: #fff; }

.popular-thumb {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--bg-hover);
}

.popular-post-info { flex: 1; min-width: 0; }

.popular-post-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--transition);
}
.popular-post-item:hover .popular-post-title { color: var(--pink-600); }

.popular-post-views {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 3px;
}
.popular-post-views svg { width: 12px; height: 12px; }

/* Category List in Sidebar */
.cat-list { display: flex; flex-direction: column; gap: 0; }
.cat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    transition: all var(--transition);
    gap: 8px;
}
.cat-item:last-child { border-bottom: none; }
.cat-item:hover { padding-right: 6px; }

.cat-item-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    flex: 1;
}
.cat-item-name .cat-emoji { font-size: 1rem; }
.cat-item:hover .cat-item-name { color: var(--pink-600); }

.cat-count {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 99px;
    background: var(--bg-hover);
    color: var(--text-muted);
}

/* ===================================================
   PAGINATION
   =================================================== */
.pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 28px;
    margin-bottom: 8px;
}

.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 10px;
    background: var(--bg-card);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.pagination a:hover {
    background: var(--pink-50);
    color: var(--pink-600);
    border-color: var(--pink-200);
    transform: translateY(-1px);
}
.dark .pagination a:hover { background: rgba(244,114,182,0.1); }

.pagination .current {
    background: var(--gradient-brand);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(219, 39, 119, 0.35);
}

/* Load More Button */
.load-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px;
    margin-top: 20px;
    border-radius: var(--radius-lg);
    border: 1.5px dashed var(--border);
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all var(--transition);
}

.load-more-btn:hover {
    border-color: var(--pink-300);
    color: var(--pink-600);
    background: var(--pink-50);
}
.dark .load-more-btn:hover { background: rgba(244,114,182,0.05); }

.load-more-btn .btn-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    display: none;
}
.load-more-btn.loading .btn-spinner { display: block; }
.load-more-btn.loading span { display: none; }

/* ===================================================
   SINGLE POST (Social Media Style)
   =================================================== */
.single-post-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: 16px;
}

.single-post-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px 0;
}

.single-post-author {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.single-post-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--pink-100);
}

.single-post-author strong {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.single-post-time {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.single-post-time a { color: var(--pink-600); }

.single-post-feat {
    margin: 14px 0 0;
    max-height: 500px;
    overflow: hidden;
    background: var(--bg-hover);
}
.single-post-feat img { width: 100%; object-fit: cover; }

.single-post-body {
    padding: 18px 20px 14px;
}

.single-post-title-inline {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
    margin-bottom: 8px;
    line-height: 1.5;
}

.single-post-text {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--text-secondary);
}
.single-post-text p { margin-bottom: 0.8em; }
.single-post-text img { border-radius: var(--radius-lg); max-width: 100%; margin: 0.8em 0; display: block; }
.single-post-text a { color: var(--pink-600); text-decoration: underline; }
.single-post-text blockquote {
    border-right: 3px solid var(--pink-400);
    padding: 10px 16px;
    margin: 0.8em 0;
    background: var(--pink-50);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--text-secondary);
    font-style: italic;
}

.single-post-stats {
    display: flex;
    gap: 18px;
    padding: 10px 20px 12px;
    font-size: 0.82rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}
.single-post-stats span { display: flex; align-items: center; gap: 4px; }
.single-post-stats svg { width: 15px; height: 15px; }

.single-post-actions-row {
    display: flex;
    gap: 4px;
    padding: 6px 20px 14px;
}

.action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: inherit;
    border: none;
    background: var(--bg-hover);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
}
.action-btn:hover { background: var(--pink-50); color: var(--pink-600); }
.action-btn.liked { color: var(--red-500); }
.action-btn svg { width: 18px; height: 18px; }

/* Comments */
.comments-area {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

@media (max-width: 640px) { .comments-area { padding: 16px; } }

.comments-area h2 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.comment { padding: 16px 0; border-bottom: 1px solid var(--border); }
.comment:last-child { border-bottom: none; }

.comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.comment-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.comment-author { font-weight: 700; font-size: 0.875rem; }
.comment-date { font-size: 0.75rem; color: var(--text-muted); }
.comment-body { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; }

.comment-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border-input);
    border-radius: var(--radius-lg);
    background: var(--bg-input);
    color: var(--text-primary);
    font-size: 0.875rem;
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
    transition: border-color var(--transition);
    outline: none;
}
.comment-form textarea:focus { border-color: var(--pink-400); box-shadow: 0 0 0 3px rgba(244,114,182,0.12); }

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border-input);
    border-radius: var(--radius);
    background: var(--bg-input);
    color: var(--text-primary);
    font-size: 0.875rem;
    font-family: inherit;
    outline: none;
    transition: border-color var(--transition);
}
.comment-form input:focus { border-color: var(--pink-400); }

.comment-form input[type="submit"] {
    padding: 10px 24px;
    background: var(--gradient-brand);
    color: #fff;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(219, 39, 119, 0.3);
}
.comment-form input[type="submit"]:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(219,39,119,0.4); }

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    margin-top: 40px;
}

.footer-top {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 640px)  { .footer-top { padding: 40px 28px 30px; } }
@media (min-width: 1024px) { .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1fr; padding: 40px 40px 30px; gap: 40px; } }

.footer-brand { }
.footer-logo { margin-bottom: 14px; }
.footer-logo svg { height: 28px; width: auto; }
.footer-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 18px; }

.footer-social {
    display: flex;
    gap: 8px;
}
.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--bg-hover);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    transition: all var(--transition);
    text-decoration: none;
}
.social-btn:hover { background: var(--pink-50); color: var(--pink-600); border-color: var(--pink-200); transform: translateY(-2px); }
.dark .social-btn:hover { background: rgba(244,114,182,0.1); }
.social-btn svg { width: 17px; height: 17px; }

.footer-col-title {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
}

.footer-links-list { display: flex; flex-direction: column; gap: 8px; }
.footer-links-list a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}
.footer-links-list a:hover { color: var(--pink-600); padding-right: 3px; }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 18px 20px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}
@media (min-width: 640px)  { .footer-bottom { padding: 18px 28px; } }
@media (min-width: 1280px) { .footer-bottom { padding: 18px 40px; } }

.footer-bottom strong { color: var(--pink-600); }

/* ===================================================
   TOAST NOTIFICATIONS
   =================================================== */
.toast-container {
    position: fixed;
    bottom: 80px;
    left: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column-reverse;
    gap: 8px;
    pointer-events: none;
}

@media (min-width: 1024px) {
    .toast-container { bottom: 24px; }
}

.toast {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    pointer-events: auto;
    min-width: 220px;
    max-width: 320px;
    animation: slideInToast 0.3s ease;
}

.toast.removing { animation: slideOutToast 0.3s ease forwards; }

@keyframes slideInToast  { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideOutToast { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(-20px); } }

.toast-icon { width: 20px; height: 20px; flex-shrink: 0; }
.toast.success .toast-icon { color: var(--green-500); }
.toast.error   .toast-icon { color: var(--red-500); }
.toast.info    .toast-icon { color: var(--pink-500); }
.toast.warning .toast-icon { color: var(--amber-500); }

/* ===================================================
   SKELETON LOADER
   =================================================== */
.skeleton {
    background: linear-gradient(90deg,
        var(--bg-hover) 25%,
        var(--border) 50%,
        var(--bg-hover) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
    border-radius: 6px;
}

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

.post-card-skeleton {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 20px;
    margin-bottom: 12px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sk-header { display: flex; align-items: center; gap: 10px; }
.sk-avatar  { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; }
.sk-meta    { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.sk-line    { height: 12px; border-radius: 6px; }
.sk-body    { display: flex; flex-direction: column; gap: 8px; }
.sk-title   { height: 18px; width: 75%; border-radius: 6px; }
.sk-text    { height: 12px; border-radius: 6px; }
.sk-footer  { display: flex; gap: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
.sk-stat    { height: 14px; width: 50px; border-radius: 6px; }

/* ===================================================
   MISC / UTILITIES
   =================================================== */
.no-posts {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}
.no-posts svg { width: 56px; height: 56px; margin: 0 auto 16px; opacity: 0.3; }
.no-posts h3 { font-size: 1.1rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 6px; }

/* 404 */
.error-404 { text-align: center; padding: 80px 20px; }
.error-404 .e404-code {
    font-size: 6rem;
    font-weight: 900;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}
.error-404 h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.error-404 p  { color: var(--text-secondary); margin-bottom: 28px; }
.btn-home {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 24px;
    background: var(--gradient-brand);
    color: #fff;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all var(--transition);
    box-shadow: 0 2px 10px rgba(219,39,119,0.3);
}
.btn-home:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(219,39,119,0.45); color: #fff; }

/* ===================================================
   RESPONSIVE TWEAKS
   =================================================== */
@media (max-width: 640px) {
    .post-card { padding: 14px; border-radius: var(--radius-lg); }
    .post-card-stats { gap: 8px; }
    .catbar-item { padding: 8px 12px; font-size: 0.78rem; }
    .single-post-header { padding: 18px; }
    .single-post-content { padding: 18px; }
    .related-posts-grid { grid-template-columns: repeat(2, 1fr); }
    .site-content { padding: 14px 12px; gap: 16px; }
    .footer-top { gap: 24px; }
}

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

@keyframes bounceIn {
    0%   { opacity: 0; transform: scale(0.85); }
    60%  { opacity: 1; transform: scale(1.04); }
    100% { transform: scale(1); }
}

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

/* ===================================================
   READING PROGRESS BAR
   =================================================== */
#reading-progress {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-brand);
    z-index: 999;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform 0.1s linear;
}

/* ===================================================
   BACK TO TOP BUTTON
   =================================================== */
#back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 79;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: #fff;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(219,39,119,0.4);
    transition: all 0.25s ease;
}

#back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(219,39,119,0.5);
}

#back-to-top svg { width: 20px; height: 20px; }

@media (min-width: 1024px) {
    #back-to-top { bottom: 24px; right: 24px; }
}

/* ===================================================
   AUTHOR BADGE (in post card)
   =================================================== */
.author-badge {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 1px 6px;
    background: var(--gradient-brand);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    border-radius: 99px;
    line-height: 1.4;
}

/* ===================================================
   PRINT STYLES
   =================================================== */
@media print {
    .site-header,
    .catbar,
    .sidebar,
    .bottom-bar,
    #back-to-top,
    .post-card-actions,
    .load-more-btn,
    .footer-social,
    .toast-container { display: none !important; }

    body { background: #fff; color: #000; }
    .site-content { grid-template-columns: 1fr; }
    .single-post-content { box-shadow: none; border: none; padding: 0; }
    a { color: #000; text-decoration: underline; }
}

/* ===================================================
   FOCUS VISIBLE (accessibility)
   =================================================== */
:focus-visible {
    outline: 2px solid var(--pink-400);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ===================================================
   TRANSITIONS (page fade-in)
   =================================================== */
.post-card {
    animation: fadeUp 0.3s ease both;
}

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

/* Stagger cards */
.fb-post:nth-child(1)  { animation-delay: 0.00s; }
.fb-post:nth-child(2)  { animation-delay: 0.04s; }
.fb-post:nth-child(3)  { animation-delay: 0.08s; }
.fb-post:nth-child(4)  { animation-delay: 0.12s; }
.fb-post:nth-child(5)  { animation-delay: 0.16s; }
.fb-post:nth-child(6)  { animation-delay: 0.20s; }
.fb-post:nth-child(n+7){ animation-delay: 0.24s; }

/* ===================================================
   WIDGET ANIMATIONS
   =================================================== */
.widget { animation: fadeUp 0.35s ease both; }
.widget:nth-child(1) { animation-delay: 0.1s; }
.widget:nth-child(2) { animation-delay: 0.15s; }
.widget:nth-child(3) { animation-delay: 0.2s; }
.widget:nth-child(4) { animation-delay: 0.25s; }
.widget:nth-child(5) { animation-delay: 0.3s; }

/* ===================================================
   HIGHLIGHT SEARCH TERMS
   =================================================== */
mark {
    background: var(--pink-100);
    color: var(--pink-700);
    border-radius: 3px;
    padding: 0 2px;
}
.dark mark { background: rgba(244,114,182,0.2); color: var(--pink-300); }

/* ===================================================
   WIDGET TITLE WITH SVG ICON
   =================================================== */
.widget-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.widget-title-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--gradient-brand);
    color: #fff;
    flex-shrink: 0;
}

.widget-title-icon svg { width: 16px; height: 16px; }

/* ===================================================
   ARCHIVE HERO
   =================================================== */
.archive-hero {
    background: var(--gradient-hero);
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.archive-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    pointer-events: none;
}

.archive-hero-blob-1 {
    top: -20px; left: -20px;
    width: 120px; height: 120px;
    background: var(--pink-200);
    opacity: 0.35;
}

.archive-hero-blob-2 {
    bottom: -30px; right: 40px;
    width: 80px; height: 80px;
    background: var(--purple-400, #a78bfa);
    opacity: 0.2;
}

.archive-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(219,39,119,0.12);
    color: var(--pink-600);
    margin-bottom: 12px;
}

.archive-icon-wrap svg { width: 28px; height: 28px; }

.archive-emoji {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 10px;
}

.archive-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.archive-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

.archive-author-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.archive-author-count {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.archive-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 12px;
    padding: 4px 12px;
    background: rgba(255,255,255,0.6);
    border-radius: 99px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--pink-600);
}

.dark .archive-count-badge { background: rgba(0,0,0,0.2); }

/* ===================================================
   NO-THUMBNAIL PLACEHOLDER (popular-thumb)
   =================================================== */
.popular-thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-hover);
    color: var(--text-muted);
}

/* ===================================================
   SEARCH HEADER BOX
   =================================================== */
.search-header-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 20px;
    margin-bottom: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.search-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--gradient-brand);
    color: #fff;
    flex-shrink: 0;
}

.search-header-icon svg { width: 22px; height: 22px; }

.search-form-bar {
    margin-bottom: 20px;
}

/* ===================================================
   ERROR 404 CATEGORY TAGS
   =================================================== */
.err-cat-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 99px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.err-cat-tag:hover {
    border-color: var(--pink-300);
    color: var(--pink-600);
    background: var(--pink-50);
    transform: translateY(-1px);
}

/* ===================================================
   AUTH PAGES (Login / Register)
   =================================================== */
.auth-wrap {
    max-width: 420px; margin: 40px auto; padding: 0 16px;
}
.auth-card {
    background: var(--bg-card); border-radius: 16px;
    border: 1px solid var(--border); padding: 32px 28px;
    box-shadow: var(--shadow);
}
.auth-header { text-align: center; margin-bottom: 24px; }
.auth-header svg { color: var(--pink-500); margin-bottom: 8px; }
.auth-header h1 { font-size: 1.3rem; font-weight: 800; margin-bottom: 4px; }
.auth-header p { font-size: 0.85rem; color: var(--text-muted); }
.auth-form { display: flex; flex-direction: column; gap: 14px; }
.auth-field {}
.auth-field label {
    display: block; font-size: 0.82rem; font-weight: 600;
    color: var(--text-secondary); margin-bottom: 5px;
}
.auth-field input, .auth-field select {
    width: 100%; padding: 12px 14px; box-sizing: border-box;
    border: 1.5px solid var(--border-input); border-radius: 10px;
    background: var(--bg-input); color: var(--text-primary);
    font-size: 0.9rem; font-family: inherit; outline: none;
    transition: border 0.2s;
}
.auth-field input:focus { border-color: var(--pink-400); box-shadow: 0 0 0 3px rgba(244,114,182,0.12); }
.auth-checkbox {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.85rem; color: var(--text-secondary); cursor: pointer;
}
.auth-submit {
    padding: 13px; background: var(--pink-500); color: #fff;
    border: none; border-radius: 10px; font-size: 1rem;
    font-weight: 700; font-family: inherit; cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.auth-submit:hover { background: var(--pink-600); transform: translateY(-1px); }
.auth-error {
    background: #fef2f2; color: #b91c1c; padding: 10px 14px;
    border-radius: 8px; font-size: 0.85rem; margin-bottom: 14px;
    border: 1px solid #fecaca;
}
.auth-success {
    background: #f0fdf4; color: #15803d; padding: 10px 14px;
    border-radius: 8px; font-size: 0.85rem; margin-bottom: 14px;
    border: 1px solid #bbf7d0;
}
.auth-footer {
    text-align: center; margin-top: 20px; font-size: 0.85rem;
    color: var(--text-muted);
}
.auth-footer a { color: var(--pink-600); font-weight: 600; }
.auth-footer a:hover { text-decoration: underline; }

/* ===================================================
   NEW POST PAGE
   =================================================== */
.newpost-wrap {
    max-width: 640px; margin: 30px auto; padding: 0 16px;
}
.newpost-card {
    background: var(--bg-card); border-radius: 16px;
    border: 1px solid var(--border); padding: 28px;
    box-shadow: var(--shadow);
}
.newpost-header {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 24px; padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.np-avatar {
    width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
    border: 2px solid var(--pink-200);
}
.newpost-header h1 { font-size: 1.15rem; font-weight: 800; margin-bottom: 2px; }
.newpost-header p { font-size: 0.82rem; color: var(--text-muted); }
.np-form { display: flex; flex-direction: column; gap: 16px; }
.np-field {}
.np-field label {
    display: block; font-size: 0.82rem; font-weight: 600;
    color: var(--text-secondary); margin-bottom: 5px;
}
.np-field label span { font-weight: 400; color: var(--text-muted); }
.np-field input, .np-field select {
    width: 100%; padding: 12px 14px; box-sizing: border-box;
    border: 1.5px solid var(--border-input); border-radius: 10px;
    background: var(--bg-input); color: var(--text-primary);
    font-size: 0.9rem; font-family: inherit; outline: none;
    transition: border 0.2s;
}
.np-field input:focus, .np-field select:focus { border-color: var(--pink-400); box-shadow: 0 0 0 3px rgba(244,114,182,0.12); }
.np-field textarea {
    width: 100%; padding: 12px 14px; box-sizing: border-box;
    border: 1.5px solid var(--border-input); border-radius: 10px;
    background: var(--bg-input); color: var(--text-primary);
    font-size: 0.9rem; font-family: inherit; outline: none;
    resize: vertical; min-height: 180px; line-height: 1.8;
    transition: border 0.2s;
}
.np-field textarea:focus { border-color: var(--pink-400); box-shadow: 0 0 0 3px rgba(244,114,182,0.12); }
.np-char-count {
    text-align: left; font-size: 0.75rem; color: var(--text-muted);
    margin-top: 4px;
}
.np-field-file {}
.np-file-zone {
    border: 2px dashed var(--border); border-radius: 12px;
    padding: 28px 20px; text-align: center; cursor: pointer;
    transition: all 0.2s; display: flex; flex-direction: column;
    align-items: center; gap: 6px; color: var(--text-muted);
}
.np-file-zone:hover { border-color: var(--pink-400); background: var(--pink-50); color: var(--pink-600); }
.np-file-zone input { display: none; }
.np-file-icon svg { width: 36px; height: 36px; }
.np-file-hint { font-size: 0.75rem; }
.np-file-preview {
    display: flex; align-items: center; gap: 12px;
    padding: 10px; border-radius: 10px;
    border: 1.5px solid var(--border); background: var(--bg-hover);
}
.np-file-preview img { width: 60px; height: 60px; object-fit: cover; border-radius: 6px; }
.np-file-remove {
    background: none; border: none; color: #ef4444;
    font-size: 0.82rem; font-weight: 600; cursor: pointer; font-family: inherit;
}
.np-submit {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px; background: var(--pink-500); color: #fff;
    border: none; border-radius: 10px; font-size: 1rem;
    font-weight: 700; font-family: inherit; cursor: pointer;
    transition: background 0.2s;
}
.np-submit:hover { background: var(--pink-600); }
.np-submit svg { width: 20px; height: 20px; }

/* ===================================================
   DASHBOARD
   =================================================== */
.dash-wrap {
    max-width: 720px; margin: 30px auto; padding: 0 16px;
    display: flex; flex-direction: column; gap: 20px;
}
.dash-hero {
    background: var(--bg-card); border-radius: 16px;
    border: 1px solid var(--border); overflow: hidden;
    box-shadow: var(--shadow);
}
.dash-hero-cover {
    height: 100px; background: linear-gradient(135deg, var(--pink-400), var(--purple-500));
}
.dash-hero-content {
    padding: 0 24px 20px; margin-top: -40px;
    display: flex; align-items: flex-end; gap: 16px;
}
.dash-avatar {
    width: 80px; height: 80px; border-radius: 50%; object-fit: cover;
    border: 4px solid var(--bg-card); box-shadow: var(--shadow);
}
.dash-user-info { flex: 1; min-width: 0; }
.dash-user-info h1 { font-size: 1.15rem; font-weight: 800; margin-bottom: 2px; }
.dash-username { font-size: 0.85rem; color: var(--text-muted); }
.dash-joined {
    font-size: 0.78rem; color: var(--text-muted); display: block; margin-top: 2px;
}
.dash-new-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 18px; background: var(--pink-500); color: #fff;
    border-radius: 10px; font-size: 0.85rem; font-weight: 700;
    white-space: nowrap; text-decoration: none; transition: background 0.2s;
}
.dash-new-btn:hover { background: var(--pink-600); color: #fff; }

.dash-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.dash-stat {
    background: var(--bg-card); border-radius: 12px;
    border: 1px solid var(--border); padding: 20px 16px;
    text-align: center; box-shadow: var(--shadow);
}
.dash-stat-icon { margin-bottom: 8px; }
.dash-stat-icon svg { width: 24px; height: 24px; }
.dash-stat-posts svg { color: var(--pink-500); }
.dash-stat-comments svg { color: var(--green-500); }
.dash-stat-views svg { color: var(--purple-500); }
.dash-stat-num { font-size: 1.5rem; font-weight: 800; }
.dash-stat-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

.dash-section {
    background: var(--bg-card); border-radius: 16px;
    border: 1px solid var(--border); padding: 20px;
    box-shadow: var(--shadow);
}
.dash-section-header { margin-bottom: 16px; }
.dash-section-header h2 {
    display: flex; align-items: center; gap: 6px;
    font-size: 1rem; font-weight: 700;
}
.dash-section-header h2 svg { width: 18px; height: 18px; color: var(--pink-500); }

.dash-post-row {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 0; border-bottom: 1px solid var(--border);
}
.dash-post-row:last-child { border-bottom: none; }
.dash-post-thumb {
    width: 50px; height: 50px; border-radius: 8px; object-fit: cover;
    flex-shrink: 0; background: var(--bg-hover);
}
.dash-post-noimg {
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
}
.dash-post-info { flex: 1; min-width: 0; }
.dash-post-title {
    font-weight: 600; font-size: 0.9rem; color: var(--text-primary);
    display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.dash-post-title:hover { color: var(--pink-600); }
.dash-post-meta {
    display: flex; gap: 12px; font-size: 0.75rem; color: var(--text-muted);
    margin-top: 4px; flex-wrap: wrap;
}
.dash-post-meta span { display: flex; align-items: center; gap: 3px; }
.dash-post-meta svg { width: 12px; height: 12px; }
.dash-post-status {
    padding: 1px 8px; border-radius: 99px; font-weight: 600;
    font-size: 0.7rem;
}
.dash-status-pub { background: #dcfce7; color: #15803d; }
.dash-status-draft { background: #fef3c7; color: #92400e; }

.dash-empty {
    text-align: center; padding: 40px 20px; color: var(--text-muted);
}
.dash-empty svg { width: 40px; height: 40px; margin-bottom: 10px; opacity: 0.4; }
.dash-empty h3 { font-size: 1rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 4px; }
.dash-empty p { font-size: 0.85rem; margin-bottom: 16px; }
.dash-empty-btn {
    display: inline-flex; padding: 10px 20px;
    background: var(--pink-500); color: #fff; border-radius: 8px;
    font-weight: 600; font-size: 0.85rem; text-decoration: none;
}
.dash-empty-btn:hover { background: var(--pink-600); color: #fff; }

.dash-quick {
    display: flex; justify-content: center; gap: 20px;
    padding: 8px 0; flex-wrap: wrap;
}
.dash-quick a {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.85rem; color: var(--text-secondary); text-decoration: none;
    padding: 8px 16px; border-radius: 8px; transition: all 0.2s;
}
.dash-quick a:hover { background: var(--bg-hover); color: var(--pink-600); }
.dash-quick svg { width: 16px; height: 16px; }

@media (max-width: 600px) {
    .dash-hero-content { flex-wrap: wrap; }
    .dash-stats { grid-template-columns: repeat(3, 1fr); gap: 6px; }
    .dash-stat { padding: 14px 8px; }
    .dash-stat-num { font-size: 1.2rem; }
    .dash-new-btn { width: 100%; justify-content: center; margin-top: 8px; }
    .auth-card { padding: 24px 18px; }
    .newpost-card { padding: 20px 16px; }
}

/* Social Share */
.social-share-bar { display:flex; align-items:center; gap:8px; padding:16px 0 4px; border-top:1px solid var(--border); margin-top:16px }
.social-share-label { font-size:0.82rem; color:var(--text-muted); font-weight:600; }
.social-share-bar a { width:36px; height:36px; display:flex; align-items:center; justify-content:center; border-radius:50%; color:#fff; transition:opacity 0.2s }
.social-share-bar a:hover { opacity:0.85 }
.social-btn-fb { background:#1877f2 }
.social-btn-tw { background:#000 }
.social-btn-wa { background:#25D366 }

