﻿html{scroll-behavior:smooth;}
  body{font-family:system-ui,-apple-system,"Segoe UI",sans-serif;background:var(--bg);color:var(--text);line-height:1.6;}
  a{text-decoration:none;color:inherit;}
  img{max-width:100%;display:block;border-radius:var(--radius);}

  /* ── NAV ── */
  nav{
    display:flex;align-items:center;justify-content:space-between;
    padding:.75rem 2rem;background:rgba(2,6,23,.96);
    border-bottom:1px solid var(--border);
    backdrop-filter:blur(14px);position:sticky;top:0;z-index:100;
  }
  .logo{display:flex;align-items:center;gap:.35rem;}
  .logo-entra{font-weight:800;font-size:1.25rem;color:#e2e8f0;}
  .logo-fx{font-weight:900;font-size:1.25rem;background:linear-gradient(135deg,#22c55e,#15803d);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;}
  .nav-links{position:absolute;left:50%;transform:translateX(-50%);display:flex;align-items:center;gap:1.5rem;font-size:.9rem;}
  .nav-links a{color:var(--muted);transition:color .15s;}
  .nav-links a:hover,.nav-links a.active{color:var(--accent);}
  .nav-dropdown{position:relative;}
  .nav-dropdown>a::after{content:' ▾';font-size:.7rem;opacity:.7;}
  .dropdown-menu{
    display:none;position:absolute;top:calc(100% + .6rem);left:50%;
    transform:translateX(-50%);background:#0f172a;border:1px solid #1e293b;
    border-radius:10px;padding:.4rem;min-width:190px;
    box-shadow:0 16px 40px rgba(0,0,0,.6);z-index:200;
  }
  .nav-dropdown:hover .dropdown-menu, .nav-dropdown.open .dropdown-menu{display:flex;flex-direction:column;gap:.1rem;}
  .dropdown-menu a{
    padding:.5rem .85rem;border-radius:6px;font-size:.85rem;
    color:#94a3b8;transition:all .15s;display:flex;align-items:center;gap:.5rem;
  }
  .dropdown-menu a:hover{background:rgba(34,197,94,.1);color:#22c55e;}
  .nav-cta{display:flex;gap:.6rem;align-items:center;}
  .btn{border-radius:999px;border:1px solid transparent;padding:.4rem 1.1rem;font-size:.88rem;cursor:pointer;transition:all .18s;font-weight:600;}
  .btn-outline{border-color:var(--border);color:var(--text);background:transparent;}
  .btn-outline:hover{border-color:var(--accent);background:var(--accentS);color:var(--accent);}
  .btn-primary{background:linear-gradient(135deg,#22c55e,#15803d);color:#fff;border-color:var(--accent);box-shadow:0 0 16px rgba(34,197,94,.2);}
  .btn-primary:hover{box-shadow:0 0 28px rgba(34,197,94,.35);transform:translateY(-1px);}

  /* ── HERO ── */
  .blog-hero{
    text-align:center;padding:5rem 2rem 3.5rem;
    background:linear-gradient(180deg,rgba(34,197,94,.05) 0%,transparent 100%);
    border-bottom:1px solid var(--border);
  }
  .blog-hero .badge{
    display:inline-flex;align-items:center;gap:.4rem;
    border:1px solid rgba(34,197,94,.3);background:rgba(34,197,94,.07);
    color:var(--accent);font-size:.78rem;font-weight:700;
    padding:.3rem 1rem;border-radius:999px;letter-spacing:.06em;text-transform:uppercase;
    margin-bottom:1.25rem;
  }
  .blog-hero h1{font-size:clamp(2rem,5vw,3.2rem);font-weight:900;letter-spacing:-.03em;margin-bottom:.75rem;}
  .blog-hero h1 .hl{background:linear-gradient(135deg,#22c55e,#86efac);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;}
  .blog-hero p{font-size:1.05rem;color:var(--muted);max-width:560px;margin:0 auto;}

  /* ── CATEGORY TABS ── */
  .cat-tabs{
    display:flex;gap:.5rem;flex-wrap:wrap;justify-content:center;
    padding:1.5rem 2rem;border-bottom:1px solid var(--border);
    position:sticky;top:62px;background:rgba(2,6,23,.96);
    backdrop-filter:blur(14px);z-index:50;
  }
  .cat-btn{
    padding:.38rem 1rem;border-radius:999px;font-size:.82rem;font-weight:600;
    border:1px solid var(--border);background:transparent;color:var(--muted);
    cursor:pointer;transition:all .15s;
  }
  .cat-btn:hover{border-color:rgba(255,255,255,.2);color:var(--text);}
  .cat-btn.active{background:var(--accentS);border-color:var(--accentB);color:var(--accent);}

  /* ── MAIN LAYOUT ── */
  .blog-main{max-width:1200px;margin:0 auto;padding:3rem 2rem;display:grid;grid-template-columns:1fr 320px;gap:2.5rem;}

  /* ── FEATURED ARTICLE ── */
  .featured-card{
    background:var(--bg2);border:1px solid var(--border);
    border-radius:var(--radius-lg);overflow:hidden;margin-bottom:2rem;
    transition:border-color .2s,box-shadow .2s;
  }
  .featured-card:hover{border-color:rgba(34,197,94,.35);box-shadow:var(--shadow);}
  .featured-img{
    width:100%;height:320px;object-fit:cover;border-radius:0;
    display:block;background:#0f172a;
  }
  .featured-body{padding:2rem;}
  .art-meta{display:flex;align-items:center;gap:.75rem;margin-bottom:.85rem;flex-wrap:wrap;}
  .cat-tag{
    font-size:.68rem;font-weight:800;text-transform:uppercase;letter-spacing:.08em;
    padding:.2rem .65rem;border-radius:999px;
  }
  .tag-education{background:rgba(59,130,246,.1);color:var(--blue);border:1px solid rgba(59,130,246,.2);}
  .tag-stocks{background:rgba(34,197,94,.1);color:var(--accent);border:1px solid rgba(34,197,94,.2);}
  .tag-currencies{background:rgba(168,85,247,.1);color:#c084fc;border:1px solid rgba(168,85,247,.2);}
  .tag-crypto{background:rgba(251,146,60,.1);color:#fb923c;border:1px solid rgba(251,146,60,.2);}
  .tag-indices{background:rgba(14,165,233,.1);color:#38bdf8;border:1px solid rgba(14,165,233,.2);}
  .tag-mindset{background:rgba(236,72,153,.1);color:#f472b6;border:1px solid rgba(236,72,153,.2);}
  .tag-risk{background:rgba(239,68,68,.1);color:#f87171;border:1px solid rgba(239,68,68,.2);}
  .tag-macro{background:rgba(132,204,22,.1);color:#a3e635;border:1px solid rgba(132,204,22,.2);}
  .tag-wealth{background:rgba(234,179,8,.1);color:#fbbf24;border:1px solid rgba(234,179,8,.2);}
  .tag-commodities{background:rgba(249,115,22,.1);color:#fb923c;border:1px solid rgba(249,115,22,.2);}
  .tag-fundamentals{background:rgba(20,184,166,.1);color:#2dd4bf;border:1px solid rgba(20,184,166,.2);}
  .featured-badge{
    display:inline-flex;align-items:center;gap:.35rem;
    background:rgba(34,197,94,.1);border:1px solid rgba(34,197,94,.2);
    color:var(--accent);font-size:.68rem;font-weight:800;text-transform:uppercase;
    letter-spacing:.06em;padding:.2rem .7rem;border-radius:999px;
  }
  .art-date{font-size:.8rem;color:var(--muted);}
  .art-read{font-size:.8rem;color:var(--muted);}
  .featured-body h2{font-size:clamp(1.4rem,3vw,2rem);font-weight:900;letter-spacing:-.025em;margin-bottom:.85rem;line-height:1.2;}
  .featured-body h2 a:hover{color:var(--accent);}
  .featured-body .excerpt{font-size:.95rem;color:var(--muted);line-height:1.7;margin-bottom:1.5rem;}
  .featured-source{font-size:.78rem;color:var(--muted);display:flex;align-items:center;gap:.35rem;}
  .featured-source a{color:var(--accent);}
  .read-btn{
    display:inline-flex;align-items:center;gap:.4rem;
    padding:.55rem 1.3rem;border-radius:999px;
    background:linear-gradient(135deg,#22c55e,#15803d);
    color:#fff;font-size:.88rem;font-weight:700;
    transition:box-shadow .15s,transform .1s;
    box-shadow:0 0 20px rgba(34,197,94,.2);
  }
  .read-btn:hover{box-shadow:0 0 32px rgba(34,197,94,.35);transform:translateY(-1px);}

  /* ── ARTICLE GRID ── */
  .articles-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.25rem;}
  .art-card{
    background:var(--bg2);border:1px solid var(--border);
    border-radius:var(--radius-lg);overflow:hidden;
    transition:border-color .2s,transform .2s,box-shadow .2s;
    display:flex;flex-direction:column;
  }
  .art-card:hover{border-color:rgba(34,197,94,.3);transform:translateY(-3px);box-shadow:0 12px 40px rgba(0,0,0,.4);}
  .art-thumb{
    height:160px;object-fit:cover;width:100%;border-radius:0;
    background:linear-gradient(135deg,#0a1020,#1a2436);
    display:block;
  }
  .art-body{padding:1.25rem;flex:1;display:flex;flex-direction:column;}
  .art-body .art-meta{margin-bottom:.6rem;}
  .art-body h3{font-size:.98rem;font-weight:800;margin-bottom:.5rem;line-height:1.35;letter-spacing:-.01em;}
  .art-body h3 a:hover{color:var(--accent);}
  .art-body p{font-size:.85rem;color:var(--muted);line-height:1.6;flex:1;margin-bottom:.9rem;}
  .art-footer{display:flex;align-items:center;justify-content:space-between;padding-top:.9rem;border-top:1px solid var(--border);}
  .art-footer .source{font-size:.73rem;color:var(--muted);}
  .art-footer .source a{color:var(--accent);}
  .art-link{font-size:.8rem;font-weight:700;color:var(--accent);display:flex;align-items:center;gap:.3rem;}
  .art-link:hover{text-decoration:underline;}

  /* ── SIDEBAR ── */
  .sidebar{}
  .sidebar-card{
    background:var(--bg2);border:1px solid var(--border);
    border-radius:var(--radius-lg);padding:1.5rem;margin-bottom:1.5rem;
  }
  html[data-theme="light"] .sidebar-card{background:#f8fafc;border-color:#dbe4ee;}
  html[data-theme="light"] #tv-news-widget{border-radius:10px;overflow:hidden;border:1px solid #dbe4ee;}
  .sidebar-card h3{font-size:.78rem;font-weight:800;text-transform:uppercase;letter-spacing:.08em;color:var(--muted);margin-bottom:1.1rem;}
  .news-tabs{display:flex;gap:.4rem;margin-bottom:1rem;flex-wrap:wrap;}
  .news-tab{font-size:.72rem;font-weight:700;padding:.22rem .65rem;border-radius:999px;border:1px solid var(--border);color:var(--muted);cursor:pointer;background:transparent;transition:all .15s;}
  .news-tab.active{background:var(--accentS);border-color:var(--accentB);color:var(--accent);}
  .news-item{
    padding:.75rem 0;border-bottom:1px solid rgba(30,41,59,.5);
    display:flex;flex-direction:column;gap:.2rem;
  }
  .news-item:last-child{border-bottom:none;padding-bottom:0;}
  .news-cat{font-size:.65rem;font-weight:800;text-transform:uppercase;letter-spacing:.07em;color:var(--accent);}
  .news-title{font-size:.85rem;font-weight:700;line-height:1.35;cursor:pointer;transition:color .15s;}
  .news-title:hover{color:var(--accent);}
  .news-meta{font-size:.72rem;color:var(--muted);}

  /* Newsletter */
  .newsletter-card{
    background:linear-gradient(135deg,rgba(34,197,94,.08),rgba(15,23,42,.9));
    border:1px solid rgba(34,197,94,.2);border-radius:var(--radius-lg);padding:1.5rem;
  }
  .newsletter-card h3{font-size:1.1rem;font-weight:800;margin-bottom:.4rem;}
  .newsletter-card p{font-size:.85rem;color:var(--muted);margin-bottom:1.1rem;line-height:1.5;}
  .nl-input{width:100%;padding:.65rem .9rem;border-radius:8px;border:1px solid var(--border);background:#080f1f;color:var(--text);font-size:.88rem;outline:none;margin-bottom:.6rem;transition:border-color .15s;}
  .nl-input:focus{border-color:rgba(34,197,94,.4);}
  .nl-input::placeholder{color:#475569;}
  .nl-btn{width:100%;padding:.65rem;border-radius:8px;border:none;background:linear-gradient(135deg,#22c55e,#15803d);color:#fff;font-size:.88rem;font-weight:700;cursor:pointer;transition:box-shadow .15s;}
  .nl-btn:hover{box-shadow:0 0 20px rgba(34,197,94,.3);}
  .nl-socials{display:flex;gap:.6rem;margin-top:1rem;justify-content:center;}
  .social{width:34px;height:34px;border-radius:50%;border:1px solid var(--border);display:flex;align-items:center;justify-content:center;font-size:.8rem;color:var(--muted);transition:all .15s;}
  .social:hover{border-color:var(--accent);color:var(--accent);background:var(--accentS);}

  /* ── PAGINATION ── */
  .pagination{display:flex;gap:.5rem;justify-content:center;margin-top:2.5rem;align-items:center;}
  .page-btn{width:36px;height:36px;border-radius:8px;border:1px solid var(--border);background:transparent;color:var(--muted);cursor:pointer;font-size:.85rem;font-weight:600;transition:all .15s;display:flex;align-items:center;justify-content:center;}
  .page-btn:hover{border-color:rgba(255,255,255,.2);color:var(--text);}
  .page-btn.active{background:var(--accentS);border-color:var(--accentB);color:var(--accent);}

  /* ── CTA STRIP ── */
  .cta-strip{
    max-width:1200px;margin:0 auto 4rem;padding:0 2rem;
  }
  .cta-inner{
    background:linear-gradient(135deg,rgba(34,197,94,.1),rgba(21,128,61,.05));
    border:1px solid rgba(34,197,94,.2);border-radius:var(--radius-lg);
    padding:3.5rem 2rem;text-align:center;
  }
  .cta-inner h2{font-size:clamp(1.6rem,3.5vw,2.4rem);font-weight:900;letter-spacing:-.025em;margin-bottom:.75rem;}
  .cta-inner p{color:var(--muted);margin-bottom:2rem;font-size:1rem;}
  .cta-actions{display:flex;gap:.75rem;justify-content:center;flex-wrap:wrap;}
  .btn-lg{padding:.65rem 1.75rem;font-size:1rem;}

  /* ── FOOTER ── */
  footer{border-top:1px solid var(--border);background:var(--bg2);}
  .footer-main{
    max-width:1200px;margin:0 auto;
    display:grid;grid-template-columns:2fr 1fr 1fr 1fr;
    gap:3rem;padding:4rem 2rem 3rem;
  }
  .footer-brand .logo{margin-bottom:1rem;}
  .footer-brand p{font-size:.88rem;color:var(--muted);max-width:280px;line-height:1.7;}
  .footer-col h4{font-size:.85rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;margin-bottom:1rem;color:var(--text);}
  .footer-col a{display:block;font-size:.88rem;color:var(--muted);margin-bottom:.5rem;transition:color .15s;}
  .footer-col a:hover{color:var(--accent);}
  .footer-bottom{border-top:1px solid var(--border);padding:1.5rem 2rem;max-width:1200px;margin:0 auto;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:.75rem;}
  .footer-bottom p{font-size:.82rem;color:var(--muted);}
  .footer-disclaimer{font-size:.78rem;color:var(--muted);opacity:.7;max-width:1200px;margin:0 auto;padding:.75rem 2rem 2rem;border-top:1px solid rgba(30,41,59,.4);}

  @media(max-width:1024px){.blog-main{grid-template-columns:1fr;}.sidebar{display:grid;grid-template-columns:1fr 1fr;gap:1.25rem;}}
  @media(max-width:768px){.articles-grid{grid-template-columns:1fr;}.blog-main{padding:2rem 1.25rem;}.footer-main{grid-template-columns:1fr 1fr;gap:2rem;}.cat-tabs{padding:1rem;}}
  @media(max-width:560px){.footer-main{grid-template-columns:1fr;}.sidebar{display:block;}.nav-links{display:none;}}