:root {
  --main: #037677;
  --main-dark: #025959;
  --main-light: #e4f9f9;
  --secondary: #ffc106;
  --text: #1d2730;
  --muted: #4a5b68;
  --sub: #9ca3af;
  --sep: #e8ecf2;
  --bg2: #f0f3f7;
  --pink: #ea0a8e;
  --good: #7dc242;
  --okay: #fba919;
  --bad: #ef3a37;
  --toc-bg: #e4f9f9;
}

/* PROGRESS BAR */
.dt-progress-bar-track {
  position: sticky;
  top: 0;
  z-index: 199;
  height: 4px;
  background: var(--sep)
}

.dt-progress-bar-fill {
  height: 4px;
  background: #ea0a8e;
  width: 0%;
  transition: width .1s
}

/* NAV */
.dt-site-nav {
  background: var(--main);
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: sticky;
  top: 4px;
  z-index: 198;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .15)
}

.dt-site-nav-logo {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 0;
  text-decoration: none
}

.dt-site-nav-links {
  display: flex;
  gap: 2px;
  margin-left: auto
}

.dt-site-nav-link {
  color: rgba(255, 255, 255, .75);
  font-size: 12px;
  font-weight: 600;
  padding: 12px 12px;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  text-transform: uppercase;
  letter-spacing: .04em
}

.dt-site-nav-link:hover,
.dt-site-nav-link.dt-active {
  color: #fff;
  border-bottom-color: #ffc106;
  text-decoration: none
}

/* PAGE */
.dt-page-wrap {
  max-width: 1060px;
  margin: 0 auto;
  padding: 16px 16px 60px
}

/* BREADCRUMB */
.dt-breadcrumbs-wrapper {
  font-size: 12px;
  color: var(--sub);
  padding: 8px 0 4px
}

.dt-breadcrumbs-wrapper a {
  color: var(--sub)
}

.dt-breadcrumbs-wrapper span {
  margin: 0 5px;
  color: var(--sep)
}

/* META TOP INLINE - confirmed DT class */
.dt-meta-top-inline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px
}

.dt-tested-chip {
  background: var(--main-light);
  border: 1px solid var(--main);
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--main)
}

/* META POPUP - confirmed DT class */
.dt-meta_popup {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 12px
}

.dt-meta_popup button {
  color: var(--muted);
  font-size: 12px;
  font-family: 'Roboto', sans-serif;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline dotted
}

/* DISCLOSURE - confirmed NapLab: font-size:14px, text-align:center */
.dt-disclosure {
  font-size: 14px;
  text-align: center;
  padding: 6px 0;
  margin-bottom: 8px;
  color: var(--muted)
}

.dt-tooltip-button-meta {
  background: transparent;
  padding: 0;
  border: none;
  color: var(--text);
  font-weight: 400 !important;
  text-transform: none !important;
  font-size: 14px !important;
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
  text-decoration: underline dotted
}

/* SAFETY - confirmed DT class */
.dt-safety {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--main);
  margin-bottom: 12px;
  letter-spacing: .02em
}

.dt-page-h1 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin: 8px 0 4px;
  line-height: 1.3
}

/* STATS BAR */
.dt-site-stats-bar {
  display: flex;
  background: var(--main);
  overflow: hidden;
  margin: 12px 0;
  flex-wrap: wrap;
}

.dt-ssb-item {
  flex: 1;
  text-align: center;
  padding: 10px 6px;
  min-width: 120px;
  border-right: 1px solid rgba(255, 255, 255, .15)
}

.dt-ssb-item:last-child {
  border-right: none
}

.dt-ssb-val {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  display: block
}

.dt-ssb-lbl {
  font-size: 10px;
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
  letter-spacing: .05em;
  display: block;
  margin-top: 1px
}

/* GREEN-BOX - confirmed NapLab */
.dt-green-box {
  background: rgba(125, 194, 66, .3);
  border: 1px solid #7dc242;
  margin: 16px 0;
  padding: 20px 35px;
  font-size: 13px
}

/* PINK-BOX - confirmed NapLab */
.dt-pink-box {
  border: 1px solid #ea0a8e;
  margin: 16px 0;
  padding: 20px 35px;
  text-align: center
}

/* JUMP LIST - confirmed: bg:#f5f5f5, border:1px solid #111, radius:0 */
.dt-jump-list {
  background: #f5f5f5;
  border: 1px solid #111;
  padding: 16px 20px;
  margin: 14px 0;
  border-radius: 0
}

.dt-jump-list-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .05em
}

.dt-jump-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px 20px
}

.dt-jump-list-item {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 0;
  border-bottom: 1px dotted var(--sep)
}

.dt-jump-list-item span {
  color: var(--sub);
  font-size: 11px;
  font-weight: 700;
  min-width: 22px;
  flex-shrink: 0
}

/* PINK STAT BLOCK - confirmed: border:1px solid #ea0a8e, padding:20px 10px 0, values 30px */
.dt-pink-stat-block {
  border: 1px solid #ea0a8e;
  padding: 20px 10px 0;
  margin: 14px 0
}

.dt-psb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr)
}

.dt-psb-item {
  text-align: center;
  padding-bottom: 16px
}

.dt-pink-text {
  color: #ea0a8e;
  font-size: 30px;
  font-weight: 700;
  display: block;
  line-height: 1.1;
  text-align: center
}

.dt-psb-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  display: block;
  margin-top: 3px;
  line-height: 1.4
}

/* HOW WE TEST PANEL - confirmed: border:1px solid #ccc */
.dt-how-we-test-panel {
  border: 1px solid #ccc;
  margin: 14px 0;
  overflow: hidden
}

.dt-hwt-tabs {
  display: flex;
  background: var(--bg2);
  border-bottom: 1px solid var(--sep)
}

.dt-hwt-tab {
  padding: 9px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  user-select: none
}

.dt-hwt-tab.dt-active {
  color: var(--main);
  border-bottom-color: var(--main);
  background: #fff
}

.dt-hwt-body {
  padding: 14px 16px;
  display: none;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65
}

.dt-hwt-body.dt-active {
  display: block
}

.dt-hwt-score-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  border-bottom: 1px solid var(--sep)
}

.dt-hwt-score-row:last-child {
  border-bottom: none
}

.dt-hwt-label {
  min-width: 160px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text)
}

.dt-hwt-bar {
  flex: 1;
  height: 5px;
  background: var(--bg2);
  overflow: hidden
}

.dt-hwt-bar-fill {
  height: 5px;
  background: var(--main)
}

.dt-hwt-weight {
  font-size: 11px;
  color: var(--sub);
  min-width: 32px;
  text-align: right
}

.dt-testing-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 10px 0
}

.dt-team-card {
  border: 1px solid var(--sep);
  padding: 10px;
  text-align: center;
  background: #fff
}

.dt-team-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--main);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 5px
}

.dt-team-name {
  font-size: 12px;
  font-weight: 700;
  display: block
}

.dt-team-role {
  font-size: 10px;
  color: var(--sub);
  display: block
}

/* =====================================================
   POKATHEME REVIEW BOX - EXACT CONFIRMED LIVE CSS
   All values from getComputedStyle() on live site
===================================================== */
/* review-box: bg:rgb(250,255,255), border:1px solid rgb(0,190,193) */
.dt-review-box {
  background: rgb(250, 255, 255);
  border: 1px solid rgb(0, 190, 193);
  position: relative
}

/* review-box-wrap: display:flex, bg:rgb(250,255,255), border-radius:8px */
.dt-review-box-wrap {
  display: flex;
  background: rgb(250, 255, 255);
  border-radius: 8px;
  flex-wrap: wrap;
}

/* review-box-thumb: flex col, width:150px, border-radius:8px */
.dt-review-box-thumb {
  display: flex;
  flex-direction: column;
  flex: 0 0 150px;
  width: 150px;
  min-width: 150px;
  border-radius: 8px 0 0 8px;
  overflow: hidden
}

/* cas_logo: width:150px */
.dt-cas_logo {
  display: block;
  width: 150px
}

/* review-logo: display:flex, bg:rgb(218,247,247) */
.dt-review-logo {
  display: flex;
  background: rgb(218, 247, 247);
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 86px;
  overflow: hidden;
  text-decoration: none
}

.dt-review-logo img {
  width: 110px;
  height: auto;
  display: block
}

.dt-review-logo-ph {
  width: 110px;
  height: 50px;
  background: var(--bg2);
  border: 1px solid var(--sep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--sub);
  font-weight: 700;
  border-radius: 3px;
  text-align: center;
  padding: 4px
}

/* cas_score: display:block, padding:0 12px */
.dt-cas_score {
  display: block;
  padding: 0 12px
}

/* dash_score pill (b is display:none in live, we show pill) */
.dt-dash_score_pill {
  background: #037677;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 4px 10px;
  margin: 10px 0 0;
  text-align: center;
  line-height: 1.1
}

.dt-dash_score_pill small {
  font-size: 10px;
  display: block;
  font-weight: 400;
  opacity: .8;
  text-transform: uppercase;
  letter-spacing: .05em
}

.dt-dash_score_pill.dt-amber {
  background: var(--okay)
}

/* cas_score details */
.dt-cas_score details {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--muted)
}

.dt-cas_score details summary {
  cursor: pointer;
  font-size: 11px;
  color: var(--main);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px
}

.dt-cas_score details summary::-webkit-details-marker {
  display: none
}

.dt-more_score {
  padding: 4px 0
}

.dt-more_score>div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  padding: 2px 0;
  font-size: 11px;
  color: var(--muted);
  border-bottom: 1px solid var(--sep)
}

.dt-more_score>div:last-child {
  border-bottom: none
}

.dt-more_score>div span:first-child {
  flex: 1
}

.dt-more_score>div meter {
  width: 45px;
  height: 6px;
  accent-color: var(--main)
}

.dt-more_score>div b {
  font-size: 11px;
  font-weight: 700;
  min-width: 24px;
  text-align: right
}

/* score-row-small: padding:3px, font-size:.8em */
.dt-score-row-small {
  padding: 3px;
  font-size: .8em;
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid var(--sep)
}

.dt-score-row-small:last-child {
  border-bottom: none
}

/* score-box-small: width:40px */
.dt-score-box-small {
  color: #fff;
  padding: 3px 0;
  font-weight: 700;
  display: inline-block;
  width: 34px;
  text-align: center;
  font-size: 11px;
  flex-shrink: 0
}

.dt-good-score {
  background: #7dc242
}

.dt-okay-score {
  background: #fba919
}

.dt-bad-score {
  background: #ef3a37
}

/* cas_popul: font-size:12px, color:rgb(74,91,104), padding:5px 0 0 */
.dt-cas_popul {
  font-size: 12px;
  color: rgb(74, 91, 104);
  padding: 5px 12px 12px;
  display: block
}

.dt-aggredated {
  font-size: 12px;
  color: rgb(74, 91, 104)
}

/* review-box-info: display:block, padding:30px, color:rgb(74,91,104) */
.dt-review-box-info {
  display: block;
  flex: 1 1 0%;
  padding: 30px;
  color: rgb(74, 91, 104)
}

/* review-box-meta: display:flex, padding:0 0 15px, margin:0 0 25px */
.dt-review-box-meta {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0 0 15px;
  margin: 0 0 25px;
  border-bottom: 1px solid var(--sep);
  gap: 8px
}

/* review-box-name: font-size:17.6px, font-weight:700, color:rgb(23,71,71) */
.dt-review-box-name {
  font-size: 17.6px;
  font-weight: 700;
  color: rgb(23, 71, 71);
  margin: 0 24px 0 0;
  display: block
}

/* bonus_meta: display:grid, margin:0 0 20px */
.dt-bonus_meta {
  display: grid;
  margin: 0 0 5px;
  gap: 6px
}

.dt-bonus_ {
  color: rgb(74, 91, 104)
}

/* bonus_fs_: font-size:22.4px */
.dt-bonus_fs_ {
  display: block;
  font-size: 22.4px;
  line-height: 1.2;
  color: #000;
  margin-bottom: 2px !important;
}

/* bonus_txt_: font-size:22.4px, font-weight:700 */
.dt-bonus_txt_ {
  display: inline;
  font-size: 22.4px;
  font-weight: 700;
  color: #000
}

/* free_spins_on_: font-size:13px, padding:1px 4px 4px */
.dt-free_spins_on_ {
  display: block;
  font-size: 13px;
  padding: 1px 4px 4px;
  color: rgb(29, 39, 48)
}

/* tooltip_block */
.dt-tooltip_block {
  display: inline-block;
  vertical-align: middle;
  position: relative
}

.dt-tooltip {
  display: inline-block;
  position: relative
}

.dt-tooltip-label {
  font-size: 11px;
  color: var(--main);
  cursor: pointer;
  text-decoration: underline dotted;
  margin-left: 8px
}

.dt-tooltip-text {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--sep);
  padding: 8px;
  font-size: 11px;
  z-index: 100;
  width: 220px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
  line-height: 1.5;
  color: var(--muted)
}

.dt-tooltip:hover .dt-tooltip-text {
  display: block
}

/* review-extra-links-item: font-size:14.4px, color:rgb(74,91,104), padding:0 8px */
.dt-review-extra-links-item {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14.4px;
  color: rgb(74, 91, 104);
  padding: 0 8px;
  margin-bottom: 8px
}

.dt-wagering_,
.dt-payout_time_,
.dt-minimum_deposit_,
.dt-pokies_games_,
.dt-paying_rate_ {
  display: block;
  color: rgb(74, 91, 104);
  font-size: 14.4px
}

.dt-wagering_ span,
.dt-payout_time_ span,
.dt-minimum_deposit_ span,
.dt-pokies_games_ span,
.dt-paying_rate_ span {
  font-weight: 700;
  color: var(--text);
  margin-left: 4px
}

/* dep_option_: padding:15px 0 0 */
.dt-dep_option_ {
  display: block;
  padding: 15px 0 0;
  color: rgb(74, 91, 104);
  font-size: 16px
}

.dt-dep_option_ strong {
  color: rgb(74, 91, 104);
  font-size: 16px
}

.dt-dep_crop {
  display: inline-block;
  font-size: 14px;
  margin-top: 2px;
  color: rgb(74, 91, 104);
  margin-left: 5px
}

/* More details */
.dt-review-box-info>details {
  margin-top: 12px;
  font-size: 13px
}

.dt-review-box-info>details>summary {
  cursor: pointer;
  color: var(--main);
  font-size: 13px;
  font-weight: 700;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 0
}

.dt-review-box-info>details>summary::-webkit-details-marker {
  display: none
}

.dt-review-box-info>details>summary::after {
  content: "▾";
  font-size: 10px
}

.dt-review-box-info>details[open]>summary::after {
  content: "▴"
}

.dt-more_sec {
  padding: 10px 0 0
}

/* review-pros-cons: display:grid, 1fr 1fr, border-radius:6.4px */
.dt-review-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px
}

/* _pros: bg:rgb(228,249,249), padding:8px, border-radius:6px */
.dt-_pros {
  display: block;
  background: rgb(228, 249, 249);
  padding: 8px;
  border-radius: 6px;
  margin-bottom: 8px
}

.dt-_pros strong {
  color: var(--main);
  font-size: 12px;
  display: block;
  margin-bottom: 4px
}

.dt-pro-line {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
  line-height: 1.4
}

.dt-pro-line span {
  color: #fff;
  background: #7dc242;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 1px
}

/* _cons: bg:rgb(249,229,228), padding:8px, border-radius:6px */
.dt-_cons {
  display: block;
  background: rgb(249, 229, 228);
  padding: 8px;
  border-radius: 6px
}

.dt-_cons strong {
  color: var(--bad);
  font-size: 12px;
  display: block;
  margin-bottom: 4px
}

.dt-con-line {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
  line-height: 1.4
}

.dt-con-line span {
  color: #fff;
  background: #ef3a37;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 1px
}

details summary {
  cursor: pointer;
  list-style: none;
  font-size: 11px;
  font-weight: 700;
  color: var(--main);
  text-transform: uppercase;
  letter-spacing: .03em;
  display: flex;
  align-items: center;
  gap: 5px;
  user-select: none;
}

details summary::-webkit-details-marker {
  display: none;
}

details summary::after {
  content: " \25BE";
  font-size: 12px;
  transition: transform 0.2s;
}

details[open] summary::after {
  transform: rotate(180deg);
}

.dt-r_game_ {
  background: #f8fcfc;
  border: 1px solid var(--sep);
  border-left: 3px solid var(--main);
  border-radius: 4px;
  padding: 12px;
  margin-bottom: 10px;
}

.dt-r_game_ p {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 8px;
}

.dt-r_game_ p:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.dt-r_game_ strong {
  color: var(--text);
  min-width: 65px;
}

.dt-more_table {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px
}

.dt-more_table strong {
  display: block;
  color: var(--text);
  margin-bottom: 2px;
  font-size: 12px
}

.dt-prov_crop,
.dt-payout_crop {
  font-size: 12px;
  color: var(--muted)
}

.dt-trust_badge {
  font-size: 12px;
  color: var(--muted);
  background: var(--bg2);
  border: 1px solid var(--sep);
  padding: 8px;
  margin-top: 8px;
  line-height: 1.5
}

/* bonus_code_: bg:rgb(218,247,247), padding:2px 30px 2px 10px, border-radius:4px */
.dt-bonus_code_ {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgb(218, 247, 247);
  padding: 2px 30px 2px 10px;
  border-radius: 4px;
  font-size: 13px;
  color: rgb(74, 91, 104);
  margin-top: 8px
}

/* link_code: bg:rgb(3,118,119), color:#fff, font-weight:700 */
.dt-link_code {
  display: flex;
  background: rgb(3, 118, 119);
  color: #fff;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px
}

/* review-box-actions: padding:47px 30px, flex:0 1 32%, width:230px */
.dt-review-box-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 30px 20px;
  flex: 0 0 230px;
  width: 230px;
  min-width: 180px;
  border-radius: 0 8px 8px 0;
  border-left: 1px solid var(--sep);
  justify-content: center
}

/* secure: font-size:13.6px, color:rgb(74,91,104) */
.dt-secure {
  display: block;
  font-size: 13.6px;
  color: rgb(74, 91, 104);
  text-align: center;
  width: 100%
}

.dt-secure a {
  color: var(--main);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px
}

/* wp-element-button: bg:rgb(209,46,46), font-size:20px, padding:12px 20px, border-radius:0 */
.dt-wp-block-buttons {
  width: 100%
}

.dt-wp-block-button {
  width: 100%;
  text-align: center
}

.dt-wp-element-button,
.dt-wp-block-button__link {
  display: block;
  background: rgb(209, 46, 46);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 0;
  text-align: center;
  text-decoration: none !important;
  font-family: 'Roboto', sans-serif;
  width: 100%
}

.dt-wp-element-button:hover,
.dt-wp-block-button__link:hover {
  background: #b32828;
  color: #fff;
  text-decoration: none
}

/* review-extra-links: display:flex, margin:16px 0 0 */
.dt-review-extra-links {
  display: flex;
  margin: 16px 0 0;
  justify-content: center;
  width: 100%
}

.dt-review-extra-links a {
  font-size: 14px;
  color: var(--main);
  text-align: center;
  font-weight: bold;
  text-decoration: underline
}

.dt-vizited {
  font-size: 11px;
  color: var(--sub);
  text-align: center;
  margin-top: 4px;
  width: 100%
}

/* RANK LABEL */
.dt-rank-entry {
  position: relative
}

.dt-rank-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--main);
  padding: 16px 0 8px;
  border-top: 2px solid var(--main);
  display: flex;
  align-items: center;
  gap: 8px
}

.dt-rank-label-num {
  background: var(--main);
  color: #fff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0
}

/* label-callout-green2 confirmed NapLab */
.dt-label-callout-green2 {
  position: absolute;
  top: 0;
  left: 0;
  margin: -55px -55px -55px -35px;
  padding: 6px 16px 8px 14px;
  color: #fff;
  background: #7dc242;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, .14);
  font-size: 12px;
  font-weight: 700;
  z-index: 10
}

/* PANEL TRIGGER */
.dt-panel-trigger {
  background: var(--bg2);
  border: 1px solid var(--sep);
  border-top: none;
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  flex-wrap: wrap;
}

.dt-panel-trigger-btn {
  flex: 1;
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Roboto', sans-serif
}

.dt-panel-trigger-btn:hover {
  color: var(--main)
}

.dt-panel-trigger-btn .dt-pt-arrow {
  font-size: 9px;
  transition: transform .2s
}

.dt-panel-trigger-btn.dt-open .dt-pt-arrow {
  transform: rotate(180deg)
}

.dt-panel-trigger-score {
  padding: 7px 14px;
  font-size: 11px;
  color: var(--sub);
  display: flex;
  align-items: center;
  gap: 4px;
  border-left: 1px solid var(--sep)
}

/* REVIEW PANEL */
.dt-review-panel {
  border: 1px solid var(--sep);
  border-top: none;
  background: #fff;
  display: none
}

.dt-review-panel.dt-open {
  display: block
}

.dt-rp-tabs {
  display: flex;
  border-bottom: 2px solid var(--sep);
  background: var(--bg2)
}

.dt-rp-tab {
  padding: 9px 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  text-transform: uppercase;
  letter-spacing: .04em;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 4px
}

.dt-rp-tab.dt-active {
  color: var(--main);
  border-bottom-color: var(--main);
  background: #fff
}

.dt-rp-body {
  display: none;
  padding: 14px 16px
}

.dt-rp-body.dt-active {
  display: block
}

/* NAPLAB SCORE SYSTEM - all values confirmed from live NapLab DOM */
.dt-score-box {
  color: #fff;
  padding: 5px 0;
  font-weight: 700;
  display: inline-block;
  width: 62px;
  text-align: center;
  border-radius: 0;
  font-size: 14px;
  flex-shrink: 0
}

.dt-score-row {
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--sep)
}

.dt-score-row:last-child {
  border-bottom: none
}

.dt-score-row-label {
  flex: 1;
  font-size: 12px;
  color: var(--muted)
}

.dt-score-row-avg {
  font-size: 10px;
  color: var(--sub);
  white-space: nowrap
}

/* heading-score confirmed: padding:5px 10px, font-weight:bold */
.dt-heading-score {
  padding: 5px 10px;
  text-align: center;
  font-weight: 700;
  margin-right: 6px;
  font-size: 12px;
  flex-shrink: 0
}

.dt-heading-good {
  border: 2px solid #7dc242;
  color: #7dc242
}

.dt-heading-okay {
  border: 2px solid #fba919;
  color: #fba919
}

.dt-heading-bad {
  border: 2px solid #ef3a37;
  color: #ef3a37
}

/* inline-header confirmed: display:inline */
.dt-inline-header {
  display: inline;
  font-size: 13px;
  font-weight: 700;
  color: var(--text)
}

.dt-rp-overall-block {
  border: 1px solid #ccc;
  margin-bottom: 12px
}

.dt-rp-overall-banner {
  background: #037677;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 2px 16px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.dt-rp-overall-banner a {
  color: rgba(255, 255, 255, .9);
  font-size: 12px;
  text-decoration: underline
}

.dt-rp-score-rows {
  padding: 4px 10px
}

.dt-tested-with-row {
  padding: 6px 0;
  font-size: 11px;
  color: var(--sub);
  border-top: 1px solid var(--sep);
  border-bottom: 1px solid var(--sep);
  margin-bottom: 10px
}

.dt-tested-with-row a {
  color: var(--main);
  font-size: 11px
}

.dt-qs-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  border: 1px solid var(--sep);
  margin-bottom: 10px
}

.dt-qs-item {
  padding: 7px 4px;
  text-align: center;
  border-right: 1px solid var(--sep)
}

.dt-qs-item:last-child {
  border-right: none
}

.dt-qs-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--main);
  display: block
}

.dt-qs-lbl {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--sub);
  display: block;
  margin-top: 1px
}

/* verdict-summary: border-left:5px solid #e5e5e5; padding-left:15px confirmed */
.dt-verdict-summary {
  border-left: 5px solid #e5e5e5;
  padding-left: 14px;
  margin: 10px 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65
}

.dt-data-callout {
  border-left: 3px solid #ea0a8e;
  padding: 8px 12px;
  background: rgba(234, 10, 142, .04);
  margin: 8px 0;
  font-size: 12px;
  color: var(--text)
}

.dt-data-callout strong {
  color: #ea0a8e
}

.dt-key-finding {
  border-left: 4px solid #ea0a8e;
  padding: 8px 12px;
  margin: 10px 0;
  background: rgba(234, 10, 142, .04)
}

.dt-kf-stat {
  font-size: 24px;
  font-weight: 700;
  color: #ea0a8e;
  line-height: 1;
  margin-bottom: 2px
}

.dt-kf-label {
  font-size: 11px;
  color: var(--muted)
}

.dt-kf-context {
  font-size: 10px;
  color: var(--sub);
  margin-top: 3px
}

.dt-how-different {
  border: 1px solid var(--sep);
  overflow: hidden;
  margin: 10px 0
}

.dt-hd-head {
  background: var(--bg2);
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid var(--sep)
}

.dt-hd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr
}

.dt-hd-col {
  padding: 10px 12px;
  border-right: 1px solid var(--sep)
}

.dt-hd-col:last-child {
  border-right: none
}

.dt-hd-col-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 6px
}

.dt-hd-col-label.dt-adv {
  color: #7dc242
}

.dt-hd-col-label.dt-neu {
  color: var(--sub)
}

.dt-hd-col-label.dt-dis {
  color: #fba919
}

ul.custom-bullet {
  list-style: none;
  margin: 0 0 0 1.2em;
  padding: 0
}

ul.custom-bullet>li {
  clear: left;
  margin-bottom: 4px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5
}

ul.custom-bullet>li::before {
  content: "";
  height: 1.6em;
  width: .9em;
  display: block;
  float: left;
  margin-left: -1.2em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 90%
}

ul.green-pro>li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%237dc242' d='M7.629 14.571L3.43 10.373l-1.43 1.428 5.629 5.629 12-12-1.428-1.43z'/%3E%3C/svg%3E")
}

ul.orange-con>li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23fba919' d='M14.348 14.849a1.2 1.2 0 0 1-1.697 0L10 11.819l-2.651 3.029a1.2 1.2 0 1 1-1.697-1.697l2.758-3.15-2.759-3.152a1.2 1.2 0 1 1 1.697-1.697L10 8.183l2.651-3.031a1.2 1.2 0 1 1 1.697 1.697l-2.758 3.152 2.758 3.15a1.2 1.2 0 0 1 0 1.698z'/%3E%3C/svg%3E")
}

ul.grey-bullet>li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='5' fill='%23888'/%3E%3C/svg%3E")
}

.dt-verdict-box {
  background: #fffae1;
  border: 1px solid var(--sep);
  padding: 10px;
  margin: 10px 0
}

.dt-verdict-byline {
  font-size: 10px;
  color: var(--sub);
  margin-top: 7px;
  padding-top: 7px;
  border-top: 1px solid var(--sep);
  display: flex;
  align-items: center;
  gap: 7px
}

.dt-verdict-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--main);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.dt-entry-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 10px
}

.dt-chip {
  background: var(--bg2);
  border: 1px solid var(--sep);
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--text)
}

.dt-chip-label {
  color: var(--sub);
  font-size: 10px
}

.dt-ab-good {
  background: rgba(125, 194, 66, .15);
  border: 1px solid #7dc242;
  color: #1a7a4a;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 3px;
  display: inline-block;
  margin: 0 4px 4px 0
}

.dt-ab-warn {
  background: rgba(251, 169, 25, .15);
  border: 1px solid #fba919;
  color: #a05e10;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 3px;
  display: inline-block;
  margin: 0 4px 4px 0
}

.dt-proof-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 5px;
  margin: 8px 0
}

.dt-proof-thumb {
  background: #1a2535;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid transparent;
  gap: 5px;
  position: relative;
  overflow: hidden;
}

.dt-proof-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  transition: opacity 0.2s
}

.dt-proof-thumb:hover img {
  opacity: 0.8
}

.dt-proof-thumb:hover {
  border-color: var(--main)
}

.dt-proof-caption {
  font-size: 9px;
  color: rgba(255, 255, 255, .9);
  text-transform: uppercase;
  letter-spacing: .04em;
  text-align: center;
  padding: 0 4px;
  z-index: 2;
  line-height: 1.2;
  font-weight: bold;
  text-shadow: 1px 1px 2px #000;
}

.dt-company-table {
  border: 1px solid var(--sep);
  margin: 8px 0;
  overflow: hidden
}

.dt-ct-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  border-bottom: 1px solid var(--sep)
}

.dt-ct-row:last-child {
  border-bottom: none
}

.dt-ct-row:nth-child(even) {
  background: var(--bg2)
}

.dt-ct-key {
  padding: 6px 10px;
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  border-right: 1px solid var(--sep)
}

.dt-ct-val {
  padding: 6px 10px;
  font-size: 11px;
  color: var(--text)
}

.dt-ltag {
  display: inline-block;
  padding: 1px 7px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  margin-right: 4px
}

.dt-ltag-mga {
  background: #1a56d6
}

.dt-ltag-ecogra {
  background: #1a7a4a
}

.dt-ltag-ukgc {
  background: #004c8c
}

.dt-rp-section-head {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--sub);
  padding: 8px 0 5px;
  border-bottom: 1px solid var(--sep);
  margin: 14px 0 10px
}

.dt-rp-section-head:first-child {
  margin-top: 0
}

/* Testing data */
.dt-perf-table-wrap {
  border: 1px solid var(--sep);
  overflow: hidden;
  margin-bottom: 12px
}

.dt-perf-table-head {
  background: var(--main);
  padding: 7px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4px;
}

.dt-perf-table-head h4 {
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  margin: 0px !important;
}

.dt-perf-table-head span {
  color: rgba(255, 255, 255, .9);
  font-size: 10px
}

.dt-perf-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px
}

.dt-perf-table th {
  background: var(--bg2);
  padding: 5px 8px;
  text-align: left;
  font-weight: 700;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--sep)
}

.dt-perf-table td {
  padding: 5px 8px;
  border-bottom: 1px solid var(--sep)
}

.dt-perf-table tr:last-child td {
  border-bottom: none
}

.dt-perf-table tr:nth-child(even) td {
  background: var(--bg2)
}

.dt-perf-table td:first-child {
  color: var(--muted);
  font-weight: 500
}

.dt-perf-table td:nth-child(2) {
  font-weight: 700
}

.dt-perf-table td:nth-child(3) {
  color: var(--sub);
  font-style: italic
}

.dt-perf-row-winner td:nth-child(2) {
  color: #1a7a4a
}

.dt-perf-section-header td {
  background: var(--main-light) !important;
  font-weight: 700 !important;
  color: var(--main) !important;
  font-size: 10px !important;
  text-transform: uppercase;
  letter-spacing: .04em
}

.dt-test-section {
  border: 1px solid var(--sep);
  overflow: hidden;
  margin-bottom: 10px
}

.dt-test-section-head {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: var(--bg2);
  border-bottom: 1px solid var(--sep)
}

.dt-test-section-body {
  padding: 12px
}

.dt-test-section-body p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 8px
}

/* stat-boxes: border:1px solid rgb(204,204,204) confirmed */
.dt-stat-boxes {
  display: flex;
  gap: 1px;
  background: rgb(204, 204, 204);
  border: 1px solid rgb(204, 204, 204);
  margin: 8px 0;
  overflow: hidden;
  flex-wrap: wrap;
}

.dt-stat-box {
  flex: 1 1 100px;
  background: #fff;
  padding: 10px 6px;
  text-align: center
}

.dt-stat-box-label {
  font-size: 11px;
  font-weight: 700;
  display: block;
  margin-bottom: 3px;
  color: var(--muted)
}

.dt-stat-box-sub {
  font-size: 9px;
  color: var(--sub);
  display: block;
  margin-top: 2px
}

/* before-after: grid 1fr 1fr confirmed */
.dt-before-after {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 6px;
  margin: 8px 0
}

.dt-ba-item {
  background: #1a2535;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  position: relative;
  cursor: pointer;
  border: 2px solid transparent;
  overflow: hidden;
}

.dt-ba-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  transition: opacity 0.2s;
}

.dt-ba-item:hover img {
  opacity: 0.8;
}

.dt-ba-item:hover {
  border-color: var(--main)
}

.dt-ba-icon {
  font-size: 20px;
  opacity: .25;
  color: #fff
}

.dt-ba-caption {
  font-size: 9px;
  color: rgba(255, 255, 255, .25);
  text-align: center;
  padding: 0 6px;
  text-transform: uppercase;
  letter-spacing: .04em
}

.dt-ba-label {
  position: absolute;
  bottom: 5px;
  left: 5px;
  background: rgba(3, 118, 119, .9);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 20px
}

.dt-ba-legend {
  font-size: 10px;
  color: var(--sub);
  line-height: 1.5;
  margin-top: 3px;
  padding: 5px 0;
  border-top: 1px solid var(--sep)
}

.dt-sub-factor-table {
  border: 1px solid var(--sep);
  overflow: hidden;
  margin: 8px 0
}

.dt-sft {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px
}

.dt-sft th {
  background: var(--bg2);
  padding: 5px 8px;
  text-align: left;
  font-weight: 700;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--sep)
}

.dt-sft td {
  padding: 5px 8px;
  border-bottom: 1px solid var(--sep)
}

.dt-sft tr:last-child td {
  border-bottom: none
}

.dt-sft tr:nth-child(even) td {
  background: var(--bg2)
}

.dt-sft-good {
  color: #1a7a4a;
  font-weight: 700
}

.dt-sft-okay {
  color: #d97706;
  font-weight: 700
}

.dt-sft-weight {
  color: var(--sub);
  font-size: 10px
}

/* Details tab */
.dt-gen-table-wrap {
  border: 1px solid var(--sep);
  overflow: hidden;
  margin: 8px 0
}

.dt-gen-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px
}

.dt-gen-table th {
  background: var(--main);
  color: #fff;
  padding: 6px 10px;
  text-align: left;
  font-weight: 700;
  font-size: 10px
}

.dt-gen-table td {
  padding: 6px 10px;
  border-bottom: 1px solid var(--sep)
}

.dt-gen-table tr:last-child td {
  border-bottom: none
}

.dt-gen-table tr:nth-child(even) td {
  background: var(--bg2)
}

.dt-gen-table td:first-child {
  font-weight: 600;
  color: var(--muted)
}

.dt-df-yes {
  color: #1a7a4a;
  font-weight: 700
}

.dt-df-no {
  color: #ef3a37;
  font-weight: 700
}

.dt-evo-timeline {
  margin: 8px 0
}

.dt-evo-entry {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 8px;
  margin-bottom: 7px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--sep)
}

.dt-evo-entry:last-child {
  border-bottom: none
}

.dt-evo-date {
  font-size: 10px;
  font-weight: 700;
  color: #ea0a8e;
  padding-top: 1px
}

.dt-evo-desc {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5
}

.dt-update-count-badge {
  background: #ea0a8e;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 20px;
  margin-left: 5px;
  vertical-align: middle
}

/* aggredated_data: confirmed DT class */
.dt-aggredated_data {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding: 8px 0;
  font-size: 12px;
  color: var(--muted)
}

.dt-aggredated_data>div {
  display: flex;
  align-items: center;
  gap: 5px
}

.dt-sticky-cta-bar {
  background: #fff;
  border-top: 2px solid var(--sep);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  position: sticky;
  bottom: 0;
  z-index: 40
}

.dt-scb-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text)
}

.dt-scb-score {
  background: #7dc242;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 7px
}

.dt-scb-right {
  display: flex;
  align-items: center;
  gap: 6px
}

.dt-scb-play {
  background: rgb(209, 46, 46);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
  font-family: 'Roboto', sans-serif
}

.dt-scb-play:hover {
  background: #b32828;
  color: #fff;
  text-decoration: none
}

.dt-in-this-review {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 2
}

.dt-in-this-review a {
  color: var(--main);
  margin: 0 3px;
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline
}

.dt-in-this-review a::after {
  content: " |";
  color: var(--sub);
  margin-left: 2px;
  display: inline-block;
  text-decoration: none
}

.dt-in-this-review a:last-child::after {
  content: ""
}

body .dt-wp-block-button__link,
.dt-secure a,
.dt-review-extra-links a,
.dt-scb-right .dt-scb-play {
  text-decoration: none !important;
}



/* RESPONSIVE ADDITIONS FOR MOBILE */
@media screen and (max-width:768px) {
  .dt-review-box-wrap {
    flex-direction: column
  }

  .dt-review-box-thumb {
    width: 100%;
    flex-direction: row;
    align-items: center;
    background: rgb(218, 247, 247);
    border-radius: 8px 8px 0 0;
  }

  .dt-cas_logo {
    width: auto;
  }

  .dt-review-logo {
    width: auto;
    padding: 10px 15px;
  }

  .dt-cas_score {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
  }

  .dt-cas_score details {
    flex: 1 1 100%;
    margin: 5px 0 10px;
    background: rgba(3, 118, 119, 0.05);
    padding: 8px;
    border-radius: 6px;
  }

  .dt-score-row-small {
    border: 1px solid var(--sep);
    background: #fff;
    border-radius: 4px;
    padding: 2px 8px 2px 2px;
    flex: 1 1 auto;
    justify-content: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  }

  .dt-score-box-small {
    border-radius: 3px;
    font-size: 10px;
    padding: 2px 5px;
  }

  .dt-score-box-small {
    border-radius: 2px;
  }

  .dt-cas_popul {
    display: none;
  }

  .dt-review-box-info {
    padding: 15px;
  }

  .dt-review-box-actions {
    width: 100%;
    border-left: none;
    border-top: 1px solid var(--sep);
    border-radius: 0 0 8px 8px;
    padding: 20px 15px;
  }

  .dt-review-extra-links-item {
    gap: 4px;
  }

  .dt-bonus_fs_ {
    font-size: 18px;
  }

  .dt-bonus_txt_ {
    font-size: 18px;
  }

  .dt-review-pros-cons {
    grid-template-columns: 1fr;
  }

  .dt-panel-trigger {
    flex-direction: column;
  }
}

/* add other */
/* OTHER CASINOS: border:4px solid #e5e5e5, radius:0 confirmed */
.dt-other-consider-card {
  border: 4px solid #e5e5e5;
  margin-bottom: 10px;
  border-radius: 0
}

.dt-occ-use-case {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 8px 12px 0
}

.dt-occ-body {
  display: grid;
  grid-template-columns: 110px 1fr
}

.dt-occ-img {
  background: #1a2535;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px
}

.dt-occ-info {
  padding: 8px 12px
}

.dt-occ-name {
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin-bottom: 2px
}

.dt-occ-tagline {
  font-size: 11px;
  font-weight: 600;
  color: #ea0a8e;
  margin-bottom: 5px;
  display: block
}

.dt-occ-desc {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 8px
}

.dt-occ-btns {
  display: flex;
  gap: 8px;
  align-items: center
}

/* btn-check-price: bg:#ef3a37 confirmed */
.dt-btn-check-price {
  background: #ef3a37;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  text-decoration: none;
  font-family: 'Roboto', sans-serif
}

.dt-btn-check-price:hover {
  background: #c73030;
  color: #fff;
  text-decoration: none
}

/* btn-read-review: color:#ea0a8e confirmed */
.dt-btn-read-review {
  color: #ea0a8e;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dotted #ea0a8e
}

/* BOTTOM */
.dt-section-sub {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 14px
}

.dt-bg-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px
}

.dt-bg-step {
  border: 1px solid var(--sep);
  padding: 12px;
  background: #fff
}

.dt-bg-step-num {
  background: var(--main);
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px
}

.dt-bg-step-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px
}

.dt-bg-step-body {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55
}

.dt-bbc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 12px 0
}

.dt-bbc-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
  margin-bottom: 6px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--main)
}

.dt-bbc-link {
  display: block;
  font-size: 12px;
  color: var(--main);
  padding: 3px 0;
  border-bottom: 1px dotted var(--sep)
}

.dt-still-need-help {
  background: var(--main);
  color: #fff;
  padding: 20px;
  text-align: center;
  margin: 20px 0
}

.dt-snh-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px
}

.dt-snh-body {
  font-size: 13px;
  opacity: .85;
  margin-bottom: 14px;
  line-height: 1.55
}

.dt-snh-btns {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap
}

.dt-snh-btn {
  background: #fff;
  color: var(--main);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 20px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: 'Roboto', sans-serif
}

.dt-snh-btn.dt-sec {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .6)
}

.dt-bottom-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 2px solid var(--sep);
  box-shadow: 0 -4px 14px rgba(0, 0, 0, .1);
  z-index: 400;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transform: translateY(100%);
  transition: transform .35s ease;
  border-radius: 10px 10px 0 0;
}

.dt-bottom-cta-bar.dt-visible {
  transform: translateY(0)
}

.dt-bcb-text {
  font-size: 13px;
  color: var(--muted)
}

.dt-bcb-text strong {
  color: var(--text)
}

.dt-bcb-btn {
  background: #ea0a8e;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  text-decoration: none;
  white-space: nowrap
}

.dt-bcb-close {
  background: transparent;
  border: none;
  color: var(--sub);
  font-size: 16px;
  cursor: pointer;
  padding: 0 0 0 6px
}