
      :root {
        --bg: #0d0b18;
        --card-bg: #151226;
        --header-bg: rgba(13, 11, 24, 0.85);
        --text: #f5f3ff;
        --text-muted: #c4b5fd;
        --border: #2e254f;
        --primary: #a855f7;
        --primary-glow: rgba(168, 85, 247, 0.22);
        --primary-text: #ffffff;
        --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        --font-heading: 'Outfit', 'Inter', -apple-system, sans-serif;
      }

      * { box-sizing: border-box; margin: 0; padding: 0; }
      html, body {
        max-width: 100%;
        overflow-x: hidden;
        position: relative;
      }
      body {
        background-color: var(--bg); color: var(--text);
        font-family: var(--font-sans); line-height: 1.6;
        -webkit-font-smoothing: antialiased;
      }
      img, picture, video, canvas, svg {
        display: block;
        max-width: 100%;
        height: auto;
      }
      p, h1, h2, h3, h4, h5, h6, li, blockquote, a, span {
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
      }
      table {
        width: 100%;
        display: block;
        overflow-x: auto;
      }
      pre, code {
        max-width: 100%;
        overflow-x: auto;
        white-space: pre-wrap;
        word-break: break-all;
      }
      a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
      a:hover { color: var(--primary); }
      .container { max-width: 1160px; width: 100%; margin: 0 auto; padding: 0 20px; box-sizing: border-box; }

      /* Header */
      header.site-header {
        position: sticky; top: 0; z-index: 100;
        background: var(--header-bg); backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border);
        width: 100%;
      }
      .nav-inner { 
        display: flex; justify-content: space-between; align-items: center; 
        min-height: 68px; gap: 20px; width: 100%;
      }
      .site-logo { 
        font-size: 1.25rem; font-weight: 800; font-family: var(--font-heading); 
        color: var(--text); letter-spacing: -0.02em; display: inline-flex; align-items: center; gap: 10px;
        white-space: nowrap; text-decoration: none; flex-shrink: 0;
      }
      .site-logo:hover { color: var(--primary); }
      .site-logo-icon {
        width: 34px; height: 34px; border-radius: 8px; background: var(--primary);
        color: #000; display: inline-flex; align-items: center; justify-content: center;
        font-size: 1.1rem; font-weight: 900; box-shadow: 0 0 12px var(--primary-glow); flex-shrink: 0;
      }
      .nav-links { 
        display: flex; gap: 8px; list-style: none; align-items: center; 
        margin: 0; padding: 0; flex-wrap: wrap; justify-content: flex-end;
      }
      .nav-links li { margin: 0; }
      .nav-links a { 
        color: var(--text-muted); font-weight: 600; font-size: 0.92rem; 
        padding: 8px 14px; border-radius: 8px; text-decoration: none;
        transition: all 0.2s ease; display: inline-block;
      }
      .nav-links a:hover { 
        color: var(--text); background: rgba(255, 255, 255, 0.06); 
      }
      .nav-links a.active { 
        color: var(--primary); background: var(--primary-glow); font-weight: 700;
      }

      /* Layout Grid */
      .main-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; padding: 40px 0; width: 100%; }

      /* Hero / Featured */
      .featured-card {
        background: var(--card-bg); border: 1px solid var(--border);
        border-radius: 12px; overflow: hidden; margin-bottom: 32px; width: 100%;
      }
      .featured-img-wrap { width: 100%; height: 320px; overflow: hidden; }
      .featured-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
      .featured-card:hover .featured-img-wrap img { transform: scale(1.03); }
      .featured-body { padding: 32px; }
      .featured-badge {
        display: inline-block; padding: 4px 10px; background: var(--primary-glow);
        color: var(--primary); font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
        letter-spacing: 0.05em; border-radius: 4px; margin-bottom: 14px;
      }
      .featured-body h1 { font-size: 1.95rem; font-family: var(--font-heading); line-height: 1.3; margin-bottom: 14px; font-weight: 800; }
      .featured-body p.lead { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 20px; }

      /* Post Card Listing */
      .post-card {
        background: var(--card-bg); border: 1px solid var(--border);
        border-radius: 10px; overflow: hidden; display: flex; width: 100%;
        margin-bottom: 20px; transition: transform 0.2s ease, border-color 0.2s ease;
      }
      .post-card:hover { transform: translateY(-2px); border-color: var(--primary); }
      .post-thumbnail { width: 220px; min-width: 220px; height: 160px; overflow: hidden; }
      .post-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
      .post-body { padding: 18px 24px; display: flex; flex-direction: column; justify-content: center; width: 100%; }
      .post-meta { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 8px; display: flex; gap: 12px; flex-wrap: wrap; }
      .post-body h2 { font-size: 1.22rem; font-family: var(--font-heading); margin-bottom: 8px; font-weight: 700; line-height: 1.35; }

      /* Author Profile Card */
      .author-profile-header {
        background: var(--card-bg); border: 1px solid var(--border);
        border-radius: 12px; padding: 32px; margin-bottom: 32px; display: flex; gap: 24px; align-items: center; width: 100%;
      }
      .author-profile-avatar {
        width: 80px; height: 80px; border-radius: 50%; background: var(--primary);
        display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 800; color: #000;
        flex-shrink: 0; box-shadow: 0 0 20px var(--primary-glow);
      }
      .author-verified-badge {
        display: inline-flex; align-items: center; gap: 4px; padding: 3px 8px;
        background: rgba(34, 197, 94, 0.15); color: #22c55e; border-radius: 4px; font-size: 0.75rem; font-weight: 600;
      }

      /* Article View */
      .article-view { background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; padding: 36px; width: 100%; }
      .breadcrumbs { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; }
      .article-header h1 { font-size: 2.3rem; font-family: var(--font-heading); font-weight: 800; line-height: 1.25; margin-bottom: 16px; }
      
      .author-box {
        display: flex; align-items: center; gap: 14px; padding: 16px 0;
        border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
        margin: 20px 0 28px; font-size: 0.9rem;
      }
      .author-avatar {
        width: 46px; height: 46px; border-radius: 50%; background: var(--primary);
        display: flex; align-items: center; justify-content: center; font-weight: 700; color: #000; flex-shrink: 0;
      }
      .article-body h2 { font-size: 1.45rem; margin: 32px 0 16px; font-family: var(--font-heading); }
      .article-body h3 { font-size: 1.2rem; margin: 24px 0 12px; font-family: var(--font-heading); }
      .article-body p { margin-bottom: 20px; font-size: 1.05rem; }
      .article-body a { color: var(--primary); text-decoration: underline; font-weight: 500; }
      .article-body blockquote {
        border-left: 4px solid var(--primary); padding: 16px 20px;
        background: rgba(255,255,255,0.02); margin: 24px 0; font-style: italic; border-radius: 0 8px 8px 0;
      }

      /* Sources E-E-A-T Box */
      .sources-box {
        margin: 36px 0; padding: 20px 24px; background: rgba(56, 189, 248, 0.05);
        border: 1px solid var(--border); border-radius: 8px; width: 100%;
      }
      .sources-box h4 { font-size: 1rem; margin-bottom: 12px; color: var(--primary); display: flex; align-items: center; gap: 8px; }
      .sources-box ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
      .sources-box li a { color: var(--primary); font-size: 0.9rem; text-decoration: underline; overflow-wrap: break-word; word-break: break-all; }

      /* Sidebar */
      .sidebar-widget {
        background: var(--card-bg); border: 1px solid var(--border);
        border-radius: 10px; padding: 24px; margin-bottom: 24px; width: 100%;
      }
      .sidebar-widget h3 {
        font-size: 1.1rem; font-family: var(--font-heading); margin-bottom: 14px;
        padding-bottom: 8px; border-bottom: 1px solid var(--border);
      }
      .tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
      .tag-badge {
        padding: 5px 12px; background: rgba(255,255,255,0.05); border: 1px solid var(--border);
        border-radius: 20px; font-size: 0.8rem; color: var(--text-muted); cursor: pointer;
        transition: all 0.2s ease;
      }
      .tag-badge:hover, .tag-badge.active {
        background: var(--primary); color: #000; border-color: var(--primary); font-weight: 600;
      }

      /* Active filter bar */
      .filter-bar {
        display: none; align-items: center; justify-content: space-between;
        padding: 12px 16px; background: var(--card-bg); border: 1px solid var(--primary);
        border-radius: 8px; margin-bottom: 20px; font-size: 0.9rem;
      }
      .filter-bar.visible { display: flex; }
      .filter-bar button {
        background: none; border: none; color: var(--primary); font-weight: 700; cursor: pointer;
      }

      /* Banners */
      .banner-slot {
        margin: 24px 0; border: 1px solid var(--border); border-radius: 8px;
        background: var(--card-bg); overflow: hidden; text-align: center; width: 100%;
      }
      .banner-label {
        display: block; font-size: 0.68rem; color: var(--text-muted);
        text-transform: uppercase; letter-spacing: 0.05em; padding: 4px 8px; background: rgba(0,0,0,0.3);
      }
      .banner-img { width: 100%; max-height: 160px; object-fit: cover; display: block; }
      .banner-text { padding: 12px 16px; font-weight: 600; font-size: 0.95rem; color: var(--primary); }
      .banner-header { margin: 16px auto; max-width: 1160px; }
      .banner-sidebar .banner-img { max-height: 250px; }
      .banner-in_article { margin: 32px 0; }

      /* Form Elements */
      input, textarea, select {
        width: 100%; padding: 12px 14px; background: rgba(0,0,0,0.2); border: 1px solid var(--border);
        border-radius: 6px; color: var(--text); font-family: inherit; font-size: 0.95rem; margin-bottom: 16px;
      }
      button.btn-action {
        background: var(--primary); color: #000; font-weight: 700; border: none;
        padding: 12px 24px; border-radius: 6px; cursor: pointer; display: inline-block;
      }
      button.btn-action:hover { opacity: 0.9; text-decoration: none; }

      /* Footer */
      footer.site-footer {
        background: var(--header-bg); border-top: 1px solid var(--border);
        padding: 48px 0 32px; margin-top: 60px; font-size: 0.9rem; color: var(--text-muted); width: 100%;
      }
      .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
      .footer-col h4 { color: var(--text); margin-bottom: 14px; font-size: 1rem; }
      .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
      .footer-bottom { text-align: center; border-top: 1px solid var(--border); padding-top: 24px; font-size: 0.85rem; }

      @media (max-width: 768px) {
        .container { padding: 0 16px; width: 100%; }
        header.site-header { width: 100%; }
        .nav-inner { flex-direction: column; height: auto; padding: 14px 0 10px; gap: 10px; align-items: center; text-align: center; }
        .site-logo { font-size: 1.15rem; justify-content: center; }
        nav { width: 100%; }
        .nav-links { justify-content: center; gap: 4px; flex-wrap: wrap; width: 100%; }
        .nav-links a { font-size: 0.82rem; padding: 6px 9px; }
        .main-layout { grid-template-columns: 100%; gap: 24px; padding: 20px 0; }
        .featured-card { margin-bottom: 20px; }
        .featured-img-wrap { height: 200px; }
        .featured-body { padding: 20px 16px; }
        .featured-body h1 { font-size: 1.45rem; line-height: 1.3; }
        .featured-body p.lead { font-size: 0.95rem; }
        .post-card { flex-direction: column; width: 100%; margin-bottom: 16px; }
        .post-thumbnail { width: 100%; min-width: 100%; max-width: 100%; height: 140px; }
        .post-body { padding: 16px; }
        .post-body h2 { font-size: 1.12rem; line-height: 1.35; }
        .article-view { padding: 20px 16px; border-radius: 8px; }
        .article-header h1 { font-size: 1.55rem; line-height: 1.3; }
        .author-box { flex-wrap: wrap; gap: 10px; padding: 12px 0; }
        .sources-box { padding: 16px; margin: 24px 0; }
        .sources-box li a { word-break: break-all; }
        .footer-grid { grid-template-columns: 100%; gap: 24px; text-align: center; }
        .author-profile-header { flex-direction: column; text-align: center; padding: 20px 16px; }
        #cookie-consent-banner { bottom: 10px !important; left: 10px !important; right: 10px !important; max-width: calc(100% - 20px) !important; width: auto !important; }
      }
    