:root {
  --jp-bg: #090202;
  --jp-panel: #1b0b0a;
  --jp-card: #241211;
  --jp-ink: #ffffff;
  --jp-soft: #c8bab4;
  --jp-muted: #a5948e;
  --jp-red: #f22822;
  --jp-orange: #ff6c2c;
  --jp-gold: #ffd35b;
  --jp-line: rgba(255, 211, 91, .18);
  --jp-black: #050505;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--jp-bg);
  color: var(--jp-ink);
  font-family: "Noto Sans Bengali", "Hind Siliguri", system-ui, sans-serif;
  line-height: 1.62;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.jp-wrap { width: min(1220px, calc(100% - 42px)); margin: 0 auto; }
.jp-topbar {
  background: #060606;
  color: #ffe59a;
  font-size: 13px;
  font-weight: 900;
  border-bottom: 1px solid rgba(255,211,91,.12);
}
.jp-topbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.jp-top-points { display: flex; gap: 22px; flex-wrap: wrap; }
.jp-top-points span::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--jp-gold); }
.jp-header {
  background: rgba(16,3,3,.96);
  border-bottom: 1px solid rgba(255,211,91,.18);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
}
.jp-header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.jp-brand { display: flex; align-items: center; gap: 13px; min-width: 175px; }
.jp-mark {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffe77a, #ff7a2d 70%, #ff322f);
  color: #180800;
  font-weight: 1000;
  font-size: 13px;
  text-transform: lowercase;
}
.jp-brand strong {
  font-size: 36px;
  color: var(--jp-gold);
  font-weight: 1000;
  letter-spacing: 0;
}
.jp-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.jp-nav::-webkit-scrollbar { display: none; }
.jp-nav a {
  color: rgba(255,255,255,.9);
  white-space: nowrap;
  padding: 29px 12px 24px;
  font-weight: 1000;
  border-bottom: 4px solid transparent;
}
.jp-nav a.is-active, .jp-nav a:hover { color: var(--jp-gold); border-bottom-color: var(--jp-gold); }
.jp-actions { display: flex; gap: 12px; align-items: center; }
.jp-action, .jp-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 0 22px;
  font-weight: 1000;
  box-shadow: 0 18px 36px rgba(0,0,0,.28);
}
.jp-action.gold, .jp-button.gold { color: #2a1500; background: linear-gradient(180deg, #fff0a2, #ffb331 68%, #ff7a2b); }
.jp-action.red, .jp-button.red { color: #fff; background: linear-gradient(180deg, #ff4c48, #ee1717); }
.jp-hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  background: #080202;
}
.jp-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,2,2,.98) 0%, rgba(8,2,2,.9) 43%, rgba(8,2,2,.3) 75%, rgba(8,2,2,.84) 100%),
    radial-gradient(circle at 76% 28%, rgba(242,40,34,.25), transparent 36%),
    url("/assets/jjjpk-hero.png") right center / cover no-repeat;
}
.jp-hero-grid {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: center;
}
.jp-hero-copy { padding: 72px 0 66px; max-width: 640px; }
.jp-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,211,91,.35);
  background: rgba(0,0,0,.45);
  color: var(--jp-gold);
  font-weight: 1000;
  margin-bottom: 28px;
}
.jp-badge::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: #22d56b; margin-right: 10px; box-shadow: 0 0 15px #22d56b; }
.jp-hero h1, .jp-subhero h1, .jp-article-hero h1 {
  margin: 0;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 1000;
  text-shadow: 0 4px 0 rgba(168,0,0,.7);
}
.jp-hero p {
  margin: 28px 0 0;
  font-size: 19px;
  color: rgba(255,255,255,.86);
  font-weight: 800;
  max-width: 590px;
}
.jp-cta-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.jp-stats {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.jp-stats div {
  min-height: 96px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(28,12,10,.76);
  border: 1px solid rgba(255,211,91,.22);
}
.jp-stats b { display: block; color: var(--jp-gold); font-size: 28px; line-height: 1; }
.jp-stats span { display: block; margin-top: 10px; color: rgba(255,255,255,.78); font-weight: 800; }
.jp-status {
  padding: 26px;
  border-radius: 10px;
  background: rgba(12,4,4,.68);
  border: 1px solid rgba(255,211,91,.25);
  box-shadow: 0 28px 80px rgba(0,0,0,.45);
}
.jp-status h2 { margin: 0 0 18px; color: var(--jp-gold); font-size: 28px; letter-spacing: 0; }
.jp-status div {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 70px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  margin-top: 12px;
}
.jp-status b {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--jp-gold);
  color: #231100;
  font-weight: 1000;
}
.jp-status span { font-weight: 1000; }
.jp-status em { color: #26e873; font-style: normal; font-weight: 1000; font-size: 13px; }
.jp-strip {
  background: linear-gradient(90deg, #ec1818, #ff7a23);
  color: #170300;
}
.jp-strip-inner {
  min-height: 58px;
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}
.jp-strip-inner::-webkit-scrollbar { display: none; }
.jp-strip a { white-space: nowrap; font-weight: 1000; }
.jp-section { padding: 86px 0; border-bottom: 1px solid rgba(255,211,91,.12); }
.jp-section-head { max-width: 720px; margin-bottom: 34px; }
.jp-section-head span, .jp-subhero span, .jp-article-hero span {
  display: inline-block;
  color: var(--jp-gold);
  font-weight: 1000;
  font-size: 13px;
  margin-bottom: 10px;
}
.jp-section-head h2 {
  margin: 0;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.12;
  letter-spacing: 0;
}
.jp-section-head p {
  margin: 14px 0 0;
  color: var(--jp-soft);
  font-weight: 750;
}
.jp-category-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 60px;
  align-items: start;
}
.jp-category-intro > p { color: var(--jp-soft); font-weight: 850; margin-top: 24px; }
.jp-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.jp-category {
  min-height: 220px;
  padding: 26px;
  border-radius: 8px;
  border: 1px solid var(--jp-line);
  background: linear-gradient(180deg, #281413, #1a0b0a);
  box-shadow: 0 22px 60px rgba(0,0,0,.24);
}
.jp-category b {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #220f00;
  background: linear-gradient(135deg, #ffe375, #ff6b2e);
  margin-bottom: 22px;
}
.jp-category h3 { margin: 0 0 10px; font-size: 24px; letter-spacing: 0; }
.jp-category p { margin: 0; color: var(--jp-soft); font-weight: 700; }
.jp-dark-section { background: linear-gradient(180deg, #150606, #0b0202); }
.jp-news-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 34px; align-items: start; }
.jp-news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.jp-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 0;
  min-height: 172px;
  overflow: hidden;
  border: 1px solid var(--jp-line);
  border-radius: 8px;
  background: #1d0b0a;
}
.jp-card-img { display: block; min-height: 172px; background: #100; }
.jp-card-img img { width: 100%; height: 100%; object-fit: cover; }
.jp-card-body { padding: 20px; }
.jp-card-body span {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  padding: 0 10px;
  border-radius: 6px;
  color: #220f00;
  background: var(--jp-gold);
  font-weight: 1000;
  font-size: 12px;
}
.jp-card-body h3 { margin: 11px 0 8px; font-size: 22px; line-height: 1.22; letter-spacing: 0; }
.jp-card-body p { margin: 0 0 14px; color: var(--jp-soft); font-weight: 700; }
.jp-read { color: var(--jp-gold); font-weight: 1000; border-bottom: 2px solid var(--jp-red); }
.jp-side-list {
  border: 1px solid var(--jp-line);
  border-radius: 8px;
  padding: 24px;
  background: #170707;
  position: sticky;
  top: 104px;
}
.jp-side-list h2 { margin: 0 0 18px; color: var(--jp-gold); letter-spacing: 0; }
.jp-side-list a {
  display: flex;
  justify-content: space-between;
  min-height: 48px;
  align-items: center;
  padding: 0 15px;
  border-radius: 7px;
  background: rgba(255,255,255,.05);
  margin-top: 10px;
  color: #fff;
  font-weight: 900;
}
.jp-side-list b { color: #39e6ff; }
.jp-flow {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 38px;
  border-radius: 8px;
  border: 1px solid var(--jp-line);
  background: linear-gradient(120deg, #560d0d, #171111);
}
.jp-flow h2 { margin: 0; font-size: clamp(32px, 4vw, 50px); line-height: 1.08; letter-spacing: 0; }
.jp-flow p { color: var(--jp-soft); font-weight: 750; }
.jp-flow article {
  padding: 24px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
}
.jp-flow b {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--jp-gold);
  color: #2b1200;
  margin-bottom: 18px;
}
.jp-flow h3 { margin: 0 0 8px; letter-spacing: 0; }
.jp-faq-section { background: #0b0303; }
.jp-faq { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.jp-faq details {
  border-radius: 8px;
  border: 1px solid var(--jp-line);
  background: #1b0b0a;
  padding: 18px 20px;
}
.jp-faq summary { cursor: pointer; font-weight: 1000; }
.jp-faq p { margin: 12px 0 0; color: var(--jp-soft); }
.jp-subhero, .jp-article-hero {
  padding: 78px 0;
  background:
    linear-gradient(90deg, rgba(8,2,2,.98), rgba(80,8,8,.88)),
    url("/assets/jjjpk-hero.png") right center / cover no-repeat;
}
.jp-subhero-grid, .jp-article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 500px;
  gap: 56px;
  align-items: center;
}
.jp-subhero h1, .jp-article-hero h1 { font-size: clamp(38px, 5vw, 66px); text-shadow: none; }
.jp-subhero p, .jp-article-hero p { color: rgba(255,255,255,.84); font-size: 18px; font-weight: 800; }
.jp-subhero img, .jp-article-hero img {
  border-radius: 8px;
  border: 1px solid rgba(255,211,91,.3);
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
}
.jp-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.jp-step-grid article, .jp-list-item, .jp-article-side, .jp-article {
  border: 1px solid var(--jp-line);
  border-radius: 8px;
  background: #1b0b0a;
  box-shadow: 0 22px 60px rgba(0,0,0,.22);
}
.jp-step-grid article { padding: 28px; }
.jp-step-grid b {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffe375, #ff6b2e);
  color: #1d0b00;
  margin-bottom: 18px;
  font-weight: 1000;
}
.jp-step-grid h2 { margin: 0 0 8px; letter-spacing: 0; }
.jp-step-grid p { margin: 0; color: var(--jp-soft); font-weight: 700; }
.jp-list-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.jp-list-item { padding: 24px; }
.jp-list-item h2 { margin: 0 0 10px; font-size: 23px; line-height: 1.25; letter-spacing: 0; }
.jp-list-item p { color: var(--jp-soft); font-weight: 700; }
.jp-pages { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 28px 0 0; list-style: none; }
.jp-pages li, .jp-pages a, .jp-pages span { display: inline-flex; min-height: 38px; align-items: center; padding: 0 12px; border: 1px solid var(--jp-line); border-radius: 6px; }
.jp-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 30px;
  align-items: start;
}
.jp-article { padding: clamp(28px, 4vw, 54px); }
.jp-article p { color: #eadbd5; font-size: 18px; font-weight: 700; }
.jp-article h2 { font-size: 30px; margin: 34px 0 10px; letter-spacing: 0; }
.jp-crumb, .jp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--jp-gold);
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 18px;
}
.jp-summary {
  padding: 18px 20px;
  border-left: 4px solid var(--jp-gold);
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  margin-bottom: 22px;
  color: #fff;
  font-weight: 850;
}
.jp-next, .jp-actions-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.jp-actions-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.jp-next div, .jp-actions-row a {
  padding: 14px;
  border: 1px solid var(--jp-line);
  border-radius: 8px;
  font-weight: 900;
}
.jp-article-side {
  padding: 24px;
  position: sticky;
  top: 104px;
}
.jp-article-side h2 { margin: 0 0 15px; color: var(--jp-gold); letter-spacing: 0; }
.jp-article-side ul { padding: 0; margin: 0 0 24px; list-style: none; display: grid; gap: 12px; }
.jp-article-side li { border-bottom: 1px solid var(--jp-line); padding-bottom: 12px; font-weight: 850; }
.jp-footer {
  padding: 58px 0 0;
  background: #070101;
  border-top: 1px solid var(--jp-line);
}
.jp-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .8fr .8fr .8fr;
  gap: 46px;
}
.jp-footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.jp-footer-logo span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: linear-gradient(135deg, #ffe77a, #ff7a2d 70%, #ff322f);
  color: #190800;
  font-weight: 1000;
  font-size: 13px;
}
.jp-footer-logo strong { color: var(--jp-gold); font-size: 32px; }
.jp-footer p, .jp-footer a { color: var(--jp-soft); font-weight: 700; }
.jp-footer h2 { margin: 0 0 12px; color: var(--jp-gold); font-size: 18px; letter-spacing: 0; }
.jp-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.jp-footline { margin-top: 48px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.08); color: var(--jp-muted); font-weight: 800; }
@media (max-width: 1060px) {
  .jp-header-inner { flex-wrap: wrap; padding: 14px 0; }
  .jp-nav { order: 3; flex-basis: 100%; justify-content: flex-start; }
  .jp-nav a { padding-top: 12px; padding-bottom: 10px; }
  .jp-actions { margin-left: auto; }
  .jp-hero-grid, .jp-category-intro, .jp-news-layout, .jp-flow, .jp-subhero-grid, .jp-article-hero-grid, .jp-article-layout { grid-template-columns: 1fr; }
  .jp-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .jp-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .jp-side-list, .jp-article-side { position: static; }
}
@media (max-width: 680px) {
  .jp-wrap { width: min(100% - 28px, 1220px); }
  .jp-topbar-inner { flex-direction: column; align-items: flex-start; padding: 8px 0; gap: 5px; }
  .jp-top-points { gap: 12px; }
  .jp-brand strong { font-size: 28px; }
  .jp-mark { width: 44px; height: 44px; }
  .jp-actions { width: 100%; display: grid; grid-template-columns: 1fr 1fr; }
  .jp-action { min-height: 42px; padding: 0 12px; }
  .jp-hero, .jp-hero-grid { min-height: 760px; }
  .jp-hero-media {
    background:
      linear-gradient(180deg, rgba(8,2,2,.98), rgba(8,2,2,.82) 52%, rgba(8,2,2,.98)),
      url("/assets/jjjpk-hero.png") center bottom / cover no-repeat;
  }
  .jp-hero h1 { font-size: 44px; }
  .jp-stats, .jp-news-grid, .jp-category-grid, .jp-step-grid, .jp-faq, .jp-list-grid, .jp-footer-grid { grid-template-columns: 1fr; }
  .jp-status div { grid-template-columns: 48px 1fr; }
  .jp-status em { grid-column: 2; }
  .jp-section { padding: 56px 0; }
  .jp-card { grid-template-columns: 1fr; }
  .jp-card-img { aspect-ratio: 4 / 3; }
  .jp-flow { padding: 24px; }
  .jp-subhero h1, .jp-article-hero h1 { font-size: 36px; }
  .jp-next, .jp-actions-row { grid-template-columns: 1fr; }
}
