:root {
  --black: #111111;
  --green-950: #031913;
  --green-900: #06271e;
  --green-800: #0a3a2b;
  --green-700: #0f5a40;
  --gold-600: #d99421;
  --gold-500: #eca82b;
  --gold-300: #ffd984;
  --red-600: #cf1f2f;
  --paper: #ffffff;
  --soft: #f5f7f3;
  --ink: #202823;
  --muted: #657069;
  --line: #e0e6de;
  --shadow: 0 18px 40px rgba(3, 25, 19, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #edf1ed;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

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

svg {
  display: block;
}

.site-shell {
  width: min(1440px, 100%);
  margin: 0 auto;
  background: var(--paper);
  box-shadow: 0 0 28px rgba(3, 25, 19, 0.1);
}

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

.topbar {
  background: #111;
}

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

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

.brand-emblem {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--green-950);
  background:
    radial-gradient(circle at 36% 22%, #fff8d6, transparent 28%),
    linear-gradient(135deg, var(--gold-300), var(--gold-500) 58%, #b96f12);
  border: 1px solid rgba(255, 217, 132, 0.58);
  border-radius: 8px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(236, 168, 43, 0.22);
}

.brand strong {
  display: block;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--gold-300);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.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: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 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: var(--green-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 12px 22px rgba(236, 168, 43, 0.26);
}

.btn-dark {
  color: #fff;
  background: #314761;
}

.btn-outline {
  color: #fff;
  border-color: rgba(255, 217, 132, 0.46);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.btn-large {
  min-height: 50px;
  padding: 0 22px;
}

.gold-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(90deg, #dd9628, #e4a239);
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.14);
}

.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 16px;
  color: #2f332e;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.nav-inner a.active {
  color: #111;
  background: rgba(255, 255, 255, 0.18);
}

.hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(3, 17, 13, 0.96) 0%, rgba(4, 30, 22, 0.76) 42%, rgba(4, 30, 22, 0.16) 72%, rgba(3, 17, 13, 0.18) 100%),
    url("88clb-hero.png") center / cover no-repeat;
  overflow: hidden;
}

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

.hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: 54px;
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.34);
}

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

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

.bonus-panel {
  min-height: 228px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 28px;
  color: #fff;
  background: linear-gradient(180deg, rgba(8, 44, 32, 0.92), rgba(17, 17, 17, 0.74));
  border: 1px solid rgba(255, 217, 132, 0.42);
  border-radius: 8px;
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.28);
}

.bonus-panel span {
  color: var(--gold-300);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.bonus-panel strong {
  color: #fff3b0;
  font-size: 58px;
  line-height: 0.95;
}

.bonus-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.6;
}

.intro-section,
.product-band,
.guide-section,
.news-section {
  padding: 70px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 38px;
  align-items: center;
}

.intro-copy h2,
.section-head h2,
.guide-panel h2 {
  margin: 0;
  color: var(--green-950);
  font-size: 34px;
  line-height: 1.18;
  font-weight: 900;
}

.intro-copy p,
.guide-panel p {
  margin: 18px 0 0;
  color: #3e4a43;
  font-size: 16px;
  line-height: 1.8;
}

.official-link {
  font-weight: 900;
}

.official-link a,
.section-head a {
  color: var(--gold-600);
}

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

.score-list div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(3, 25, 19, 0.08);
}

.score-list span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--green-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  border-radius: 8px;
  font-weight: 900;
}

.score-list strong {
  display: block;
  color: var(--green-950);
  font-size: 18px;
}

.score-list p {
  grid-column: 2;
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.product-band {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(3, 25, 19, 0.98), rgba(8, 58, 43, 0.96)),
    radial-gradient(circle at 78% 18%, rgba(236, 168, 43, 0.22), transparent 30%);
}

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

.product-band .section-head h2,
.guide-panel h2 {
  color: #fff;
}

.section-head a {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.product-card {
  min-height: 228px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.icon {
  width: 54px;
  height: 54px;
  display: block;
  position: relative;
  border-radius: 8px;
  background:
    radial-gradient(circle at 36% 28%, #fff8d6, transparent 22%),
    linear-gradient(135deg, #fedb81, #bd7416);
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.icon::before {
  inset: 12px;
  border: 4px solid rgba(3, 25, 19, 0.74);
}

.sport::before {
  border-style: dashed;
}

.slot::before {
  inset: 11px 15px;
  border-radius: 6px;
}

.card::before {
  inset: 10px 16px;
  border-radius: 5px;
  background: #fff;
}

.card::after {
  right: 9px;
  bottom: 9px;
  width: 14px;
  height: 14px;
  background: var(--red-600);
}

.product-card strong {
  color: #fff;
  font-size: 20px;
}

.product-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.65;
}

.guide-section {
  background: var(--soft);
}

.guide-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: stretch;
}

.guide-panel {
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(3, 25, 19, 0.94), rgba(10, 58, 43, 0.88)),
    url("88clb-hero.png") 72% center / cover no-repeat;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.guide-panel p {
  color: rgba(255, 255, 255, 0.78);
}

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

.step-list a {
  display: grid;
  gap: 7px;
  align-content: center;
  min-height: 112px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(3, 25, 19, 0.08);
}

.step-list span {
  color: var(--gold-600);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.step-list strong {
  color: var(--green-950);
  font-size: 18px;
}

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

.news-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(3, 25, 19, 0.08);
}

.news-thumb {
  min-height: 190px;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  background-image:
    linear-gradient(180deg, rgba(3, 25, 19, 0.08), rgba(3, 25, 19, 0.78)),
    url("88clb-hero.png");
  background-size: 140%, cover;
  background-position: center, 76% 50%;
}

.thumb-two {
  background-position: center, 62% 48%;
}

.thumb-three {
  background-position: center, 90% 54%;
}

.news-thumb span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  color: var(--green-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.news-body {
  padding: 20px;
}

.news-body h3 {
  margin: 0;
  color: var(--green-950);
  font-size: 20px;
  line-height: 1.32;
  font-weight: 900;
}

.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: 44px;
}

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

.article-shell {
  padding: 64px 0 76px;
  background: #fff;
}

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

.article-main {
  min-width: 0;
  padding: 32px;
  background: #fff;
  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: var(--green-950);
  background: #fff5d7;
  border: 1px solid rgba(236, 168, 43, 0.34);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.article-main h2 {
  margin: 0 0 18px;
  color: var(--green-950);
  font-size: 30px;
  line-height: 1.22;
  font-weight: 900;
}

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

.article-main p,
.article-main li {
  color: #3e4a43;
  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-600);
  font-weight: 900;
}

.clb88-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: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(3, 25, 19, 0.08);
}

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

.side-panel a {
  display: block;
  padding: 12px 0;
  color: #3e4a43;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.45;
}

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

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

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

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

.footer {
  color: rgba(255, 255, 255, 0.72);
  background: #111;
}

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

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

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

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

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

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

  .bonus-panel {
    max-width: 360px;
  }

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

@media (max-width: 640px) {
  .topbar-inner {
    min-height: 72px;
  }

  .brand-emblem {
    width: 42px;
    height: 42px;
    font-size: 19px;
  }

  .brand strong {
    font-size: 26px;
  }

  .brand small {
    font-size: 10px;
  }

  .top-actions {
    gap: 8px;
  }

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

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

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

  .hero {
    min-height: 620px;
    align-items: flex-start;
    background:
      linear-gradient(180deg, rgba(3, 17, 13, 0.96) 0%, rgba(4, 30, 22, 0.78) 54%, rgba(4, 30, 22, 0.18) 100%),
      url("88clb-hero.png") 70% center / cover no-repeat;
  }

  .hero-grid {
    gap: 24px;
    padding: 44px 0 70px;
  }

  .hero-copy h1 {
    max-width: 350px;
    font-size: 35px;
    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.65;
  }

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

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

  .bonus-panel {
    max-width: 100%;
    min-height: 168px;
    padding: 22px;
  }

  .bonus-panel strong {
    font-size: 44px;
  }

  .intro-section,
  .product-band,
  .guide-section,
  .news-section {
    padding: 52px 0;
  }

  .intro-copy h2,
  .section-head h2,
  .guide-panel h2 {
    font-size: 27px;
  }

  .score-list div {
    grid-template-columns: 46px 1fr;
    padding: 14px;
  }

  .score-list span {
    width: 40px;
    height: 40px;
  }

  .section-head,
  .product-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

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

  .product-card {
    min-height: auto;
  }

  .guide-panel {
    padding: 24px;
  }

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

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

  .article-main {
    padding: 22px;
  }

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

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

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

/* 88CLB screenshot layout 202607071910 */
.clb-layout-page .topbar,.clb-layout-page .gold-nav{position:relative;z-index:5}
.clb-layout-hero{min-height:310px;display:flex;align-items:center;color:#fff;background:linear-gradient(90deg,rgba(0,0,0,.88) 0%,rgba(0,0,0,.62) 42%,rgba(0,0,0,.14) 74%),url("/assets/88clb-hero.png") center/cover no-repeat}
.clb-layout-hero .wrap{padding:56px 0 62px}
.clb-layout-hero h1{max-width:820px;margin:0;color:#fff;font-size:clamp(44px,7vw,78px);line-height:.96;font-weight:1000;letter-spacing:-1px}
.clb-layout-hero p{max-width:720px;margin:24px 0 0;color:#fff;font-size:21px;line-height:1.55;font-weight:650}
.clb-content-shell{padding:62px 0 82px;background:#fff}
.clb-content-grid{display:grid;grid-template-columns:minmax(0,1fr) 330px;gap:34px;align-items:start}
.clb-layout-card,.clb-related-card{background:#fff;border:1px solid rgba(217,148,33,.36);border-radius:8px;box-shadow:0 20px 55px rgba(17,17,17,.07)}
.clb-layout-card{padding:38px}
.clb-layout-card .article-meta span{background:#fff3cf;border-color:rgba(217,148,33,.28);color:#111}
.clb-layout-card h2{margin:0 0 20px;color:#111;font-size:clamp(38px,5vw,58px);line-height:1.04;font-weight:1000;letter-spacing:-1px}
.clb88-article-body h2{margin:28px 0 14px;color:#050505;font-size:26px;line-height:1.25;font-weight:1000}
.clb88-article-body p,.clb88-article-body li{color:#1c2630;font-size:17px;line-height:1.8}
.clb88-article-body ul{margin:0 0 24px;padding-left:22px}
.clb88-article-body details{margin:12px 0;padding:16px 18px;border:1px solid var(--line);border-radius:8px;background:#fffdf7}
.clb88-article-body summary{cursor:pointer;color:#111;font-weight:1000}
.clb-related-card{position:sticky;top:24px;padding:26px}
.clb-related-card h3{margin:0 0 18px;color:#090909;font-size:24px;line-height:1.2;font-weight:1000}
.clb-related-card h3:not(:first-child){margin-top:26px}
.clb-related-card a{display:block;margin:0 0 12px;padding:14px 14px;color:#050505;border:1px solid rgba(217,148,33,.36);border-radius:8px;background:#fff;font-size:16px;font-weight:1000;line-height:1.35}
.product-grid{grid-template-columns:repeat(auto-fit,minmax(230px,1fr))}
@media (max-width:900px){.clb-content-grid{grid-template-columns:1fr}.clb-related-card{position:static}}
@media (max-width:640px){.clb-layout-hero h1{font-size:38px}.clb-layout-hero p{font-size:17px}.clb-layout-card{padding:24px}.clb-layout-card h2{font-size:34px}}
