/* reference stylesheet 1 */
:root {
  --bg: #160026;
  --bg-2: #24003d;
  --bg-3: #3a075c;
  --panel: rgba(31, 7, 55, .82);
  --panel-2: rgba(52, 12, 82, .78);
  --line: rgba(255, 213, 92, .22);
  --line-soft: rgba(255, 255, 255, .12);
  --gold: #ffd85b;
  --gold-2: #ffb21f;
  --violet: #bb58ff;
  --cyan: #5bd6ff;
  --text: #fff8df;
  --muted: #d9c6ed;
  --dark: #0b0016;
  --shadow: 0 26px 70px rgba(0, 0, 0, .42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(840px 440px at 82% 0%, rgba(162, 70, 255, .28), transparent 66%),
    radial-gradient(580px 360px at 10% 12%, rgba(255, 184, 45, .14), transparent 68%),
    linear-gradient(180deg, #10001f 0%, #23003e 42%, #400562 100%);
  font-family: "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(12, 0, 24, .9);
  border-bottom: 1px solid rgba(255, 216, 91, .2);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  color: #fff;
  font-size: 42px;
  line-height: .88;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand strong,
.brand span {
  display: inline-block;
  transform: skew(-8deg);
}

.brand strong {
  color: var(--gold);
  text-shadow: 0 0 22px rgba(255, 216, 91, .38);
}

.brand span {
  color: #ffffff;
}

.brand em {
  margin-left: 4px;
  color: var(--violet);
  font-size: 16px;
  font-style: normal;
  font-weight: 950;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.nav a {
  min-height: 74px;
  display: inline-flex;
  align-items: center;
  color: #eadcff;
  font-size: 14px;
  font-weight: 850;
  border-bottom: 3px solid transparent;
}

.nav a:hover,
.nav a.active {
  color: var(--gold);
  border-color: var(--gold);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pill,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 19px;
  border: 1px solid rgba(255, 216, 91, .32);
  border-radius: 10px;
  color: #fff7de;
  background: rgba(255, 255, 255, .06);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
}

.pill.hot,
.btn.hot {
  color: #220014;
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 18px 34px rgba(255, 178, 31, .28);
}

.hero {
  position: relative;
  padding: 28px 0 48px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 82%;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 216, 91, .08), transparent 48%),
    radial-gradient(600px 300px at 50% 100%, rgba(187, 88, 255, .14), transparent 72%);
}

.hero-board {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: grid;
  align-items: center;
  border: 1px solid rgba(255, 216, 91, .26);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(13, 0, 25, .98) 0%, rgba(18, 0, 31, .92) 38%, rgba(18, 0, 31, .46) 61%, rgba(18, 0, 31, .08) 100%),
    url('/assets/good111-refasset-001.png') center right / cover no-repeat;
  box-shadow: var(--shadow), inset 0 0 80px rgba(187, 88, 255, .12);
}

.hero-board::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(180deg, transparent, rgba(20, 0, 36, .94));
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  padding: 66px 44px;
}

h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(42px, 5vw, 70px);
  line-height: .98;
  font-weight: 950;
}

h1 strong,
.section-title span {
  color: var(--gold);
}

.lead {
  max-width: 580px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  font-weight: 650;
}

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

.btn {
  min-height: 52px;
  min-width: 154px;
  border-radius: 12px;
}

.proof-strip {
  position: relative;
  z-index: 2;
  margin: -38px auto 0;
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(22, 0, 38, .88);
  border: 1px solid rgba(255, 216, 91, .28);
  border-radius: 18px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, .24);
  backdrop-filter: blur(14px);
}

.proof {
  min-height: 112px;
  padding: 16px 18px;
  display: grid;
  place-items: center;
  text-align: center;
  border-right: 1px solid rgba(255, 216, 91, .18);
}

.proof:last-child {
  border-right: 0;
}

.proof strong {
  display: block;
  color: var(--gold);
  font-size: 32px;
  line-height: 1;
}

.proof span {
  display: block;
  margin-top: 8px;
  color: #efe3ff;
  font-size: 14px;
  font-weight: 750;
}

.section {
  padding: 68px 0 0;
}

.section-title {
  position: relative;
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #ffffff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
  font-weight: 950;
  text-transform: uppercase;
}

.section-title::before,
.section-title::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(255, 216, 91, .62), transparent);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.category-card {
  min-height: 214px;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(255, 216, 91, .2);
  border-radius: 14px;
  background:
    radial-gradient(120px 80px at 50% 18%, rgba(255, 216, 91, .18), transparent 72%),
    linear-gradient(180deg, rgba(61, 13, 94, .92), rgba(21, 0, 39, .88));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
}

.category-card b {
  width: 58px;
  height: 58px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  color: var(--dark);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-radius: 50%;
  font-size: 21px;
  box-shadow: 0 12px 28px rgba(255, 178, 31, .18);
}

.category-card h3 {
  margin: 20px 0 8px;
  color: var(--gold);
  font-size: 18px;
  line-height: 1.25;
  text-align: center;
}

.category-card p {
  margin: 0 0 14px;
  min-height: 54px;
  color: #dbcaf2;
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.category-card a,
.post-link {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border: 1px solid rgba(255, 216, 91, .42);
  border-radius: 9px;
  font-size: 13px;
  font-weight: 900;
}

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

.promo-card {
  min-height: 226px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 216, 91, .24);
  border-radius: 16px;
  background:
    radial-gradient(170px 110px at 50% 0%, rgba(255, 216, 91, .2), transparent 70%),
    linear-gradient(180deg, rgba(61, 13, 94, .82), rgba(18, 0, 34, .84));
  box-shadow: 0 18px 46px rgba(0, 0, 0, .18);
}

.promo-card strong {
  display: block;
  color: var(--gold);
  font-size: 46px;
  line-height: 1;
  font-weight: 950;
}

.promo-card h3 {
  margin: 16px 0 8px;
  color: #fff;
  font-size: 21px;
}

.promo-card p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.article-list {
  display: grid;
  gap: 14px;
}

.post-row {
  min-height: 142px;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 130px;
  align-items: center;
  gap: 22px;
  padding: 14px;
  border: 1px solid rgba(255, 216, 91, .2);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(42, 5, 70, .9), rgba(25, 0, 44, .86));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .035);
}

.thumb {
  position: relative;
  min-height: 112px;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  background-image: url('/assets/good111-refasset-002.png');
  background-size: 300% 100%;
  background-position: var(--pos) center;
}

.thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .18));
}

.post-tag {
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  align-items: center;
  padding: 0 9px;
  color: #2b023f;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
}

.post-row h3 {
  margin: 9px 0 8px;
  color: #fff;
  font-size: 21px;
  line-height: 1.32;
}

.post-row p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.post-date {
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  text-align: right;
}

.about-band {
  margin-top: 76px;
  padding: 58px 0;
  background:
    radial-gradient(340px 210px at 74% 48%, rgba(255, 216, 91, .18), transparent 72%),
    linear-gradient(180deg, rgba(75, 10, 112, .52), rgba(13, 0, 24, .72));
  border-top: 1px solid rgba(255, 216, 91, .18);
  border-bottom: 1px solid rgba(255, 216, 91, .18);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 44px;
  align-items: center;
}

.about-copy h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
}

.about-copy h2 span {
  color: var(--gold);
}

.about-copy p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.82;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.mini {
  min-height: 92px;
  padding: 14px 10px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff3c8;
  border: 1px solid rgba(255, 216, 91, .18);
  border-radius: 12px;
  background: rgba(255, 255, 255, .045);
  font-size: 13px;
  font-weight: 850;
}

.emblem {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 216, 91, .55), rgba(255, 178, 31, .08) 46%, transparent 72%),
    linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 216, 91, .28);
  box-shadow: inset 0 0 80px rgba(187, 88, 255, .14), 0 28px 70px rgba(0, 0, 0, .22);
}

.emblem span {
  width: 58%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: #28023c;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border: 8px solid rgba(255, 255, 255, .18);
  border-radius: 28%;
  font-size: clamp(54px, 9vw, 100px);
  font-weight: 950;
  transform: skew(-8deg);
}

.site-footer {
  padding: 46px 0 28px;
  background: #0b0016;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, .7fr));
  gap: 34px;
}

.footer-brand {
  margin-bottom: 18px;
  font-size: 44px;
}

.site-footer p,
.site-footer li {
  color: #cdb9e4;
  font-size: 14px;
  line-height: 1.72;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 16px;
  text-transform: uppercase;
}

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

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

.pay-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pay-row span {
  min-width: 62px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 216, 91, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .055);
  font-size: 12px;
  font-weight: 900;
}

.copyright {
  margin-top: 34px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #9b82bb;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 13px;
}

.article-hero {
  padding-bottom: 30px;
}

.article-hero .hero-board {
  min-height: 360px;
}

.article-hero .hero-copy {
  width: min(820px, 100%);
}

.article-hero h1 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.15;
}

.detail {
  padding: 42px 0 74px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
}

.detail-card,
.side-card {
  border: 1px solid rgba(255, 216, 91, .2);
  border-radius: 16px;
  background: rgba(24, 0, 43, .78);
  box-shadow: 0 22px 54px rgba(0, 0, 0, .22);
}

.detail-card {
  padding: 34px;
}

.detail-card h1 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.16;
}

.detail-card h2 {
  margin: 30px 0 12px;
  color: var(--gold);
  font-size: 24px;
  line-height: 1.35;
}

.detail-card p,
.article-body p,
.article-body li {
  color: #e5d5f4;
  font-size: 16px;
  line-height: 1.86;
}

.article-body ul,
.article-body ol {
  padding-left: 22px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
}

.detail-meta span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: #2b023f;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.article-body img {
  width: 100%;
  border-radius: 14px;
}

.page-nav,
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.page-nav > div,
.pagination li {
  padding: 10px 12px;
  border: 1px solid rgba(255, 216, 91, .25);
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-weight: 800;
}

.page-nav a,
.pagination a,
.pagination span,
.side-card a {
  color: var(--gold);
}

.side-card {
  padding: 24px;
  height: fit-content;
}

.side-card h3 {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 20px;
}

.side-card a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 216, 91, .15);
  color: #f8ebff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}

.side-card span {
  display: block;
  margin-top: 18px;
  color: #ac94cd;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .topbar {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 14px 20px;
  }

  .nav a {
    min-height: 34px;
  }

  .proof-strip,
  .category-grid,
  .promo-grid,
  .footer-grid,
  .about-grid,
  .detail-layout {
    grid-template-columns: 1fr 1fr;
  }

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

  .post-row {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .post-date {
    grid-column: 2;
    text-align: left;
  }
}

@media (max-width: 720px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }

  .brand {
    font-size: 36px;
  }

  .top-actions {
    width: 100%;
  }

  .pill {
    flex: 1;
  }

  .hero {
    padding-top: 16px;
  }

  .hero-board {
    min-height: 640px;
    align-items: start;
    background:
      linear-gradient(180deg, rgba(13, 0, 25, .98) 0%, rgba(18, 0, 31, .92) 48%, rgba(18, 0, 31, .28) 100%),
      url('/assets/good111-refasset-003.png') 64% bottom / auto 58% no-repeat;
  }

  .hero-copy {
    padding: 38px 22px 260px;
  }

  .lead {
    font-size: 16px;
  }

  .proof-strip,
  .category-grid,
  .promo-grid,
  .footer-grid,
  .about-grid,
  .detail-layout,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .proof {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 216, 91, .14);
  }

  .proof:last-child {
    border-bottom: 0;
  }

  .section {
    padding-top: 54px;
  }

  .section-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .section-title::before,
  .section-title::after {
    width: 120px;
    flex: none;
  }

  .post-row {
    grid-template-columns: 1fr;
  }

  .thumb {
    min-height: 178px;
  }

  .post-date {
    grid-column: auto;
    text-align: left;
  }

  .emblem {
    min-height: 300px;
  }

  .copyright {
    flex-direction: column;
  }

  .detail-card {
    padding: 24px;
  }
}


/* Target Bengali content and Dede integration */
:root{--clone-dark:#3a075c;--clone-bg2:#bb58ff;--clone-accent:#ffb21f;--clone-gold:#ffd85b;--clone-blue:#bb58ff;}
body.true-reference-clone{font-family:Arial,"Kohinoor Bangla","Noto Sans Bengali",sans-serif;letter-spacing:0;}
body.true-reference-clone img[src*="good111-logo"]{height:auto;object-fit:contain;}
body.true-reference-clone img[src*="good111-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;}}
