/* reference stylesheet 1 */
:root {
  --black: #070711;
  --navy: #080f2d;
  --surface: #11172f;
  --surface-2: #171c35;
  --magenta: #d700c9;
  --magenta-2: #ff34d8;
  --cyan: #12d7ff;
  --gold: #ffd45f;
  --gold-2: #f2a921;
  --red-brown: #6c1819;
  --text: #f8fbff;
  --muted: #bcc8df;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 22px 55px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(4, 4, 12, 0.88), rgba(32, 6, 28, 0.62), rgba(4, 4, 12, 0.88)),
    url('/assets/cd44-refasset-001.png') center top / 1800px auto fixed no-repeat,
    #130610;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

svg {
  display: block;
}

.page-shell {
  width: min(1360px, 100%);
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(8, 9, 26, 0.98), rgba(8, 10, 22, 0.99));
  box-shadow: 0 0 42px rgba(0, 0, 0, 0.55);
  overflow-x: hidden;
}

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

.topbar {
  background: rgba(5, 6, 16, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  min-width: 58px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #061128;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-radius: 8px;
  font-size: 14px;
  font-weight: 950;
  transform: skewX(-14deg);
  box-shadow: 0 0 26px rgba(18, 215, 255, 0.18), 0 12px 24px rgba(242, 169, 33, 0.22);
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: -28px;
  top: 8px;
  width: 46px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  transform: rotate(-12deg);
}

.brand-word {
  display: block;
  color: var(--cyan);
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(18, 215, 255, 0.2);
}

.brand-word span {
  color: var(--gold);
}

.top-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-gold {
  color: #09091a;
  background: linear-gradient(135deg, #ffe887, var(--gold-2));
  box-shadow: 0 14px 28px rgba(242, 169, 33, 0.24);
}

.btn-outline,
.btn-dark {
  color: #fff;
  border-color: rgba(255, 212, 95, 0.6);
  background: rgba(7, 7, 17, 0.56);
}

.btn-dark {
  border-color: rgba(18, 215, 255, 0.4);
}

.btn-large {
  min-height: 54px;
  padding: 0 26px;
}

.nav-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(90deg, #b900d6, #ec00c7 55%, #a100d9);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.28);
}

.nav-inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.nav-inner::-webkit-scrollbar {
  display: none;
}

.nav-inner a {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  color: #fff;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-inner a:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-inner a.active {
  color: var(--gold);
  box-shadow: inset 0 -4px 0 var(--gold);
}

.hero {
  min-height: 610px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5, 7, 20, 0.98) 0%, rgba(7, 11, 30, 0.92) 36%, rgba(7, 11, 30, 0.3) 68%, rgba(7, 11, 30, 0.08) 100%),
    url('/assets/cd44-refasset-002.png') center / cover no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: center;
  gap: 40px;
  padding: 82px 0;
}

.hero-copy h1 {
  max-width: 680px;
  margin: 0;
  color: #fff;
  font-size: 60px;
  line-height: 1.05;
  font-weight: 950;
  text-transform: uppercase;
  text-shadow: 0 6px 26px rgba(0, 0, 0, 0.52);
}

.hero-copy h1::first-line {
  color: var(--cyan);
}

.hero-copy p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  margin-top: 34px;
}

.promo-card {
  min-height: 240px;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(77, 9, 84, 0.82), rgba(9, 13, 35, 0.76)),
    radial-gradient(circle at 72% 8%, rgba(255, 212, 95, 0.36), transparent 36%);
  border: 1px solid rgba(255, 212, 95, 0.38);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.promo-card span {
  color: var(--gold);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.promo-card strong {
  color: #fff;
  font-size: 66px;
  line-height: 0.92;
  text-shadow: 0 0 28px rgba(255, 52, 216, 0.38);
}

.promo-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.65;
}

.access-strip,
.game-strip,
.intro-band,
.news-section {
  padding: 54px 0;
}

.access-strip {
  background: var(--black);
}

.access-inner {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px;
  background: linear-gradient(90deg, rgba(18, 215, 255, 0.14), rgba(255, 52, 216, 0.08));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.shield {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  background: rgba(18, 215, 255, 0.08);
  border: 1px solid rgba(18, 215, 255, 0.28);
  border-radius: 8px;
}

.shield svg {
  width: 54px;
  height: 54px;
  fill: rgba(18, 215, 255, 0.14);
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.access-inner h2,
.intro-grid h2,
.section-head h2 {
  margin: 0;
  color: #fff;
  font-size: 30px;
  line-height: 1.18;
  font-weight: 950;
  text-transform: uppercase;
}

.access-inner h2 {
  color: var(--cyan);
  font-size: 25px;
}

.access-inner p,
.intro-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.access-inner a,
.section-head a,
.news-body a {
  color: var(--gold);
}

.game-strip {
  background: linear-gradient(180deg, #090b1e, #0f1027);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.game-item {
  min-height: 210px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.035);
  border-right: 1px solid var(--line);
}

.game-item:last-child {
  border-right: 0;
}

.game-icon {
  width: 70px;
  height: 70px;
  position: relative;
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.85), transparent 18%), linear-gradient(135deg, var(--cyan), #204eff);
  box-shadow: 0 0 26px rgba(18, 215, 255, 0.28);
}

.roulette {
  background: radial-gradient(circle, transparent 28%, rgba(255,255,255,0.9) 29% 32%, transparent 33%), linear-gradient(135deg, #ef3dff, #6d29ff);
}

.sport {
  background: radial-gradient(circle at 32% 28%, #fff, transparent 19%), linear-gradient(135deg, #36c8ff, #0f4dff);
}

.slot {
  border-radius: 8px;
  background: linear-gradient(135deg, #ffe587, #f29e1a);
}

.slot::before,
.slot::after,
.cards::before,
.cards::after,
.fish::before {
  content: "";
  position: absolute;
}

.slot::before {
  inset: 18px 14px;
  border: 5px solid #07112b;
  border-radius: 6px;
}

.slot::after {
  left: 19px;
  top: 29px;
  width: 32px;
  height: 4px;
  background: #07112b;
  box-shadow: 0 10px 0 #07112b;
}

.fish {
  background: linear-gradient(135deg, #42f2ff, #1d63ff);
}

.fish::before {
  left: 16px;
  top: 22px;
  width: 36px;
  height: 22px;
  border: 4px solid #07112b;
  border-radius: 60% 45% 45% 60%;
}

.cards {
  border-radius: 8px;
  background: linear-gradient(135deg, #43ff9a, #0dbf68);
}

.cards::before,
.cards::after {
  width: 26px;
  height: 38px;
  top: 16px;
  background: #07112b;
  border-radius: 4px;
}

.cards::before {
  left: 15px;
  transform: rotate(-10deg);
}

.cards::after {
  right: 15px;
  transform: rotate(10deg);
}

.game-item strong {
  color: var(--cyan);
  font-size: 18px;
  font-weight: 950;
  text-transform: uppercase;
}

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

.intro-band {
  background: #0a0b1c;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 36px;
  align-items: center;
}

.intro-grid article {
  padding: 34px;
  background:
    linear-gradient(90deg, rgba(8, 10, 26, 0.94), rgba(8, 10, 26, 0.7)),
    url('/assets/cd44-refasset-003.png') 70% center / cover no-repeat;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.step-list a {
  min-height: 108px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 13px;
  align-items: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.step-list span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #0b0d1e;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-radius: 8px;
  font-weight: 950;
}

.step-list strong,
.step-list small {
  display: block;
}

.step-list strong {
  color: #fff;
  font-size: 18px;
}

.step-list small {
  grid-column: 2;
  margin-top: -14px;
  color: var(--muted);
  font-size: 13px;
}

.news-section {
  background: #080916;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head h2 {
  position: relative;
  padding: 0 0 14px;
  text-align: center;
  width: 100%;
}

.section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--magenta), var(--cyan), transparent);
}

.section-head a {
  flex: 0 0 auto;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.news-card {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.news-thumb {
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  padding: 15px;
  background-image:
    linear-gradient(180deg, rgba(6, 8, 24, 0.06), rgba(6, 8, 24, 0.82)),
    url('/assets/cd44-refasset-004.png');
  background-size: auto, cover;
  background-position: center, 50% 50%;
}

.thumb-security {
  background-position: center, 26% 48%;
}

.thumb-promo {
  background-position: center, 76% 58%;
}

.thumb-sport {
  background-position: center, 42% 54%;
}

.news-thumb span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--magenta), #7b2cff);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.news-body {
  padding: 20px;
}

.news-body h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.32;
  font-weight: 950;
}

.news-body p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

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

.article-hero .hero-grid {
  grid-template-columns: 1fr;
  padding: 58px 0;
}

.article-hero .hero-copy h1 {
  max-width: 860px;
  font-size: 46px;
}

.article-hero .hero-copy p {
  max-width: 720px;
}

.article-shell {
  padding: 68px 0 78px;
  background: #080916;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 30px;
  align-items: start;
}

.article-main {
  min-width: 0;
  padding: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.article-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 22px;
}

.article-meta span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: #0b0d1e;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-radius: 8px;
  font-size: 13px;
  font-weight: 950;
}

.article-main h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 30px;
  line-height: 1.22;
  font-weight: 950;
}

.article-main h3 {
  margin: 30px 0 12px;
  color: var(--cyan);
  font-size: 22px;
  line-height: 1.3;
  font-weight: 950;
}

.article-main p,
.article-main li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.8;
}

.article-main p {
  margin: 0 0 18px;
}

.article-main ul,
.article-main ol {
  margin: 0 0 22px;
  padding-left: 22px;
}

.article-main a {
  color: var(--gold);
  font-weight: 950;
}

.fly88-article-body img,
.article-main img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.article-side {
  display: grid;
  gap: 18px;
}

.side-panel {
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.side-panel h3 {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 18px;
  text-transform: uppercase;
}

.side-panel a {
  display: block;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 950;
  line-height: 1.45;
}

.side-panel a:last-child {
  border-bottom: 0;
}

.fly88-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 30px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 950;
}

.fly88-pagination a,
.fly88-pagination span,
.fly88-pagination li {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: var(--cyan);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
  list-style: none;
}

.fly88-pagination ul {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.footer {
  color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(180deg, #6d171b, #39090d);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 34px;
  padding: 56px 0 44px;
}

.footer p,
.footer a {
  display: block;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.7;
}

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

.copy {
  padding: 18px 24px;
  color: rgba(255, 255, 255, 0.56);
  background: rgba(0, 0, 0, 0.35);
  font-size: 13px;
  text-align: center;
}

@media (max-width: 980px) {
  .wrap {
    width: min(100% - 32px, 1120px);
  }

  .hero-grid,
  .intro-grid,
  .article-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .promo-card {
    max-width: 380px;
  }

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

  .game-item {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

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

@media (max-width: 640px) {
  body {
    background-size: 1100px auto;
  }

  .topbar-inner {
    min-height: 78px;
  }

  .brand-mark {
    min-width: 46px;
    height: 30px;
    font-size: 11px;
  }

  .brand-word {
    font-size: 28px;
  }

  .top-actions {
    gap: 8px;
  }

  .top-actions .btn {
    min-height: 34px;
    padding: 0 11px;
    font-size: 11px;
  }

  .nav-inner {
    justify-content: flex-start;
  }

  .nav-inner a {
    min-height: 48px;
    padding: 0 14px;
    font-size: 12px;
  }

  .hero {
    min-height: 650px;
    align-items: flex-start;
    background:
      linear-gradient(180deg, rgba(5, 7, 20, 0.98) 0%, rgba(7, 11, 30, 0.86) 52%, rgba(7, 11, 30, 0.18) 100%),
      url('/assets/cd44-refasset-005.png') 58% center / cover no-repeat;
  }

  .hero-grid {
    gap: 28px;
    padding: 46px 0 76px;
  }

  .hero-copy h1 {
    max-width: 350px;
    font-size: 38px;
    line-height: 1.08;
  }

  .article-hero .hero-copy h1 {
    max-width: 350px;
    font-size: 30px;
  }

  .hero-copy p {
    max-width: 350px;
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-actions {
    display: grid;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .promo-card {
    max-width: 100%;
    min-height: 174px;
    padding: 22px;
  }

  .promo-card strong {
    font-size: 48px;
  }

  .access-strip,
  .game-strip,
  .intro-band,
  .news-section {
    padding: 42px 0;
  }

  .access-inner {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .shield {
    width: 66px;
    height: 66px;
  }

  .access-inner h2,
  .intro-grid h2,
  .section-head h2 {
    font-size: 24px;
  }

  .game-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .game-item {
    min-height: 176px;
    border-right: 0;
  }

  .intro-grid article {
    padding: 24px;
  }

  .section-head {
    display: grid;
    align-items: start;
  }

  .section-head h2 {
    text-align: left;
  }

  .section-head a {
    margin-bottom: 0;
  }

  .news-thumb {
    min-height: 190px;
  }

  .article-shell {
    padding: 44px 0 58px;
  }

  .article-main {
    padding: 22px;
  }

  .article-main h2 {
    font-size: 24px;
  }

  .footer-grid {
    gap: 26px;
  }
}


/* Target Bengali content and Dede integration */
:root{--clone-dark:#11172f;--clone-bg2:#12d7ff;--clone-accent:#ff34d8;--clone-gold:#ffd45f;--clone-blue:#12d7ff;}
body.true-reference-clone{font-family:Arial,"Kohinoor Bangla","Noto Sans Bengali",sans-serif;letter-spacing:0;}
body.true-reference-clone img[src*="cd44-logo"]{height:auto;object-fit:contain;}
body.true-reference-clone img[src*="cd44-hero"]{height:auto;object-fit:contain;}
body.true-reference-clone .clone-visual-band{padding:38px 0;background:rgba(255,255,255,.92);}
body.true-reference-clone .clone-visual-inner{width:min(1180px,calc(100% - 32px));margin:0 auto;display:grid;grid-template-columns:320px minmax(0,1fr);gap:22px;align-items:center;}
body.true-reference-clone .clone-visual-copy h2{margin:0 0 10px;font-size:clamp(26px,3vw,42px);line-height:1.16;font-weight:900;color:var(--clone-dark);}
body.true-reference-clone .clone-visual-copy p{margin:0;color:#5f6675;line-height:1.7;}
body.true-reference-clone .clone-visual-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;}
body.true-reference-clone .clone-visual-card{margin:0;border-radius:12px;overflow:hidden;background:#fff;border:1px solid rgba(20,25,40,.12);box-shadow:0 16px 36px rgba(20,25,40,.1);}
body.true-reference-clone .clone-visual-card img{display:block;width:100%;aspect-ratio:1.25/1;object-fit:cover;}
body.true-reference-clone .clone-visual-card figcaption{padding:10px 12px;font-weight:900;color:var(--clone-dark);}
.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:900px){body.true-reference-clone .clone-visual-inner{grid-template-columns:1fr;}body.true-reference-clone .clone-visual-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media(max-width:780px){.clone-update-card,.clone-article-inner,.clone-prenext{grid-template-columns:1fr;}}
