:root {
  --d88-bg: #05090d;
  --d88-bg-2: #091017;
  --d88-panel: #0b1219;
  --d88-panel-2: #101922;
  --d88-line: rgba(255, 255, 255, .13);
  --d88-text: #f7fbff;
  --d88-muted: #a6b2bd;
  --d88-green: #16e68c;
  --d88-green-2: #08b76c;
  --d88-red: #e01820;
  --d88-red-2: #9c0a12;
  --d88-gold: #f4c95d;
  --d88-radius: 8px;
  --d88-shadow: 0 20px 48px rgba(0, 0, 0, .26);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body.d88-page {
  width: 100%;
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  background: var(--d88-bg);
  color: var(--d88-text);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

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

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

.d88-shell {
  width: min(1240px, calc(100% - 32px));
  max-width: 100%;
  margin: 0 auto;
}

.d88-top {
  background: #020406;
  color: #c4ced8;
  font-size: 13px;
  font-weight: 700;
}

.d88-top .d88-shell {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.d88-top-links,
.d88-actions,
.d88-nav {
  display: flex;
  align-items: center;
}

.d88-top-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: #dfffee;
}

.d88-header {
  background: #030609;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.d88-header-main {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.d88-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--d88-radius);
  border: 3px solid #ff2732;
  color: #fff;
  background: linear-gradient(145deg, #0f1720, #030609);
  font-size: 20px;
  font-weight: 950;
  line-height: 1;
}

.d88-brand-title {
  display: block;
  color: #fff;
  font-size: 36px;
  line-height: .92;
  font-weight: 950;
}

.d88-brand-title strong {
  color: #ff2530;
}

.d88-brand-subtitle {
  display: block;
  margin-top: 5px;
  color: #b7c1cb;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.d88-actions {
  margin-left: auto;
  gap: 12px;
}

.d88-btn,
.d88-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--d88-radius);
  font-size: 15px;
  line-height: 1.1;
  font-weight: 900;
  text-align: center;
}

.d88-btn-green {
  background: linear-gradient(180deg, #25ee99, #09bf70);
  color: #03140d;
  box-shadow: 0 14px 30px rgba(22, 230, 140, .24);
}

.d88-action-red {
  background: linear-gradient(180deg, #ff343e, #cf1018);
  color: #fff;
  box-shadow: 0 14px 30px rgba(224, 24, 32, .24);
}

.d88-action-dark,
.d88-btn-dark {
  background: #0a1017;
  color: #fff;
  border-color: rgba(255, 255, 255, .28);
}

.d88-nav-wrap {
  background: linear-gradient(180deg, #e01820, #bb0f17);
}

.d88-nav {
  min-height: 58px;
  flex-wrap: wrap;
  gap: 6px 28px;
  font-size: 15px;
  font-weight: 900;
}

.d88-nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.d88-nav a:hover,
.d88-nav a.is-active {
  color: #fff;
  border-bottom-color: #fff;
}

.d88-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(34, 180, 255, .23), transparent 30%),
    radial-gradient(circle at 56% 88%, rgba(22, 230, 140, .16), transparent 36%),
    linear-gradient(135deg, #061018 0%, #07131c 50%, #03070a 100%);
}

.d88-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 560px);
  gap: 46px;
  align-items: center;
  min-height: 520px;
  padding: 52px 0 34px;
}

.d88-hero-copy {
  min-width: 0;
}

.d88-pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 15px;
  border: 1px solid rgba(22, 230, 140, .55);
  border-radius: var(--d88-radius);
  color: var(--d88-green);
  background: rgba(22, 230, 140, .08);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.d88-hero h1 {
  max-width: 690px;
  margin: 22px 0 0;
  color: #fff;
  font-size: 54px;
  line-height: 1.06;
  font-weight: 950;
}

.d88-hero h1 strong {
  color: var(--d88-green);
  font-weight: 950;
}

.d88-hero p {
  max-width: 620px;
  margin: 18px 0 0;
  color: #d7e0e8;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 600;
}

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

.d88-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 650px;
  margin-top: 34px;
}

.d88-trust-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.d88-trust-icon,
.d88-mini-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(22, 230, 140, .12);
  border: 1px solid rgba(22, 230, 140, .28);
  color: var(--d88-green);
  font-weight: 950;
}

.d88-trust b {
  display: block;
  font-size: 13px;
}

.d88-trust span {
  display: block;
  margin-top: 3px;
  color: var(--d88-muted);
  font-size: 12px;
  font-weight: 650;
}

.d88-hero-visual {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--d88-radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
  box-shadow: var(--d88-shadow);
}

.d88-hero-visual img {
  width: 100%;
  aspect-ratio: 1.16 / 1;
  object-fit: cover;
  border-radius: var(--d88-radius);
}

.d88-section {
  padding: 18px 0;
}

.d88-section-block {
  border: 1px solid var(--d88-line);
  border-radius: var(--d88-radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .025));
  box-shadow: var(--d88-shadow);
}

.d88-intro {
  padding: 30px 58px;
  text-align: center;
}

.d88-intro h2,
.d88-section-title,
.d88-article-card h1 {
  margin: 0;
  color: #fff;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 950;
}

.d88-intro h2 strong,
.d88-section-title strong {
  color: var(--d88-green);
}

.d88-intro p,
.d88-section-copy {
  max-width: 860px;
  margin: 14px auto 0;
  color: #c7d1d9;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 600;
}

.d88-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.d88-stat {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid var(--d88-line);
  border-radius: var(--d88-radius);
  background: rgba(255, 255, 255, .035);
  text-align: left;
}

.d88-stat b {
  display: block;
  color: var(--d88-green);
  font-size: 28px;
  line-height: 1;
  font-weight: 950;
}

.d88-stat span {
  color: var(--d88-muted);
  font-size: 13px;
  font-weight: 750;
}

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

.d88-card,
.d88-guide-card,
.d88-news-card,
.d88-popular,
.d88-article-card,
.d88-side-card {
  border: 1px solid var(--d88-line);
  border-radius: var(--d88-radius);
  background: linear-gradient(180deg, #101820, #0a1118);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
}

.d88-card {
  overflow: hidden;
}

.d88-card img {
  width: 100%;
  height: 164px;
  object-fit: cover;
}

.d88-card-body,
.d88-guide-card,
.d88-popular,
.d88-side-card-body {
  padding: 22px;
}

.d88-card h3,
.d88-guide-card h3,
.d88-news-card h3,
.d88-popular h3,
.d88-side-card h2,
.d88-side-card h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 950;
}

.d88-card p,
.d88-guide-card p,
.d88-news-card p,
.d88-side-card p,
.d88-side-card li {
  margin: 10px 0 0;
  color: #b7c3ce;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 600;
}

.d88-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--d88-green);
  font-size: 14px;
  font-weight: 900;
}

.d88-guide-layout {
  display: grid;
  grid-template-columns: minmax(300px, 500px) minmax(0, 1fr);
  gap: 18px;
}

.d88-steps {
  padding: 28px;
}

.d88-steps h2 {
  color: var(--d88-green);
}

.d88-step-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.d88-step {
  display: grid;
  grid-template-columns: 44px 44px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--d88-line);
  border-radius: var(--d88-radius);
  background: rgba(255, 255, 255, .035);
}

.d88-step-num {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--d88-radius);
  background: linear-gradient(180deg, #24ed99, #0ab96d);
  color: #04130d;
  font-weight: 950;
}

.d88-step b {
  display: block;
  color: #fff;
  font-size: 14px;
}

.d88-step span span {
  display: block;
  margin-top: 3px;
  color: var(--d88-muted);
  font-size: 12px;
  line-height: 1.45;
}

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

.d88-guide-card {
  min-width: 0;
}

.d88-mini-icon {
  margin-bottom: 18px;
  border-radius: var(--d88-radius);
}

.d88-news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
  align-items: start;
}

.d88-news-main {
  min-width: 0;
  padding: 28px;
}

.d88-news-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

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

.d88-news-card {
  min-width: 0;
  overflow: hidden;
}

.d88-news-card img,
.d88-news-thumb {
  width: 100%;
  height: 118px;
  object-fit: cover;
  background: linear-gradient(135deg, #0e1820, #124834);
}

.d88-news-card-body {
  padding: 14px;
}

.d88-news-meta {
  display: block;
  color: var(--d88-green);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.d88-news-card h3 {
  margin-top: 6px;
  font-size: 16px;
}

.d88-news-card p {
  margin-top: 6px;
  font-size: 12px;
}

.d88-popular {
  padding: 28px;
}

.d88-popular ol {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.d88-popular li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--d88-line);
  color: #e8eef4;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 800;
}

.d88-popular li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.d88-popular b {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: var(--d88-radius);
  background: linear-gradient(180deg, #24ed99, #0ab96d);
  color: #04130d;
  font-weight: 950;
}

.d88-cta {
  margin: 18px auto 0;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    radial-gradient(circle at 94% 20%, rgba(22, 230, 140, .22), transparent 32%),
    linear-gradient(135deg, #082019, #071016);
}

.d88-cta h2 {
  margin: 0;
  color: #fff;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 950;
}

.d88-cta p {
  margin: 6px 0 0;
  color: var(--d88-muted);
  font-weight: 650;
}

.d88-footer {
  margin-top: 18px;
  padding: 40px 0 0;
  background: #05090d;
  border-top: 1px solid var(--d88-line);
}

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

.d88-footer .d88-brand-title {
  font-size: 34px;
}

.d88-footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 16px;
  font-weight: 950;
}

.d88-footer p,
.d88-footer li {
  margin: 0;
  color: #aeb9c4;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 600;
}

.d88-footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.d88-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.d88-social span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #10202b;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
}

.d88-footer-bottom {
  margin-top: 34px;
  border-top: 1px solid var(--d88-line);
}

.d88-footer-bottom .d88-shell {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #83919e;
  font-size: 13px;
}

.d88-breadcrumb {
  background: #080d12;
  border-bottom: 1px solid var(--d88-line);
}

.d88-breadcrumb ol {
  min-height: 46px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--d88-muted);
  font-size: 13px;
  font-weight: 750;
}

.d88-breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
}

.d88-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  align-items: start;
  padding: 32px 0 28px;
}

.d88-article-card {
  min-width: 0;
  padding: 32px;
}

.d88-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0 24px;
  color: var(--d88-muted);
  font-size: 13px;
  font-weight: 750;
}

.d88-article-visual {
  margin: 0 0 26px;
  border-radius: var(--d88-radius);
  overflow: hidden;
  background: #061018;
}

.d88-article-visual img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
}

.d88-article-body {
  color: #d8e0e7;
  font-size: 17px;
  line-height: 1.82;
  font-weight: 500;
}

.d88-article-body h2,
.d88-article-body h3 {
  color: #fff;
  line-height: 1.24;
  font-weight: 950;
}

.d88-article-body h2 {
  margin: 30px 0 12px;
  font-size: 28px;
}

.d88-article-body h3 {
  margin: 24px 0 10px;
  font-size: 22px;
}

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

.d88-article-body a {
  color: var(--d88-green);
}

.d88-article-actions {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--d88-line);
}

.d88-article-actions ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.d88-article-actions a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  border-radius: var(--d88-radius);
  background: rgba(22, 230, 140, .12);
  color: var(--d88-green);
  font-weight: 900;
}

.d88-sidebar {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.d88-side-card {
  overflow: hidden;
}

.d88-side-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.d88-side-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

@media (max-width: 1120px) {
  .d88-header-main {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .d88-actions {
    margin-left: auto;
  }

  .d88-nav {
    gap: 4px 18px;
  }

  .d88-article-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .d88-news-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 980px) {
  .d88-hero-grid,
  .d88-guide-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .d88-hero-grid {
    min-height: 0;
  }

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

  .d88-category-grid,
  .d88-stat-row,
  .d88-footer-grid,
  .d88-news-list {
    grid-template-columns: minmax(0, 1fr);
  }

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

@media (max-width: 680px) {
  .d88-shell {
    width: min(100% - 24px, 1240px);
  }

  .d88-top .d88-shell {
    align-items: flex-start;
    flex-direction: column;
    padding: 8px 0;
  }

  .d88-top-links {
    justify-content: flex-start;
    gap: 8px 12px;
  }

  .d88-brand-title {
    font-size: 28px;
  }

  .d88-actions {
    width: 100%;
    margin-left: 0;
  }

  .d88-action {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 10px;
    font-size: 14px;
  }

  .d88-nav {
    padding: 10px 0;
    font-size: 14px;
  }

  .d88-hero-grid {
    padding: 34px 0;
  }

  .d88-hero h1 {
    font-size: 34px;
  }

  .d88-hero p {
    font-size: 16px;
  }

  .d88-trust,
  .d88-guide-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .d88-intro,
  .d88-news-main,
  .d88-steps,
  .d88-article-card,
  .d88-popular {
    padding: 22px;
  }

  .d88-intro h2,
  .d88-section-title,
  .d88-article-card h1 {
    font-size: 28px;
  }

  .d88-news-head,
  .d88-cta,
  .d88-footer-bottom .d88-shell {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .d88-shell {
    width: min(100% - 20px, 1240px);
  }

  .d88-mark {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

  .d88-brand-title {
    font-size: 25px;
  }

  .d88-hero h1 {
    font-size: 30px;
  }

  .d88-btn {
    width: 100%;
  }

  .d88-step {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .d88-step .d88-mini-icon {
    display: none;
  }
}


.d88-step {
  color: inherit;
  text-decoration: none;
}

.d88-step:hover,
.d88-card a:hover,
.d88-guide-card a:hover,
.d88-footer a:hover {
  text-decoration: none;
}

.d88-topic-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 22px;
  padding-left: 22px;
}

.d88-topic-list li {
  margin: 0;
}

.d88-topic-list a,
.d88-footer a {
  color: var(--d88-green);
  font-weight: 900;
}
