/* reference stylesheet 1 */
:root {
  --okm-black: #0a0f12;
  --okm-ink: #111820;
  --okm-lime: #9be800;
  --okm-lime-2: #6fba00;
  --okm-blue: #072d68;
  --okm-gold: #ffc942;
  --okm-text: #1b2430;
  --okm-muted: #65717d;
  --okm-line: #e5ebef;
  --okm-radius: 8px;
  --okm-shadow: 0 22px 52px rgba(13, 32, 57, 0.16);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.okm-page {
  margin: 0;
  min-width: 320px;
  color: var(--okm-text);
  background: #ffffff;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
}

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

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

.okm-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.okm-top {
  background: #101820;
  color: #fff;
}

.okm-top-row {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.okm-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  color: #ffffff;
}

.okm-logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #0b1419;
  background: linear-gradient(135deg, var(--okm-lime), #cfff2e);
  box-shadow: 0 0 22px rgba(155, 232, 0, 0.32);
  font-style: normal;
  font-size: 22px;
  font-weight: 900;
}

.okm-logo-word b {
  color: var(--okm-lime);
}

.okm-top-actions {
  display: flex;
  gap: 12px;
}

.okm-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: var(--okm-radius);
  border: 1px solid rgba(155, 232, 0, 0.42);
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.okm-btn-primary {
  color: #0c1608;
  background: linear-gradient(135deg, #d7ff42, #9be800 60%, #73bd00);
  box-shadow: 0 14px 28px rgba(155, 232, 0, 0.26);
}

.okm-btn-dark {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.okm-nav-band {
  background: linear-gradient(90deg, #89c900, #b1ef05 52%, #81c600);
  color: #14200e;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.okm-nav {
  min-height: 58px;
  display: flex;
  justify-content: center;
  gap: 34px;
  align-items: center;
  font-weight: 850;
  font-size: 15px;
  text-transform: uppercase;
}

.okm-nav a {
  position: relative;
  padding: 18px 0;
  white-space: nowrap;
}

.okm-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 3px;
  background: var(--okm-blue);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

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

.okm-hero {
  min-height: 640px;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  background: #061328;
}

.okm-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 12, 25, 0.96) 0%, rgba(5, 14, 29, 0.78) 38%, rgba(5, 14, 29, 0.2) 68%, rgba(5, 14, 29, 0.18) 100%),
    url('/assets/gb444-refasset-001.jpg') center right / cover no-repeat;
  z-index: 0;
}

.okm-hero-content {
  position: relative;
  z-index: 1;
  padding: 70px 0 38px;
}

.okm-hero h1 {
  max-width: 680px;
  margin: 0 0 20px;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1.02;
  font-weight: 950;
  text-wrap: balance;
}

.okm-hero h1 span {
  color: var(--okm-lime);
}

.okm-hero p {
  margin: 0;
  max-width: 610px;
  color: #e4effb;
  font-size: 18px;
}

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

.okm-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 940px;
  margin-top: 48px;
  border: 1px solid rgba(155, 232, 0, 0.3);
  border-radius: var(--okm-radius);
  overflow: hidden;
  background: rgba(155, 232, 0, 0.24);
}

.okm-proof-item {
  padding: 18px 20px;
  background: rgba(5, 15, 27, 0.78);
  backdrop-filter: blur(10px);
}

.okm-proof-item strong {
  display: block;
  color: var(--okm-lime);
  font-size: 15px;
  margin-bottom: 4px;
}

.okm-proof-item span {
  color: #d3e4f0;
  font-size: 13px;
}

.okm-section {
  padding: 66px 0;
}

.okm-section-soft {
  background: #f5f8f9;
}

.okm-section-dark {
  background: #0c131a;
  color: #fff;
}

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

.okm-section-head h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
  color: inherit;
}

.okm-section-head p {
  margin: 0;
  max-width: 650px;
  color: var(--okm-muted);
}

.okm-section-dark .okm-section-head p {
  color: #c4d2df;
}

.okm-link {
  color: var(--okm-lime-2);
  font-weight: 850;
  white-space: nowrap;
}

.okm-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: center;
}

.okm-intro h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.12;
}

.okm-intro p {
  margin: 0 0 16px;
  color: var(--okm-muted);
}

.okm-checks {
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.okm-checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #2d3b45;
  font-weight: 700;
}

.okm-checks li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  margin-top: 2px;
  color: #0a1506;
  background: var(--okm-lime);
  font-size: 13px;
  font-weight: 900;
}

.okm-media {
  overflow: hidden;
  border-radius: var(--okm-radius);
  box-shadow: var(--okm-shadow);
  border: 1px solid var(--okm-line);
  background: #fff;
}

.okm-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

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

.okm-cat {
  min-height: 210px;
  border-radius: var(--okm-radius);
  overflow: hidden;
  position: relative;
  color: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--okm-shadow);
  background: #0f263f;
}

.okm-cat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.76));
}

.okm-cat > * {
  position: relative;
  z-index: 1;
}

.okm-cat h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 24px;
}

.okm-cat p {
  margin: 0 0 16px;
  color: #d9e5ec;
  font-size: 14px;
}

.okm-cat-casino { background: url('/assets/gb444-refasset-002.jpg') center / cover; }
.okm-cat-sports { background: url('/assets/gb444-refasset-003.jpg') center / cover; }
.okm-cat-promo { background: url('/assets/gb444-refasset-004.jpg') center / cover; }
.okm-cat-secure { background: url('/assets/gb444-refasset-005.jpg') center / cover; }

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

.okm-news-card {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--okm-line);
  border-radius: var(--okm-radius);
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(12, 30, 48, 0.08);
}

.okm-news-card > a {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.okm-card-thumb {
  height: 160px;
  background: #0b1c2b;
  overflow: hidden;
}

.okm-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.okm-dede-card .okm-card-thumb {
  background: url('/assets/gb444-refasset-006.jpg') center / cover no-repeat;
}

.okm-card-body {
  padding: 18px;
}

.okm-card-body small {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  color: #0b1805;
  background: #dfff54;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.okm-card-body h2,
.okm-card-body h3 {
  margin: 12px 0 8px;
  color: #18232d;
  line-height: 1.25;
  font-size: 19px;
}

.okm-card-body p {
  margin: 0 0 16px;
  color: var(--okm-muted);
  font-size: 14px;
}

.okm-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #739100;
  font-size: 13px;
  font-weight: 800;
}

.okm-fallback-news.is-hidden {
  display: none;
}

.okm-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 26px;
  align-items: stretch;
}

.okm-faq-list {
  display: grid;
  gap: 10px;
}

.okm-faq-item {
  border: 1px solid var(--okm-line);
  border-radius: var(--okm-radius);
  background: #fff;
  padding: 16px 18px;
  color: #1b2630;
  font-weight: 750;
}

.okm-note {
  border-radius: var(--okm-radius);
  padding: 26px;
  background: linear-gradient(145deg, #edfbd3, #ffffff);
  border: 1px solid #dfeec2;
}

.okm-note h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.okm-note p {
  margin: 0 0 18px;
  color: #42505b;
}

.okm-note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.okm-note-grid span {
  display: block;
  border-top: 1px solid rgba(25, 52, 19, 0.12);
  padding-top: 10px;
  color: #263320;
  font-weight: 800;
}

.okm-pagination {
  margin-top: 24px;
}

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

.okm-pagination a,
.okm-pagination span,
.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid var(--okm-line);
  border-radius: 6px;
  background: #fff;
  color: #27323b;
}

.okm-article-hero {
  padding: 72px 0 62px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 15, 25, 0.96), rgba(7, 15, 25, 0.78) 44%, rgba(7, 15, 25, 0.34)),
    url('/assets/gb444-refasset-007.jpg') center right / cover no-repeat;
}

.okm-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  color: #d5e4ee;
}

.okm-breadcrumb a {
  color: var(--okm-lime);
}

.okm-article-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(34px, 4.3vw, 60px);
  line-height: 1.08;
  font-weight: 930;
}

.okm-article-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: #d8e7f2;
}

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

.okm-article-card {
  border: 1px solid var(--okm-line);
  border-radius: var(--okm-radius);
  background: #fff;
  padding: clamp(24px, 4vw, 44px);
  box-shadow: 0 18px 44px rgba(12, 30, 48, 0.08);
}

.okm-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #607080;
  font-size: 14px;
  margin-bottom: 24px;
}

.okm-article-body {
  color: #25323d;
  font-size: 17px;
}

.okm-article-body h2,
.okm-article-body h3 {
  color: #121c25;
  line-height: 1.2;
  margin-top: 30px;
}

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

.okm-article-body a {
  color: #5d9900;
  font-weight: 850;
}

.okm-sidebox {
  position: sticky;
  top: 24px;
  border: 1px solid var(--okm-line);
  border-radius: var(--okm-radius);
  background: #fff;
  padding: 22px;
  box-shadow: 0 18px 44px rgba(12, 30, 48, 0.08);
}

.okm-sidebox h2 {
  margin: 0 0 14px;
  font-size: 22px;
}

.okm-sidebox ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.okm-sidebox li {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--okm-line);
  color: var(--okm-muted);
}

.okm-pre-next {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.okm-pre-next div {
  border: 1px solid var(--okm-line);
  border-radius: 6px;
  padding: 12px;
  color: #4b5965;
}

.okm-footer {
  background: #0a1015;
  color: #cdd8df;
  border-top: 4px solid var(--okm-lime);
  padding: 42px 0 24px;
}

.okm-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 26px;
}

.okm-footer h2,
.okm-footer h3 {
  color: #fff;
  margin: 0 0 12px;
}

.okm-footer p {
  margin: 0 0 10px;
}

.okm-footer a {
  color: var(--okm-lime);
  font-weight: 850;
}

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

@media (max-width: 1040px) {
  .okm-proof,
  .okm-categories,
  .okm-news-grid,
  .okm-dede-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .okm-intro,
  .okm-faq-layout,
  .okm-article-layout {
    grid-template-columns: 1fr;
  }

  .okm-sidebox {
    position: static;
  }

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

@media (max-width: 720px) {
  .okm-shell {
    width: min(100% - 28px, 1120px);
  }

  .okm-top-row {
    padding: 18px 0;
    flex-wrap: wrap;
  }

  .okm-logo {
    font-size: 30px;
  }

  .okm-top-actions {
    width: 100%;
  }

  .okm-top-actions .okm-btn {
    flex: 1;
  }

  .okm-nav {
    justify-content: flex-start;
    overflow-x: auto;
    gap: 18px;
    padding: 0 14px;
    font-size: 13px;
  }

  .okm-hero {
    min-height: auto;
  }

  .okm-hero::before {
    background:
      linear-gradient(180deg, rgba(5, 12, 25, 0.94), rgba(5, 12, 25, 0.72)),
      url('/assets/gb444-refasset-008.jpg') center right / cover no-repeat;
  }

  .okm-hero-content {
    padding: 50px 0 34px;
  }

  .okm-hero h1 {
    font-size: 42px;
  }

  .okm-proof,
  .okm-categories,
  .okm-news-grid,
  .okm-dede-grid,
  .okm-note-grid,
  .okm-footer-grid,
  .okm-pre-next {
    grid-template-columns: 1fr;
  }

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

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

  .okm-card-thumb {
    height: 190px;
  }

  .okm-copyright {
    display: block;
  }
}


/* Target Bengali content and Dede integration */
:root{--clone-dark:#111820;--clone-bg2:#6fba00;--clone-accent:#9be800;--clone-gold:#ffc942;--clone-blue:#072d68;}
body.true-reference-clone{font-family:Arial,"Kohinoor Bangla","Noto Sans Bengali",sans-serif;letter-spacing:0;}
body.true-reference-clone img[src*="gb444-logo"]{height:auto;object-fit:contain;}
body.true-reference-clone img[src*="gb444-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;}}
