:root{
      --theme:#0B3D91;
      --theme-dark:#06265e;
      --theme-soft:#eaf2ff;
      --ink:#10213d;
      --muted:#62708a;
      --line:#dce4f0;
      --surface:#ffffff;
      --page:#f4f7fb;
      --success:#0b8f73;
      --shadow:0 18px 50px rgba(10,38,84,.12);
      --radius:18px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--ink);
      background:var(--page);
      font-family:"Noto Sans Devanagari","Nirmala UI",Arial,sans-serif;
      line-height:1.65;
    }
    body.drawer-locked{overflow:hidden}
    img{display:block;max-width:100%}
    a{color:inherit;text-decoration:none}
    button,input{font:inherit}
    button{color:inherit}
    .container{width:min(1180px,calc(100% - 32px));margin-inline:auto}
    .topbar{
      color:#d9e8ff;
      background:#06152d;
      border-bottom:1px solid rgba(255,255,255,.08);
      font-size:13px;
    }
    .topbar-inner{
      min-height:38px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
    }
    .topbar-welcome strong{color:#fff}
    .topbar-contact{display:flex;align-items:center;gap:18px}
    .topbar-contact a:hover{color:#fff}
    .header{
      position:relative;
      z-index:40;
      background:rgba(255,255,255,.98);
      border-bottom:1px solid var(--line);
      box-shadow:0 5px 20px rgba(17,38,75,.04);
    }
    .header-inner{
      min-height:76px;
      display:flex;
      align-items:center;
      gap:24px;
    }
    .logo{
      min-width:0;
      display:inline-flex;
      align-items:center;
      gap:10px;
      font-weight:900;
      color:var(--theme-dark);
    }
    .logo img{
      width:42px;
      height:42px;
      object-fit:contain;
      border-radius:10px;
    }
    .logo span{
      max-width:190px;
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
    }
    .main-nav{margin-left:auto;align-self:stretch}
    .nav-list{
      height:100%;
      margin:0;
      padding:0;
      display:flex;
      align-items:stretch;
      list-style:none;
    }
    .nav-item{
      position:relative;
      display:flex;
      align-items:center;
    }
    .nav-link{
      height:100%;
      padding:0 12px;
      display:flex;
      align-items:center;
      font-size:14px;
      font-weight:750;
      white-space:nowrap;
    }
    .nav-link:hover,
    .nav-item:focus-within>.nav-link{
      color:var(--theme);
      background:var(--theme-soft);
    }
    .has-panel>.nav-link::after{
      content:"";
      width:6px;
      height:6px;
      margin-left:7px;
      border-right:1.5px solid currentColor;
      border-bottom:1.5px solid currentColor;
      transform:rotate(45deg) translateY(-2px);
    }
    .dropdown-panel,
    .mega-menu{
      position:absolute;
      top:100%;
      padding:20px;
      opacity:0;
      visibility:hidden;
      pointer-events:none;
      transform:translateY(8px);
      background:#fff;
      border:1px solid var(--line);
      border-radius:0 0 18px 18px;
      box-shadow:var(--shadow);
      transition:.2s ease;
    }
    .dropdown-panel::before,
    .mega-menu::before{
      content:"";
      position:absolute;
      left:0;
      right:0;
      top:-10px;
      height:10px;
    }
    .dropdown-panel{
      left:0;
      width:370px;
    }
    .mega-menu{
      left:50%;
      width:min(880px,calc(100vw - 40px));
      transform:translate(-50%,8px);
    }
    .nav-item:hover>.dropdown-panel,
    .nav-item:focus-within>.dropdown-panel,
    .nav-item:hover>.mega-menu,
    .nav-item:focus-within>.mega-menu{
      opacity:1;
      visibility:visible;
      pointer-events:auto;
    }
    .nav-item:hover>.dropdown-panel,
    .nav-item:focus-within>.dropdown-panel{transform:translateY(0)}
    .nav-item:hover>.mega-menu,
    .nav-item:focus-within>.mega-menu{transform:translate(-50%,0)}
    .nav-item:nth-last-child(-n+3) .mega-menu{
      left:auto;
      right:0;
      transform:translateY(8px);
    }
    .nav-item:nth-last-child(-n+3):hover>.mega-menu,
    .nav-item:nth-last-child(-n+3):focus-within>.mega-menu{
      transform:translateY(0);
    }
    .panel-head,
    .mega-head{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:16px;
      margin-bottom:14px;
    }
    .panel-head strong,
    .mega-head strong{font-size:16px}
    .panel-head a,
    .mega-head a{color:var(--theme);font-size:13px;font-weight:800}
    .dropdown-articles{display:grid;gap:8px}
    .dropdown-article{
      padding:11px 12px;
      background:#f7f9fc;
      border-radius:10px;
      font-size:14px;
    }
    .dropdown-article:hover{color:var(--theme);background:var(--theme-soft)}
    .mega-categories{
      margin-bottom:15px;
      padding:10px;
      display:flex;
      gap:8px;
      overflow-x:auto;
      background:#f6f8fc;
      border-radius:12px;
    }
    .mega-categories a{
      padding:6px 11px;
      white-space:nowrap;
      background:#fff;
      border:1px solid var(--line);
      border-radius:999px;
      font-size:12px;
      font-weight:750;
    }
    .mega-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:11px}
    .mega-card{
      min-width:0;
      padding:11px;
      display:flex;
      align-items:flex-start;
      gap:10px;
      border:1px solid var(--line);
      border-radius:12px;
      background:#fff;
    }
    .mega-card:hover{border-color:#91b5ef;box-shadow:0 9px 24px rgba(11,61,145,.1)}
    .mega-card>img{
      width:52px;
      height:52px;
      flex:0 0 52px;
      object-fit:cover;
      border-radius:9px;
      background:#eef3fa;
    }
    .mega-card>span{min-width:0}
    .mega-card strong{
      display:block;
      overflow:hidden;
      color:#14294b;
      font-size:13px;
      line-height:1.4;
      text-overflow:ellipsis;
      white-space:nowrap;
    }
    .mega-card p{
      margin:4px 0 0;
      display:-webkit-box;
      overflow:hidden;
      color:var(--muted);
      font-size:11px;
      line-height:1.45;
      -webkit-box-orient:vertical;
      -webkit-line-clamp:2;
    }
    .mini-meta{
      margin-top:5px;
      display:flex;
      flex-wrap:wrap;
      gap:4px 8px;
      color:var(--muted);
      font-size:10px;
    }
    .mini-meta b{color:var(--success)}
    .header-btns{
      display:flex;
      align-items:center;
      gap:9px;
      white-space:nowrap;
    }
    .header-btns>a{
      padding:9px 13px;
      color:#fff;
      background:var(--theme);
      border-radius:10px;
      font-size:13px;
      font-weight:800;
    }
    .hamburger{
      width:42px;
      height:42px;
      padding:10px;
      display:none;
      flex-direction:column;
      justify-content:center;
      gap:5px;
      border:1px solid var(--line);
      border-radius:10px;
      background:#fff;
      cursor:pointer;
    }
    .hamburger span{
      width:100%;
      height:2px;
      background:var(--ink);
      border-radius:4px;
      transition:.2s;
    }
    .hamburger.active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
    .hamburger.active span:nth-child(2){opacity:0}
    .hamburger.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
    .drawer-overlay{
      position:fixed;
      inset:0;
      z-index:80;
      opacity:0;
      visibility:hidden;
      background:rgba(3,14,34,.65);
      backdrop-filter:blur(3px);
      transition:.25s;
    }
    .drawer-overlay.open{opacity:1;visibility:visible}
    .mobile-drawer{
      position:fixed;
      top:0;
      right:0;
      bottom:0;
      z-index:90;
      width:min(390px,92vw);
      overflow-y:auto;
      background:#fff;
      box-shadow:-20px 0 60px rgba(0,0,0,.2);
      transform:translateX(105%);
      transition:transform .28s ease;
    }
    .mobile-drawer.open{transform:translateX(0)}
    .drawer-head{
      min-height:74px;
      padding:13px 16px;
      display:flex;
      align-items:center;
      gap:8px;
      color:#fff;
      background:linear-gradient(135deg,var(--theme-dark),var(--theme));
    }
    .drawer-head>a{
      padding:8px 10px;
      border:1px solid rgba(255,255,255,.35);
      border-radius:9px;
      font-size:13px;
    }
    .drawer-close{
      width:38px;
      height:38px;
      margin-left:auto;
      color:#fff;
      border:0;
      background:transparent;
      font-size:30px;
      cursor:pointer;
    }
    .drawer-menu{padding:14px}
    .drawer-link,
    .drawer-toggle{
      width:100%;
      padding:13px 12px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      border:0;
      border-bottom:1px solid var(--line);
      background:#fff;
      text-align:left;
      font-weight:800;
      cursor:pointer;
    }
    .drawer-toggle::after{
      content:"+";
      color:var(--theme);
      font-size:20px;
    }
    .drawer-toggle.active::after{content:"−"}
    .drawer-submenu{
      display:none;
      padding:7px 10px 10px 18px;
      background:#f6f8fc;
      border-radius:0 0 12px 12px;
    }
    .drawer-submenu.open{display:grid}
    .drawer-submenu a{
      padding:9px 7px;
      color:#475671;
      border-bottom:1px dashed #dce4ef;
      font-size:13px;
    }
    .tag-page{min-height:600px}
    .tag-page .tag-banner{
      position:relative;
      overflow:hidden;
      padding:72px 0 64px;
      color:#fff;
      background:
        radial-gradient(circle at 15% 20%,rgba(112,183,255,.3),transparent 28%),
        radial-gradient(circle at 85% 15%,rgba(156,92,255,.3),transparent 30%),
        linear-gradient(135deg,#06142d,#0B3D91 62%,#251154);
    }
    .tag-page .tag-banner::after{
      content:"";
      position:absolute;
      right:-80px;
      bottom:-150px;
      width:420px;
      height:420px;
      border:1px solid rgba(255,255,255,.15);
      border-radius:50%;
      box-shadow:0 0 0 55px rgba(255,255,255,.035),0 0 0 110px rgba(255,255,255,.025);
    }
    .tag-page .tag-banner-inner{position:relative;z-index:1}
    .tag-page .breadcrumbs{
      margin-bottom:20px;
      display:flex;
      align-items:center;
      flex-wrap:wrap;
      gap:8px;
      color:#cddfff;
      font-size:14px;
    }
    .tag-page .breadcrumbs a:hover{color:#fff}
    .tag-page .tag-label{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:6px 12px;
      color:#dcecff;
      background:rgba(255,255,255,.1);
      border:1px solid rgba(255,255,255,.2);
      border-radius:999px;
      font-size:13px;
      font-weight:800;
    }
    .tag-page .tag-label::before{content:"#";color:#8fd7ff;font-size:18px}
    .tag-page h1{
      max-width:820px;
      margin:14px 0 10px;
      font-size:clamp(34px,5vw,58px);
      line-height:1.15;
      letter-spacing:-1px;
    }
    .tag-page .tag-intro{
      max-width:760px;
      margin:0;
      color:#d8e6ff;
      font-size:17px;
    }
    .tag-page .tag-count{
      margin-top:22px;
      display:inline-flex;
      align-items:center;
      gap:9px;
      padding:9px 14px;
      color:#10213d;
      background:#fff;
      border-radius:11px;
      font-weight:850;
      box-shadow:0 10px 26px rgba(0,0,0,.14);
    }
    .tag-page .tag-count strong{color:var(--theme);font-size:20px}
    .tag-page .tag-content{padding:52px 0 74px}
    .tag-page .content-head{
      margin-bottom:24px;
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:20px;
    }
    .tag-page .content-head h2{margin:0;font-size:28px}
    .tag-page .content-head p{margin:4px 0 0;color:var(--muted)}
    .tag-page .topic-link{
      padding:9px 13px;
      color:var(--theme);
      background:var(--theme-soft);
      border:1px solid #bfd3f4;
      border-radius:10px;
      font-weight:800;
      white-space:nowrap;
    }
    .tag-page .tag-articles{display:grid;gap:20px}
    .tag-page .article-card{
      min-width:0;
      overflow:hidden;
      display:grid;
      grid-template-columns:280px minmax(0,1fr);
      background:#fff;
      border:1px solid var(--line);
      border-radius:var(--radius);
      box-shadow:0 8px 26px rgba(17,41,81,.06);
      transition:transform .2s,border-color .2s,box-shadow .2s;
    }
    .tag-page .article-card:hover{
      transform:translateY(-3px);
      border-color:#a9c4ed;
      box-shadow:0 16px 38px rgba(17,41,81,.11);
    }
    .tag-page .article-cover{
      min-height:230px;
      overflow:hidden;
      background:#dce7f6;
    }
    .tag-page .article-cover img{
      width:100%;
      height:100%;
      object-fit:cover;
      transition:transform .35s;
    }
    .tag-page .article-card:hover .article-cover img{transform:scale(1.035)}
    .tag-page .article-body{
      min-width:0;
      padding:24px 26px;
      display:flex;
      flex-direction:column;
    }
    .tag-page .article-kicker{
      align-self:flex-start;
      padding:4px 9px;
      color:var(--theme);
      background:var(--theme-soft);
      border-radius:999px;
      font-size:12px;
      font-weight:850;
    }
    .tag-page .article-title{
      margin:10px 0 7px;
      font-size:22px;
      line-height:1.35;
    }
    .tag-page .article-title a:hover{color:var(--theme)}
    .tag-page .article-summary{
      margin:0 0 14px;
      display:-webkit-box;
      overflow:hidden;
      color:var(--muted);
      line-height:1.75;
      -webkit-box-orient:vertical;
      -webkit-line-clamp:3;
    }
    .tag-page .article-meta{
      margin-top:auto;
      display:flex;
      flex-wrap:wrap;
      gap:7px 16px;
      color:#75819a;
      font-size:13px;
    }
    .tag-page .article-tags{
      margin-top:12px;
      padding-top:11px;
      color:#53647f;
      border-top:1px dashed var(--line);
      font-size:13px;
    }
    .tag-page .article-actions{
      margin-top:15px;
      display:flex;
      justify-content:flex-end;
    }
    .tag-page .read-more{
      padding:9px 15px;
      color:#fff;
      background:var(--theme);
      border-radius:10px;
      font-size:14px;
      font-weight:850;
    }
    .tag-page .read-more:hover{background:var(--theme-dark)}
    .tag-page .pagination{
      margin-top:34px;
      display:flex;
      justify-content:center;
      flex-wrap:wrap;
      gap:8px;
    }
    .tag-page .pagination a{
      min-width:42px;
      min-height:42px;
      padding:8px 12px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:#fff;
      border:1px solid var(--line);
      border-radius:10px;
      font-weight:800;
    }
    .tag-page .pagination a:hover,
    .tag-page .pagination a.active,
    .tag-page .pagination a.current{
      color:#fff;
      background:var(--theme);
      border-color:var(--theme);
    }
    .footer{color:#d8e3f5;background:#07162f}
    .footer-main{padding:56px 0 42px}
    .footer-grid{
      display:grid;
      grid-template-columns:1.35fr .85fr .85fr 1.1fr;
      gap:36px;
    }
    .footer .logo{color:#fff}
    .footer-brand p{max-width:360px;color:#9fb0ca}
    .footer-social{margin-top:16px}
    .footer h3{margin:6px 0 16px;color:#fff;font-size:16px}
    .footer-links,
    .footer-contact{display:grid;gap:9px}
    .footer-links a,
    .footer-contact a{color:#b6c5da}
    .footer-links a:hover,
    .footer-contact a:hover{color:#fff}
    .footer-contact span{margin-top:8px;color:#8fa1bd;font-size:13px}
    .footer-bottom{border-top:1px solid rgba(255,255,255,.09)}
    .footer-bottom-inner{
      min-height:68px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      color:#93a5c0;
      font-size:13px;
    }
    .footer-legal{display:flex;gap:18px}
    .footer-legal a:hover{color:#fff}
    @media (max-width:1080px){
      .main-nav{display:none}
      .hamburger{display:flex}
      .header-btns{margin-left:auto}
      .footer-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    }
    @media (max-width:760px){
      .container{width:min(100% - 22px,1180px)}
      .topbar-inner{padding:8px 0;align-items:flex-start;flex-direction:column;gap:3px}
      .topbar-contact{width:100%;justify-content:space-between;gap:8px;flex-wrap:wrap}
      .header-inner{min-height:66px;gap:10px}
      .header .logo span{max-width:125px}
      .header-btns>a{display:none}
      .tag-page .tag-banner{padding:50px 0 45px}
      .tag-page .tag-intro{font-size:15px}
      .tag-page .tag-content{padding:38px 0 56px}
      .tag-page .content-head{align-items:flex-start;flex-direction:column}
      .tag-page .article-card{grid-template-columns:1fr}
      .tag-page .article-cover{min-height:210px;aspect-ratio:16/9}
      .tag-page .article-body{padding:20px}
      .tag-page .article-title{font-size:20px}
      .footer-grid{grid-template-columns:1fr;gap:26px}
      .footer-bottom-inner{padding:18px 0;align-items:flex-start;flex-direction:column}
      .footer-legal{flex-wrap:wrap}
    }
    @media (max-width:430px){
      .topbar-contact{display:grid}
      .tag-page h1{font-size:34px}
      .tag-page .article-meta{display:grid}
    }