/* reference stylesheet 1 */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.cw32-page {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 22% 8%, rgba(246, 179, 42, .16), transparent 32%),
    linear-gradient(180deg, #041326 0%, #06182d 42%, #03101f 100%);
  color: #eef5ff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

.cw32-page a {
  color: inherit;
  text-decoration: none;
}

.cw32-page img {
  display: block;
  max-width: 100%;
}

.cw32-wrap {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.cw32-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(3, 14, 29, .94);
  border-bottom: 1px solid rgba(255, 201, 78, .2);
  backdrop-filter: blur(14px);
}

.cw32-nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cw32-logo {
  display: inline-flex;
  align-items: baseline;
  font-size: 32px;
  font-weight: 900;
  color: #f7fbff;
  line-height: 1;
}

.cw32-logo span {
  color: #ffbd2f;
}

.cw32-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #d7e4f6;
  font-size: 15px;
  font-weight: 700;
}

.cw32-menu a {
  position: relative;
  padding: 28px 0 24px;
}

.cw32-menu a::after {
  position: absolute;
  right: 0;
  bottom: 13px;
  left: 0;
  height: 3px;
  background: #ffbd2f;
  border-radius: 10px;
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
}

.cw32-menu a:hover::after,
.cw32-menu .is-active::after {
  transform: scaleX(1);
}

.cw32-auth {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.cw32-btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  padding: 0 20px;
  border: 1px solid rgba(255, 193, 56, .55);
  color: #fff7dc;
  font-size: 15px;
  font-weight: 800;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.cw32-btn:hover {
  transform: translateY(-1px);
  border-color: #ffd063;
}

.cw32-btn-main {
  background: linear-gradient(180deg, #ffd057 0%, #f3a71d 100%);
  color: #081322;
  box-shadow: 0 14px 32px rgba(244, 169, 31, .26);
}

.cw32-btn-line {
  background: rgba(7, 26, 48, .62);
}

.cw32-hero {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  display: flex;
  align-items: center;
  background: #041326 url('/assets/easybaji-refasset-001.jpg') center / cover no-repeat;
  border-bottom: 1px solid rgba(255, 196, 55, .18);
}

.cw32-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, #041326 82%);
  content: "";
}

.cw32-hero-copy {
  position: relative;
  z-index: 2;
  width: min(610px, 100%);
  padding: 74px 0 130px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .48);
}

.cw32-hero h1 {
  margin: 0 0 22px;
  font-size: 58px;
  line-height: 1.08;
  font-weight: 900;
  color: #fff;
}

.cw32-hero h1 span {
  color: #ffbd2f;
}

.cw32-hero p {
  width: min(520px, 100%);
  margin: 0 0 32px;
  color: #dce8f6;
  font-size: 18px;
}

.cw32-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cw32-quick {
  position: relative;
  z-index: 3;
  margin-top: -88px;
}

.cw32-intro {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 30px;
  align-items: stretch;
  padding: 30px;
  background: linear-gradient(135deg, rgba(6, 25, 47, .96), rgba(9, 38, 67, .88));
  border: 1px solid rgba(255, 194, 57, .48);
  border-radius: 18px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, .28);
}

.cw32-intro h2,
.cw32-section-title {
  margin: 0;
  color: #fff;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 900;
}

.cw32-intro h2 span,
.cw32-section-title span {
  color: #ffbd2f;
}

.cw32-intro p {
  margin: 16px 0 26px;
  color: #c9d8e9;
}

.cw32-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.cw32-proof-item {
  min-height: 116px;
  padding: 18px;
  border-left: 1px solid rgba(255, 196, 63, .35);
  background: rgba(255, 255, 255, .04);
  border-radius: 12px;
}

.cw32-proof-item strong {
  display: block;
  color: #ffbd2f;
  font-size: 15px;
}

.cw32-proof-item small {
  display: block;
  margin-top: 6px;
  color: #b8c8dc;
  font-size: 13px;
}

.cw32-intro-media {
  min-height: 330px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 210, 93, .3);
}

.cw32-intro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cw32-section {
  padding: 70px 0 0;
}

.cw32-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.cw32-title-row p {
  max-width: 520px;
  margin: 8px 0 0;
  color: #b9c9dc;
}

.cw32-category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.cw32-category {
  min-height: 190px;
  padding: 24px 18px;
  background:
    linear-gradient(180deg, rgba(8, 33, 59, .96), rgba(5, 20, 39, .96)),
    radial-gradient(circle at center, rgba(255, 189, 47, .16), transparent 60%);
  border: 1px solid rgba(255, 192, 55, .46);
  border-radius: 14px;
  text-align: center;
  box-shadow: inset 0 0 34px rgba(255, 186, 40, .04);
}

.cw32-category-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  place-items: center;
  border: 1px solid rgba(255, 198, 69, .5);
  border-radius: 50%;
  color: #ffbd2f;
  font-size: 26px;
  font-weight: 900;
}

.cw32-category h3,
.cw32-offer h3,
.cw32-article-card h3 {
  margin: 0;
  color: #fff;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 900;
}

.cw32-category p,
.cw32-offer p,
.cw32-article-card p {
  margin: 10px 0 0;
  color: #b8c8dc;
  font-size: 14px;
}

.cw32-offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.cw32-offer {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(8, 30, 55, .92), rgba(4, 17, 33, .98)),
    radial-gradient(circle at 75% 0%, rgba(255, 189, 47, .22), transparent 54%);
  border: 1px solid rgba(255, 188, 47, .58);
  border-radius: 14px;
}

.cw32-offer-mark {
  color: #ffbd2f;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}

.cw32-offer .cw32-btn {
  width: 100%;
  margin-top: 22px;
}

.cw32-article-grid,
.cw32-fallback-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cw32-fallback-list.is-hidden {
  display: none;
}

.cw32-article-card {
  overflow: hidden;
  min-height: 100%;
  background: rgba(5, 19, 36, .96);
  border: 1px solid rgba(255, 194, 57, .32);
  border-radius: 14px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, .22);
}

.cw32-article-card a {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.cw32-article-thumb {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a2848, #08182d);
}

.cw32-article-thumb img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.cw32-thumb-strip {
  background-image: url('/assets/easybaji-refasset-002.jpg');
  background-repeat: no-repeat;
  background-size: 300% 100%;
}

.cw32-thumb-one {
  background-position: left center;
}

.cw32-thumb-two {
  background-position: center center;
}

.cw32-thumb-three {
  background-position: right center;
}

.cw32-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border-radius: 7px;
  padding: 0 10px;
  background: #ffbd2f;
  color: #071426;
  font-size: 12px;
  font-weight: 900;
}

.cw32-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.cw32-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  color: #ffbd2f;
  font-size: 13px;
  font-weight: 800;
}

.cw32-faq {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 22px;
  padding: 26px;
  background: rgba(6, 25, 45, .78);
  border: 1px solid rgba(150, 183, 220, .18);
  border-radius: 16px;
}

.cw32-faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.cw32-faq-item {
  padding: 16px 18px;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  color: #dbe7f4;
  font-size: 14px;
}

.cw32-support {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  background: linear-gradient(135deg, rgba(255, 193, 56, .16), rgba(8, 39, 69, .92));
  border-radius: 14px;
}

.cw32-support strong {
  display: block;
  color: #fff;
  font-size: 20px;
}

.cw32-support p {
  margin: 8px 0 18px;
  color: #c5d5e7;
}

.cw32-footer {
  margin-top: 72px;
  padding: 42px 0 22px;
  background: #030a15;
  border-top: 1px solid rgba(255, 189, 47, .2);
}

.cw32-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .7fr .9fr .9fr;
  gap: 38px;
}

.cw32-footer p,
.cw32-footer li,
.cw32-footer small {
  color: #aebed0;
}

.cw32-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cw32-footer li + li {
  margin-top: 8px;
}

.cw32-footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 17px;
}

.cw32-payment {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cw32-payment span {
  display: inline-flex;
  min-width: 72px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: #f4f7fb;
  color: #13223a;
  font-size: 12px;
  font-weight: 900;
}

.cw32-copyline {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #7f91a7;
  font-size: 13px;
}

.cw32-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 30px auto 0;
  color: #aebed0;
  font-size: 14px;
}

.cw32-breadcrumb a {
  color: #ffbd2f;
}

.cw32-pagination {
  margin-top: 28px;
  color: #d6e4f4;
}

.cw32-pagination ul,
.cw32-pagination .pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cw32-pagination a,
.cw32-pagination span {
  display: inline-flex;
  min-height: 36px;
  min-width: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 194, 57, .34);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(255, 255, 255, .04);
}

.cw32-article-hero {
  position: relative;
  padding: 74px 0 54px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 13, 29, .96), rgba(4, 19, 38, .72)),
    url('/assets/easybaji-refasset-003.jpg') center / cover no-repeat;
  border-bottom: 1px solid rgba(255, 189, 47, .2);
}

.cw32-article-hero h1 {
  max-width: 850px;
  margin: 0;
  color: #fff;
  font-size: 44px;
  line-height: 1.18;
  font-weight: 900;
}

.cw32-article-hero p {
  max-width: 700px;
  margin: 16px 0 0;
  color: #c7d5e6;
  font-size: 17px;
}

.cw32-article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  margin-top: 34px;
}

.cw32-article-main,
.cw32-side-panel {
  background: rgba(5, 21, 39, .94);
  border: 1px solid rgba(255, 194, 57, .24);
  border-radius: 16px;
  box-shadow: 0 22px 52px rgba(0, 0, 0, .24);
}

.cw32-article-main {
  padding: 34px;
}

.cw32-article-title h1 {
  margin: 0;
  color: #fff;
  font-size: 34px;
  line-height: 1.25;
}

.cw32-article-info {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 18px 0 28px;
  color: #aebed0;
  font-size: 14px;
}

.cw32-article-body {
  color: #dce8f7;
  font-size: 17px;
}

.cw32-article-body h2,
.cw32-article-body h3 {
  color: #fff;
  line-height: 1.3;
}

.cw32-article-body h2 {
  margin-top: 34px;
  font-size: 28px;
}

.cw32-article-body h3 {
  margin-top: 26px;
  font-size: 22px;
}

.cw32-article-body p {
  margin: 0 0 16px;
}

.cw32-article-body img {
  height: auto;
  margin: 24px auto;
  border-radius: 14px;
}

.cw32-article-body a {
  color: #ffbd2f;
  font-weight: 800;
}

.cw32-article-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .09);
}

.cw32-side-panel {
  padding: 24px;
}

.cw32-side-panel h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 22px;
}

.cw32-side-list {
  display: grid;
  gap: 12px;
}

.cw32-side-list a {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: #cbd9e9;
  font-weight: 700;
}

@media (max-width: 1040px) {
  .cw32-menu {
    gap: 16px;
    font-size: 14px;
  }

  .cw32-hero h1 {
    font-size: 48px;
  }

  .cw32-proof,
  .cw32-offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cw32-category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cw32-article-shell,
  .cw32-faq,
  .cw32-intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .cw32-wrap {
    width: min(100% - 24px, 1200px);
  }

  .cw32-nav {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 0;
    gap: 14px;
  }

  .cw32-menu {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .cw32-menu a {
    padding: 0 0 8px;
  }

  .cw32-menu a::after {
    bottom: 0;
  }

  .cw32-auth {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cw32-hero {
    min-height: 620px;
    background-position: 58% center;
  }

  .cw32-hero-copy {
    padding: 52px 0 130px;
  }

  .cw32-hero h1,
  .cw32-article-hero h1 {
    font-size: 36px;
  }

  .cw32-hero p {
    font-size: 16px;
  }

  .cw32-quick {
    margin-top: -64px;
  }

  .cw32-intro,
  .cw32-article-main,
  .cw32-faq,
  .cw32-side-panel {
    padding: 20px;
  }

  .cw32-proof,
  .cw32-category-grid,
  .cw32-offer-grid,
  .cw32-article-grid,
  .cw32-fallback-list,
  .cw32-faq-list,
  .cw32-footer-grid {
    grid-template-columns: 1fr;
  }

  .cw32-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .cw32-section {
    padding-top: 52px;
  }

  .cw32-article-title h1 {
    font-size: 28px;
  }
}


/* 32WIN request: remove category letter icons */
.cw32-category-icon {
  display: none;
}

.cw32-category {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 28px;
  padding-bottom: 28px;
}


/* Target Bengali content and Dede integration */
:root{--clone-dark:#116600;--clone-bg2:#0f766e;--clone-accent:#ffbd2f;--clone-gold:#ffbd2f;--clone-blue:#aebed0;}
body.true-reference-clone{font-family:Arial,"Kohinoor Bangla","Noto Sans Bengali",sans-serif;letter-spacing:0;}
body.true-reference-clone img[src*="easybaji-logo"]{height:auto;object-fit:contain;}
body.true-reference-clone img[src*="easybaji-hero"]{height:auto;object-fit:contain;}
.dede-update-zone,.article-detail-zone{padding:34px 0;}
.clone-update-inner,.clone-article-inner{width:min(1180px,calc(100% - 32px));margin:0 auto;}
.clone-update-head{text-align:center;margin-bottom:20px;}
.clone-update-head h2{margin:0;font-size:clamp(26px,3vw,38px);font-weight:900;line-height:1.2;}
.clone-update-head p{max-width:760px;margin:10px auto 0;color:#667085;}
.clone-update-list{display:grid;gap:16px;}
.clone-update-card{display:grid;grid-template-columns:170px minmax(0,1fr);gap:18px;padding:16px;border:1px solid rgba(20,25,40,.12);border-radius:10px;background:#fff;box-shadow:0 14px 34px rgba(20,25,40,.08);}
.clone-update-thumb{min-height:120px;border-radius:8px;background:linear-gradient(135deg,var(--clone-dark),var(--clone-accent));color:#fff;display:flex;align-items:center;justify-content:center;font-size:22px;font-weight:900;text-decoration:none;}
.clone-update-tag{display:inline-flex;margin-bottom:6px;padding:4px 10px;border-radius:999px;background:rgba(0,0,0,.06);color:var(--clone-accent);font-weight:900;font-size:12px;}
.clone-update-body h3{margin:0;font-size:22px;line-height:1.32;}
.clone-update-body p{margin:8px 0;color:#5f6675;}
.clone-update-meta{display:flex;flex-wrap:wrap;gap:12px;color:#8a91a1;font-size:13px;}
.clone-readmore{display:inline-flex;margin-top:10px;color:var(--clone-accent);font-weight:900;text-decoration:none;}
.clone-pagination{display:flex;flex-wrap:wrap;gap:8px;list-style:none;padding:0;margin:22px 0 0;}
.clone-pagination li{list-style:none;}
.clone-pagination a,.clone-pagination span{display:inline-flex;min-width:38px;min-height:36px;align-items:center;justify-content:center;border:1px solid rgba(20,25,40,.14);border-radius:8px;padding:0 12px;background:#fff;color:#1c2433;text-decoration:none;font-weight:800;}
.clone-article-inner{display:grid;grid-template-columns:minmax(0,1fr) 300px;gap:22px;align-items:start;}
.clone-article,.clone-article-side{background:#fff;border:1px solid rgba(20,25,40,.12);border-radius:10px;box-shadow:0 14px 34px rgba(20,25,40,.08);padding:24px;}
.clone-crumb{color:#778094;font-size:14px;margin-bottom:12px;}
.clone-article h1{margin:0;font-size:clamp(30px,3vw,46px);line-height:1.2;}
.clone-article-meta{display:flex;gap:12px;flex-wrap:wrap;margin:12px 0 18px;color:#7d8494;font-size:14px;}
.clone-article-summary{padding:14px 16px;border-left:4px solid var(--clone-accent);background:rgba(0,0,0,.04);margin-bottom:20px;color:#505a6c;}
.clone-article-body{font-size:17px;line-height:1.9;color:#252b38;}
.clone-prenext{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:20px;}
.clone-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px;}
.clone-actions a,.clone-article-side a{display:inline-flex;margin:6px 6px 0 0;padding:9px 12px;border-radius:8px;background:var(--clone-accent);color:#fff;text-decoration:none;font-weight:800;}
@media(max-width:780px){.clone-update-card,.clone-article-inner,.clone-prenext{grid-template-columns:1fr;}}
