/* reference stylesheet 1 */
:root {
  --hm88-black: #070303;
  --hm88-panel: #130606;
  --hm88-panel-2: #1b0908;
  --hm88-red: #de171f;
  --hm88-red-2: #ff3c28;
  --hm88-gold: #ffd15c;
  --hm88-gold-2: #f39a1d;
  --hm88-cyan: #36d5ff;
  --hm88-green: #41e78c;
  --hm88-text: #f8efe2;
  --hm88-muted: #c9a998;
  --hm88-line: rgba(255, 209, 92, .2);
  --hm88-shadow: 0 24px 70px rgba(0, 0, 0, .48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.hm88-site {
  margin: 0;
  overflow-x: hidden;
  color: var(--hm88-text);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  background: var(--hm88-black);
}

.hm88-site a {
  color: inherit;
  text-decoration: none;
}

.hm88-site img {
  display: block;
  max-width: 100%;
  height: auto;
}

.hm88-page {
  min-height: 100vh;
  overflow-x: hidden;
  background: linear-gradient(180deg, #080202 0%, #150605 42%, #090303 100%);
}

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

.hm88-top-strip {
  background: #060202;
  border-bottom: 1px solid rgba(255, 209, 92, .14);
}

.hm88-top-strip .hm88-wrap {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #f8d989;
  font-size: 13px;
  font-weight: 700;
}

.hm88-top-strip strong {
  color: #fff;
}

.hm88-nav-shell {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(18, 5, 5, .96);
  border-bottom: 1px solid var(--hm88-line);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .36);
  backdrop-filter: blur(12px);
}

.hm88-nav-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 26px;
}

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

.hm88-brand-mark {
  width: 58px;
  height: 58px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  color: #1b0603;
  background: linear-gradient(145deg, #fff2a0 0%, var(--hm88-gold) 48%, var(--hm88-red-2) 100%);
  box-shadow: inset 0 -8px 0 rgba(0, 0, 0, .2), 0 0 28px rgba(255, 209, 92, .34);
  font-size: 20px;
  font-weight: 1000;
}

.hm88-brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
  min-width: 0;
}

.hm88-brand-name strong {
  color: var(--hm88-gold);
  font-size: 42px;
  font-weight: 1000;
  text-shadow: 0 3px 0 #7b120b, 0 0 20px rgba(255, 209, 92, .34);
}

.hm88-brand-name span {
  margin-top: 5px;
  color: #f5b49e;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hm88-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
}

.hm88-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 8px;
  color: #f9ddaf;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.hm88-nav a.hm88-active,
.hm88-nav a:hover {
  color: #190604;
  background: linear-gradient(180deg, #fff3a7, var(--hm88-gold-2));
}

.hm88-auth {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hm88-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  font-size: 14px;
  font-weight: 1000;
  text-transform: uppercase;
  white-space: nowrap;
}

.hm88-btn-gold {
  color: #1a0804;
  border-color: transparent;
  background: linear-gradient(180deg, #fff3a4, var(--hm88-gold-2));
  box-shadow: 0 12px 26px rgba(243, 154, 29, .25);
}

.hm88-btn-red {
  border-color: transparent;
  background: linear-gradient(180deg, #ff5546, var(--hm88-red));
  box-shadow: 0 12px 26px rgba(222, 23, 31, .3);
}

.hm88-hero {
  position: relative;
  min-height: 680px;
  padding: 58px 0 42px;
  background:
    linear-gradient(90deg, rgba(8, 2, 2, .96) 0%, rgba(8, 2, 2, .84) 38%, rgba(8, 2, 2, .48) 68%, rgba(8, 2, 2, .75) 100%),
    url('/assets/jjjpk-refasset-001.png') center right / cover no-repeat;
  border-bottom: 1px solid rgba(255, 209, 92, .18);
}

.hm88-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(180deg, transparent, #150605);
  pointer-events: none;
}

.hm88-hero .hm88-wrap {
  position: relative;
  z-index: 1;
}

.hm88-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 610px) 1fr;
  gap: 52px;
  align-items: center;
}

.hm88-eyebrow {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 15px;
  border: 1px solid rgba(255, 209, 92, .32);
  border-radius: 8px;
  color: #ffe39b;
  background: rgba(20, 7, 5, .72);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hm88-eyebrow span {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--hm88-green);
  box-shadow: 0 0 14px rgba(65, 231, 140, .68);
}

.hm88-hero h1 {
  margin: 24px 0 0;
  color: #fff;
  font-size: clamp(42px, 5vw, 68px);
  line-height: .98;
  font-weight: 1000;
  text-transform: uppercase;
  text-shadow: 0 4px 0 #70120c, 0 0 32px rgba(255, 61, 40, .26);
}

.hm88-lead {
  margin: 24px 0 0;
  max-width: 570px;
  color: #f1d8c3;
  font-size: 20px;
  line-height: 1.65;
  font-weight: 600;
}

.hm88-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hm88-actions .hm88-btn {
  min-height: 56px;
  padding: 0 28px;
  font-size: 15px;
}

.hm88-trust-row {
  max-width: 620px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.hm88-trust-item {
  min-height: 106px;
  padding: 17px 16px;
  border: 1px solid rgba(255, 209, 92, .2);
  border-radius: 8px;
  background: rgba(10, 3, 3, .66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.hm88-trust-item strong {
  display: block;
  color: var(--hm88-gold);
  font-size: 28px;
  line-height: 1;
  font-weight: 1000;
}

.hm88-trust-item span {
  display: block;
  margin-top: 9px;
  color: #d5b6a3;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
}

.hm88-status-panel {
  justify-self: end;
  width: min(380px, 100%);
  padding: 22px;
  border-radius: 8px;
  border: 1px solid rgba(255, 209, 92, .26);
  background: rgba(12, 4, 4, .76);
  box-shadow: var(--hm88-shadow);
}

.hm88-status-panel h2 {
  margin: 0;
  color: var(--hm88-gold);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 1000;
  text-transform: uppercase;
}

.hm88-access-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.hm88-access-row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
}

.hm88-access-row b {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #210804;
  background: var(--hm88-gold);
  font-size: 14px;
}

.hm88-access-row strong {
  color: #fff;
  font-size: 14px;
}

.hm88-access-row small {
  display: block;
  margin-top: 4px;
  color: #c7a390;
  font-size: 12px;
  font-weight: 700;
}

.hm88-access-row em {
  color: var(--hm88-green);
  font-style: normal;
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.hm88-ticker {
  height: 58px;
  overflow: hidden;
  background: linear-gradient(90deg, #dd141d, #f2a21e, #dd141d);
  color: #210704;
  font-size: 15px;
  font-weight: 1000;
  text-transform: uppercase;
}

.hm88-ticker-track {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  white-space: nowrap;
}

.hm88-section {
  padding: 74px 0;
}

.hm88-section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .015));
  border-top: 1px solid rgba(255, 209, 92, .12);
  border-bottom: 1px solid rgba(255, 209, 92, .12);
}

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

.hm88-section-head h2 {
  margin: 0;
  color: #fff;
  font-size: 36px;
  line-height: 1.1;
  font-weight: 1000;
  text-transform: uppercase;
}

.hm88-section-head p {
  margin: 0;
  max-width: 470px;
  color: var(--hm88-muted);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 600;
}

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

.hm88-game-card {
  min-height: 230px;
  padding: 22px;
  border-radius: 8px;
  border: 1px solid rgba(255, 209, 92, .18);
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .025)), #150605;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
}

.hm88-game-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #200704;
  background: linear-gradient(145deg, var(--hm88-gold), var(--hm88-red-2));
  font-size: 24px;
  font-weight: 1000;
}

.hm88-game-card h3 {
  margin: 22px 0 0;
  color: #fff;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 1000;
  text-transform: uppercase;
}

.hm88-game-card p {
  margin: 13px 0 0;
  color: #c7a390;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
}

.hm88-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

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

.hm88-article-card {
  min-height: 196px;
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 209, 92, .16);
  background: rgba(18, 6, 5, .88);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .26);
}

.hm88-thumb {
  min-height: 164px;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 209, 92, .95), rgba(222, 23, 31, .86)), #41100a;
  position: relative;
  overflow: hidden;
}

.hm88-thumb::before,
.hm88-thumb::after {
  content: "";
  position: absolute;
  transform: rotate(-18deg);
}

.hm88-thumb::before {
  width: 82px;
  height: 138px;
  left: 17px;
  top: 18px;
  border: 2px solid rgba(255, 255, 255, .48);
  border-radius: 8px;
  background: rgba(19, 6, 5, .54);
}

.hm88-thumb::after {
  width: 72px;
  height: 72px;
  right: -16px;
  bottom: -12px;
  border-radius: 50%;
  border: 12px solid rgba(255, 255, 255, .2);
}

.hm88-article-card small,
.hm88-tag {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  color: #210704;
  background: var(--hm88-gold);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.hm88-article-card h3 {
  margin: 12px 0 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.22;
  font-weight: 1000;
}

.hm88-article-card p {
  margin: 10px 0 0;
  color: #c8a998;
  font-size: 14px;
  line-height: 1.48;
  font-weight: 600;
}

.hm88-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 12px;
  color: #9f8072;
  font-size: 12px;
  font-weight: 800;
}

.hm88-side-box {
  padding: 22px;
  border-radius: 8px;
  border: 1px solid rgba(255, 209, 92, .18);
  background: #130605;
  box-shadow: var(--hm88-shadow);
}

.hm88-side-box h3 {
  margin: 0 0 16px;
  color: var(--hm88-gold);
  font-size: 22px;
  font-weight: 1000;
  text-transform: uppercase;
}

.hm88-side-menu {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hm88-side-menu a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .08);
  color: #f7dcc4;
  font-size: 14px;
  font-weight: 900;
}

.hm88-side-menu a span {
  color: var(--hm88-cyan);
  font-weight: 1000;
}

.hm88-guide-band {
  display: grid;
  grid-template-columns: 450px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255, 209, 92, .18);
  background: linear-gradient(135deg, rgba(222, 23, 31, .22), rgba(54, 213, 255, .08)), #130605;
}

.hm88-guide-band h2 {
  margin: 0;
  color: #fff;
  font-size: 38px;
  line-height: 1.08;
  font-weight: 1000;
  text-transform: uppercase;
}

.hm88-guide-band p {
  margin: 16px 0 0;
  color: #d7b8a7;
  font-size: 16px;
  line-height: 1.58;
  font-weight: 600;
}

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

.hm88-step {
  min-height: 166px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
}

.hm88-step b {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: #210704;
  background: var(--hm88-gold);
  font-size: 14px;
}

.hm88-step strong {
  display: block;
  margin-top: 16px;
  color: #fff;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 1000;
}

.hm88-step span {
  display: block;
  margin-top: 9px;
  color: #c6a594;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}

.hm88-breadcrumb {
  margin: 0;
  padding: 18px 0 0;
  color: #c6a594;
  font-size: 13px;
  font-weight: 800;
}

.hm88-breadcrumb a {
  color: var(--hm88-gold);
}

.hm88-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 24px 0 0;
  margin: 0;
  list-style: none;
}

.hm88-pagination li,
.hm88-pagination a,
.hm88-pagination span {
  min-height: 38px;
  min-width: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 12px;
  color: #f8dcc6;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  font-size: 13px;
  font-weight: 900;
}

.hm88-pagination .thisclass,
.hm88-pagination a:hover {
  color: #210704;
  background: var(--hm88-gold);
}

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

.hm88-article-main {
  padding: 28px;
  border-radius: 8px;
  border: 1px solid rgba(255, 209, 92, .16);
  background: rgba(18, 6, 5, .9);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
}

.hm88-article-title {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.06;
  font-weight: 1000;
  text-transform: uppercase;
  text-shadow: 0 3px 0 #70120c;
}

.hm88-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 18px 0 0;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: #c8a998;
  font-size: 13px;
  font-weight: 800;
}

.hm88-article-body {
  padding-top: 8px;
  color: #ead0be;
  font-size: 17px;
  line-height: 1.78;
  font-weight: 500;
}

.hm88-article-body h2,
.hm88-article-body h3,
.hm88-article-body h4 {
  color: #fff;
  line-height: 1.18;
  font-weight: 1000;
}

.hm88-article-body h2 {
  margin-top: 34px;
  font-size: 30px;
}

.hm88-article-body h3 {
  margin-top: 28px;
  font-size: 24px;
}

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

.hm88-article-body a {
  color: var(--hm88-gold);
  font-weight: 800;
}

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

.hm88-article-body li {
  margin: 8px 0;
}

.hm88-article-body blockquote {
  margin: 24px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--hm88-gold);
  color: #ffe7bd;
  background: rgba(255, 255, 255, .05);
}

.hm88-article-body table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.hm88-article-body th,
.hm88-article-body td {
  border: 1px solid rgba(255, 209, 92, .2);
  padding: 10px;
}

.hm88-prenext {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #f6d7bd;
  font-size: 14px;
  font-weight: 800;
}

.hm88-footer {
  padding: 48px 0 34px;
  background: #050202;
  border-top: 1px solid rgba(255, 209, 92, .16);
}

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

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

.hm88-footer p,
.hm88-footer a {
  color: #c6a594;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
}

.hm88-copyright {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #92766a;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .hm88-nav-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px 0;
  }

  .hm88-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hm88-auth {
    width: 100%;
  }

  .hm88-auth .hm88-btn {
    flex: 1;
  }

  .hm88-hero-grid,
  .hm88-content-grid,
  .hm88-article-layout,
  .hm88-guide-band,
  .hm88-footer-grid {
    grid-template-columns: 1fr;
  }

  .hm88-status-panel {
    justify-self: start;
  }

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

@media (max-width: 640px) {
  .hm88-wrap {
    width: calc(100% - 28px);
  }

  .hm88-top-strip .hm88-wrap {
    min-height: 46px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 3px;
    font-size: 12px;
  }

  .hm88-brand-mark {
    width: 48px;
    height: 48px;
  }

  .hm88-brand-name strong {
    font-size: 34px;
  }

  .hm88-nav a {
    min-height: 36px;
    padding: 0 9px;
    font-size: 12px;
  }

  .hm88-auth .hm88-btn,
  .hm88-actions .hm88-btn {
    width: 100%;
    min-height: 44px;
    padding: 0 10px;
    font-size: 12px;
  }

  .hm88-hero {
    min-height: auto;
    padding: 34px 0 28px;
    background:
      linear-gradient(180deg, rgba(8, 2, 2, .92) 0%, rgba(8, 2, 2, .72) 55%, rgba(8, 2, 2, .94) 100%),
      url('/assets/jjjpk-refasset-002.png') center top / cover no-repeat;
  }

  .hm88-hero h1 {
    overflow-wrap: anywhere;
  }

  .hm88-lead {
    font-size: 16px;
  }

  .hm88-trust-row,
  .hm88-game-grid,
  .hm88-article-grid,
  .hm88-steps {
    grid-template-columns: 1fr;
  }

  .hm88-section {
    padding: 46px 0;
  }

  .hm88-section-head {
    display: block;
  }

  .hm88-section-head h2 {
    font-size: 27px;
    overflow-wrap: anywhere;
  }

  .hm88-section-head p {
    margin-top: 12px;
  }

  .hm88-ticker {
    height: auto;
    min-height: 54px;
    padding: 10px 0;
  }

  .hm88-ticker-track {
    width: min(100%, calc(100% - 20px));
    min-width: 0;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 16px;
    white-space: normal;
  }

  .hm88-article-card {
    grid-template-columns: 1fr;
  }

  .hm88-thumb {
    min-height: 130px;
  }

  .hm88-guide-band,
  .hm88-article-main {
    padding: 22px;
  }

  .hm88-guide-band h2 {
    font-size: 29px;
    overflow-wrap: anywhere;
  }

  .hm88-article-body {
    font-size: 16px;
  }
}


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