    :root {
      --thebigdoghouse-red: #d8482f;
      --thebigdoghouse-red-dark: #9f2617;
      --thebigdoghouse-yellow: #f5b534;
      --thebigdoghouse-cream: #fff9ea;
      --thebigdoghouse-blue: #4db3dc;
      --thebigdoghouse-blue-dark: #1e5d7e;
      --thebigdoghouse-green: #8bc34a;
      --thebigdoghouse-ink: #2d1d12;
      --thebigdoghouse-brown: #6b4027;
      --thebigdoghouse-white: #ffffff;
      --thebigdoghouse-shadow: 0 18px 40px rgba(94, 41, 17, 0.16);
      --thebigdoghouse-radius: 24px;
      --thebigdoghouse-max: 1180px;
      --thebigdoghouse-title: Georgia, "Times New Roman", serif;
      --thebigdoghouse-body: "Trebuchet MS", Verdana, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: var(--thebigdoghouse-body);
      color: var(--thebigdoghouse-ink);
      line-height: 1.7;
      background:
        radial-gradient(circle at top left, rgba(245, 181, 52, 0.38), transparent 28%),
        radial-gradient(circle at top right, rgba(77, 179, 220, 0.28), transparent 22%),
        linear-gradient(180deg, #f4fbff 0%, #fff8eb 42%, #fff2d4 100%);
    }

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

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

    .thebigdoghouse-topbar {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(12px);
      background: rgba(255, 248, 235, 0.84);
      border-bottom: 1px solid rgba(159, 38, 23, 0.12);
    }

    .thebigdoghouse-navshell {
      max-width: var(--thebigdoghouse-max);
      margin: 0 auto;
      padding: 14px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .thebigdoghouse-brand {
      display: flex;
      align-items: center;
      min-width: 0;
    }

    .thebigdoghouse-brandlogo {
      width: auto;
      height: 62px;
      max-width: min(280px, 52vw);
      object-fit: contain;
    }

    .thebigdoghouse-navtoggle {
      display: none;
    }

    .thebigdoghouse-burger {
      display: none;
      width: 52px;
      height: 52px;
      border-radius: 16px;
      border: 1px solid rgba(159, 38, 23, 0.16);
      background: var(--thebigdoghouse-white);
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 10px 20px rgba(77, 179, 220, 0.14);
    }

    .thebigdoghouse-burger span,
    .thebigdoghouse-burger::before,
    .thebigdoghouse-burger::after {
      content: "";
      display: block;
      width: 22px;
      height: 3px;
      border-radius: 4px;
      background: var(--thebigdoghouse-red-dark);
      transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .thebigdoghouse-burger span {
      margin: 4px 0;
    }

    .thebigdoghouse-navgroup {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .thebigdoghouse-menu {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .thebigdoghouse-menu a {
      padding: 10px 14px;
      border-radius: 999px;
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--thebigdoghouse-blue-dark);
      transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

    .thebigdoghouse-menu a:hover,
    .thebigdoghouse-menu a:focus {
      background: rgba(245, 181, 52, 0.28);
      color: var(--thebigdoghouse-red-dark);
      transform: translateY(-1px);
    }

    .language-container {
      position: relative;
      min-width: 176px;
    }

    .language-selector {
      width: 100%;
      padding: 12px 42px 12px 16px;
      border: 1px solid rgba(30, 93, 126, 0.2);
      border-radius: 999px;
      background: var(--thebigdoghouse-white);
      color: var(--thebigdoghouse-blue-dark);
      font: inherit;
      font-weight: 700;
      appearance: none;
      box-shadow: 0 10px 20px rgba(77, 179, 220, 0.12);
      cursor: pointer;
    }

    .language-container::after {
      content: "▾";
      position: absolute;
      right: 16px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--thebigdoghouse-red-dark);
      pointer-events: none;
      font-size: 0.95rem;
    }

    .thebigdoghouse-frame {
      max-width: var(--thebigdoghouse-max);
      margin: 0 auto;
      padding: 36px 20px 64px;
    }

    .thebigdoghouse-intro {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 28px;
      align-items: stretch;
      margin-bottom: 34px;
    }

    .thebigdoghouse-introcopy {
      background: rgba(255, 255, 255, 0.8);
      border: 1px solid rgba(159, 38, 23, 0.08);
      border-radius: 32px;
      box-shadow: var(--thebigdoghouse-shadow);
    }

    .thebigdoghouse-introcopy {
      padding: 34px 32px;
      position: relative;
      overflow: hidden;
    }

    .thebigdoghouse-introcopy::before {
      content: "";
      position: absolute;
      inset: auto -60px -60px auto;
      width: 220px;
      height: 220px;
      background: radial-gradient(circle, rgba(245, 181, 52, 0.25), transparent 66%);
      pointer-events: none;
    }

.thebigdoghouse-introcopy h1 {
  margin: 18px 0 16px;
  font-family: var(--thebigdoghouse-title);
      font-size: clamp(2.4rem, 5vw, 4.5rem);
      line-height: 1.05;
      color: var(--thebigdoghouse-red-dark);
    }

    .thebigdoghouse-lead {
      font-size: 1.08rem;
      color: #473022;
      max-width: 60ch;
    }

.thebigdoghouse-pillrow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.thebigdoghouse-pill {
  padding: 10px 14px;
      border-radius: 999px;
      background: linear-gradient(180deg, #fffdf5 0%, #ffe7a6 100%);
      border: 1px solid rgba(245, 181, 52, 0.42);
  color: var(--thebigdoghouse-brown);
  font-weight: 700;
}

.thebigdoghouse-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 15px 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d8482f 0%, #a92a1a 100%);
  color: var(--thebigdoghouse-white);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.01em;
  box-shadow: 0 16px 28px rgba(159, 38, 23, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.thebigdoghouse-cta:hover,
.thebigdoghouse-cta:focus {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(159, 38, 23, 0.3);
  background: linear-gradient(180deg, #ea5a3f 0%, #b52f1d 100%);
}

.thebigdoghouse-cta-nav {
  margin-top: 0;
  padding: 12px 18px;
  font-size: 0.92rem;
  white-space: nowrap;
}

.thebigdoghouse-introcopy > .thebigdoghouse-cta {
  display: flex;
  width: fit-content;
  margin: 22px auto 0;
}

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

    .thebigdoghouse-score {
      padding: 16px 14px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.78);
      border: 1px solid rgba(30, 93, 126, 0.08);
      text-align: center;
    }

    .thebigdoghouse-score strong {
      display: block;
      font-size: 1.25rem;
      color: var(--thebigdoghouse-red-dark);
    }

    .thebigdoghouse-score span {
      font-size: 0.86rem;
      color: var(--thebigdoghouse-blue-dark);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .slot-review {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 26px;
    }

    .slot-review section,
    .author-box {
      background: rgba(255, 255, 255, 0.84);
      border: 1px solid rgba(159, 38, 23, 0.09);
      border-radius: var(--thebigdoghouse-radius);
      box-shadow: var(--thebigdoghouse-shadow);
      padding: 30px;
    }

    .slot-review h2,
    .slot-review h3 {
      font-family: var(--thebigdoghouse-title);
      color: var(--thebigdoghouse-red-dark);
      line-height: 1.15;
    }

.slot-review h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 18px;
}

.slot-review h1 {
  margin: 0 0 18px;
  font-family: var(--thebigdoghouse-title);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.08;
  color: var(--thebigdoghouse-red-dark);
}

.slot-review h3 {
  font-size: 1.38rem;
  margin: 22px 0 12px;
}

    .slot-review p {
      margin: 0 0 16px;
    }

    .slot-review ul {
      margin: 0 0 16px;
      padding-left: 20px;
    }

    .slot-review li + li {
      margin-top: 8px;
    }

.slot-review figure {
  margin: 22px 0;
}

.slot-review figure img {
  display: block;
  width: 100%;
  max-width: 768px;
  height: auto;
  margin: 0 auto;
  border-radius: 24px;
  border: 1px solid rgba(159, 38, 23, 0.12);
  box-shadow: 0 14px 30px rgba(94, 41, 17, 0.12);
  background: #fff7df;
}

.slot-review figcaption {
  margin-top: 10px;
  color: var(--thebigdoghouse-blue-dark);
  font-size: 0.94rem;
  font-weight: 700;
  text-align: center;
}

.thebigdoghouse-legalpage {
  max-width: 880px;
  margin: 0 auto;
}

.thebigdoghouse-legalpage .meta {
  color: var(--thebigdoghouse-blue-dark);
  font-weight: 700;
}

.thebigdoghouse-legalpage .lead {
  font-size: 1.08rem;
  color: #473022;
}

.thebigdoghouse-legalpage .notice {
  margin: 18px 0;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff8ea 0%, #ffeab1 100%);
  border: 1px solid rgba(245, 181, 52, 0.35);
  color: var(--thebigdoghouse-brown);
  font-weight: 700;
}

.thebigdoghouse-legalpage .article-body > :last-child {
  margin-bottom: 0;
}

.where-to-play-page {
  display: grid;
  gap: 26px;
}

.whereplay-hero,
.whereplay-section {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(159, 38, 23, 0.09);
  border-radius: var(--thebigdoghouse-radius);
  box-shadow: var(--thebigdoghouse-shadow);
  padding: 30px;
}

.whereplay-hero {
  background:
    radial-gradient(circle at top right, rgba(77, 179, 220, 0.2), transparent 24%),
    radial-gradient(circle at top left, rgba(245, 181, 52, 0.22), transparent 22%),
    rgba(255, 255, 255, 0.84);
}

.whereplay-hero-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.whereplay-hero-content h1 {
  margin: 0 0 18px;
  font-family: var(--thebigdoghouse-title);
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  line-height: 1.08;
  color: var(--thebigdoghouse-red-dark);
}

.whereplay-hero-content p {
  margin: 0 auto 22px;
  max-width: 64ch;
  font-size: 1.08rem;
  color: #473022;
}

.whereplay-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d8482f 0%, #a92a1a 100%);
  color: var(--thebigdoghouse-white);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.01em;
  box-shadow: 0 16px 28px rgba(159, 38, 23, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whereplay-btn:hover,
.whereplay-btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(159, 38, 23, 0.3);
  background: linear-gradient(180deg, #ea5a3f 0%, #b52f1d 100%);
}

.whereplay-wrapper {
  display: grid;
  gap: 26px;
}

.whereplay-section h2 {
  margin: 0 0 18px;
  font-family: var(--thebigdoghouse-title);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--thebigdoghouse-red-dark);
  line-height: 1.15;
}

.whereplay-section h3 {
  margin: 22px 0 12px;
  font-family: var(--thebigdoghouse-title);
  font-size: 1.38rem;
  color: var(--thebigdoghouse-red-dark);
}

.whereplay-section p,
.whereplay-section ul,
.whereplay-section ol {
  margin: 0 0 16px;
}

.whereplay-section ul,
.whereplay-section ol {
  padding-left: 20px;
}

.whereplay-casino-list {
  display: grid;
  gap: 18px;
}

.whereplay-casino-card {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fffdf6 0%, #fff1c8 100%);
  border: 1px solid rgba(245, 181, 52, 0.28);
}

.whereplay-casino-logo img {
  width: 100%;
  max-width: 140px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.whereplay-casino-info h3 {
  margin-top: 0;
}

.whereplay-casino-bonus {
  margin-bottom: 8px;
  color: var(--thebigdoghouse-red-dark);
  font-weight: 800;
}

.whereplay-casino-features {
  color: var(--thebigdoghouse-blue-dark);
}

.whereplay-casino-action {
  display: flex;
  justify-content: center;
}

.thebigdoghouse-demowrap {
  position: relative;
  width: 100%;
  max-width: 768px;
  aspect-ratio: 768 / 450;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(159, 38, 23, 0.14);
  background: linear-gradient(180deg, #fffdf6 0%, #fff0ca 100%);
  box-shadow: var(--thebigdoghouse-shadow);
}

.thebigdoghouse-demoiframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #f7e7bd;
}

.thebigdoghouse-demopreview {
  position: absolute;
  inset: 0;
}

.thebigdoghouse-demopreview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thebigdoghouse-demopreview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 18, 12, 0.14) 0%, rgba(28, 18, 12, 0.54) 100%);
}

.thebigdoghouse-demopanel {
  position: absolute;
  inset: auto 24px 24px;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.thebigdoghouse-demopanel .thebigdoghouse-cta {
  min-width: 184px;
}

.thebigdoghouse-demoreal {
  background: linear-gradient(180deg, #ffe286 0%, #f2b633 100%);
  color: var(--thebigdoghouse-red-dark);
  box-shadow: 0 16px 28px rgba(242, 182, 51, 0.24);
}

.thebigdoghouse-demoreal:hover,
.thebigdoghouse-demoreal:focus {
  background: linear-gradient(180deg, #ffeaad 0%, #f7c54f 100%);
  box-shadow: 0 20px 34px rgba(242, 182, 51, 0.3);
}

.thebigdoghouse-demointro h1 {
  max-width: 16ch;
}

.thebigdoghouse-demointro p {
  max-width: 72ch;
}

.thebigdoghouse-democta {
  display: flex;
  width: fit-content;
  margin: 22px auto 0;
}

@media (max-width: 700px) {
  .whereplay-hero,
  .whereplay-section {
    padding: 22px;
    border-radius: 24px;
  }

  .whereplay-casino-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .whereplay-btn {
    width: 100%;
  }

  .thebigdoghouse-demowrap {
    aspect-ratio: auto;
    min-height: 520px;
    height: min(78vh, 640px);
  }

  .thebigdoghouse-demoiframe,
  .thebigdoghouse-demopreview,
  .thebigdoghouse-demopreview img {
    height: 100%;
  }

  .thebigdoghouse-demopanel {
    inset: auto 16px 16px;
  }

  .thebigdoghouse-demopanel .thebigdoghouse-cta {
    width: 100%;
    min-width: 0;
  }

  .slot-review figure img {
    border-radius: 20px;
  }
}

    .thebigdoghouse-toc nav {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 16px;
    }

    .thebigdoghouse-tocdetails {
      border-radius: 22px;
      background: linear-gradient(180deg, #fffdf8 0%, #fff1c8 100%);
      border: 1px solid rgba(245, 181, 52, 0.35);
      padding: 12px;
    }

    .thebigdoghouse-tocdetails summary {
      list-style: none;
      cursor: pointer;
      padding: 14px 18px;
      border-radius: 18px;
      background: linear-gradient(180deg, #fff7df 0%, #ffd97f 100%);
      color: var(--thebigdoghouse-red-dark);
      font-family: var(--thebigdoghouse-title);
      font-size: 1.15rem;
      font-weight: 700;
      box-shadow: 0 10px 20px rgba(107, 64, 39, 0.08);
    }

    .thebigdoghouse-tocdetails summary::-webkit-details-marker {
      display: none;
    }

    .thebigdoghouse-tocdetails summary::after {
      content: "+";
      float: right;
      font-size: 1.35rem;
      line-height: 1;
    }

    .thebigdoghouse-tocdetails[open] summary::after {
      content: "-";
    }

    .thebigdoghouse-toc a {
      display: block;
      padding: 14px 16px;
      border-radius: 18px;
      background: linear-gradient(180deg, #fffdf6 0%, #ffe7aa 100%);
      border: 1px solid rgba(245, 181, 52, 0.38);
      color: var(--thebigdoghouse-red-dark);
      font-weight: 700;
      box-shadow: 0 10px 20px rgba(107, 64, 39, 0.08);
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .thebigdoghouse-toc a:hover,
    .thebigdoghouse-toc a:focus {
      transform: translateY(-2px);
      box-shadow: 0 14px 26px rgba(107, 64, 39, 0.14);
      background: linear-gradient(180deg, #fff8e8 0%, #ffd97a 100%);
    }

    .slot-table {
      width: 100%;
      border-collapse: collapse;
      overflow: hidden;
      border-radius: 18px;
      background: var(--thebigdoghouse-white);
      box-shadow: 0 12px 24px rgba(30, 93, 126, 0.08);
    }

    .slot-table caption {
      caption-side: top;
      padding-bottom: 12px;
      font-weight: 700;
      color: var(--thebigdoghouse-blue-dark);
    }

    .slot-table thead {
      background: linear-gradient(180deg, #d8482f 0%, #b6301e 100%);
      color: var(--thebigdoghouse-white);
    }

    .slot-table th,
    .slot-table td {
      padding: 14px 16px;
      text-align: left;
      border-bottom: 1px solid rgba(30, 93, 126, 0.08);
      vertical-align: top;
    }

    .slot-table tbody tr:nth-child(even) {
      background: rgba(245, 181, 52, 0.08);
    }

    .table-note {
      font-size: 0.95rem;
      color: var(--thebigdoghouse-blue-dark);
      font-style: italic;
    }

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

    .thebigdoghouse-tipbox,
    .thebigdoghouse-verdictbox {
      padding: 20px 22px;
      border-radius: 22px;
      background: linear-gradient(180deg, #fff8ea 0%, #ffeab1 100%);
      border: 1px solid rgba(245, 181, 52, 0.35);
    }

    .author-box {
      display: grid;
      grid-template-columns: 0.7fr 1.3fr;
      gap: 22px;
      align-items: start;
    }

    .author-meta,
    .author-bio {
      padding: 6px 0;
    }

    .thebigdoghouse-authoravatar {
      width: 132px;
      height: 132px;
      margin: 0 0 18px;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid rgba(245, 181, 52, 0.6);
      box-shadow: 0 14px 26px rgba(107, 64, 39, 0.14);
      background: #fff7df;
    }

    .author-meta p:last-child,
    .author-bio p:last-child,
    .slot-review p:last-child,
    .slot-review ul:last-child {
      margin-bottom: 0;
    }

.site-footer {
  max-width: var(--thebigdoghouse-max);
  margin: 0 auto 48px;
  padding: 28px 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(159, 38, 23, 0.09);
  border-radius: var(--thebigdoghouse-radius);
  box-shadow: var(--thebigdoghouse-shadow);
  color: var(--thebigdoghouse-blue-dark);
  text-align: center;
}

.footer-top p,
.footer-disclaimer p,
.footer-links ul {
  margin: 0;
}

.footer-top {
  margin-bottom: 14px;
}

.footer-links {
  margin-bottom: 14px;
}

.footer-links ul {
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-links a {
  color: var(--thebigdoghouse-red-dark);
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus {
  text-decoration: underline;
}

.footer-disclaimer {
  max-width: 760px;
  margin: 0 auto;
  font-size: 0.95rem;
}

    @media (max-width: 960px) {
      .thebigdoghouse-intro,
      .author-box,
      .thebigdoghouse-twocolumn {
        grid-template-columns: 1fr;
      }

      .thebigdoghouse-navshell {
        flex-wrap: wrap;
      }

      .thebigdoghouse-burger {
        display: inline-flex;
      }

  .thebigdoghouse-navgroup {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
        gap: 16px;
        padding-top: 6px;
      }

      .thebigdoghouse-navtoggle:checked + .thebigdoghouse-burger::before {
        transform: translateY(7px) rotate(45deg);
      }

      .thebigdoghouse-navtoggle:checked + .thebigdoghouse-burger span {
        opacity: 0;
      }

      .thebigdoghouse-navtoggle:checked + .thebigdoghouse-burger::after {
        transform: translateY(-7px) rotate(-45deg);
      }

      .thebigdoghouse-navtoggle:checked ~ .thebigdoghouse-navgroup {
        display: flex;
      }

      .thebigdoghouse-menu {
        flex-direction: column;
        align-items: stretch;
      }

  .thebigdoghouse-menu a {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(30, 93, 126, 0.08);
  }

  .thebigdoghouse-cta-nav {
    width: 100%;
  }

  .language-container {
    width: 100%;
  }
}

    @media (max-width: 700px) {
      .thebigdoghouse-frame {
        padding-top: 24px;
      }

      .thebigdoghouse-introcopy,
      .slot-review section,
      .author-box {
        padding: 22px;
        border-radius: 24px;
      }

      .thebigdoghouse-scoreboard {
        grid-template-columns: 1fr;
      }

      .thebigdoghouse-toc nav {
        grid-template-columns: 1fr;
      }

      .slot-table,
      .slot-table thead,
      .slot-table tbody,
      .slot-table tr,
      .slot-table th,
      .slot-table td {
        display: block;
        width: 100%;
      }

      .slot-table thead {
        display: none;
      }

      .slot-table tr {
        border-bottom: 1px solid rgba(30, 93, 126, 0.08);
        padding: 10px 0;
      }

      .slot-table th[scope="row"] {
        padding-bottom: 4px;
        color: var(--thebigdoghouse-red-dark);
      }

      .slot-table td {
        padding-top: 0;
      }
    }
