:root {
  --bg: #020d1d;
  --panel: #071a30;
  --soft: #0e2b4e;
  --text: #f7f9ff;
  --muted: #aec6dc;
  --accent: #ff9d3d;
  --accent2: #71d8ff;
  --deep: #010817;
  --line: rgba(70, 168, 255, 0.38);
  --max: 1360px;
  --radius: 10px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  background: var(--bg);
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #f8effb;
  background: linear-gradient(180deg, #020b19, #071a30 45%, #020d1d);
  line-height: 1.65;
  overflow-x: hidden;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      circle at 12% 0%,
      rgba(32, 132, 235, 0.2),
      transparent 28%
    ),
    radial-gradient(
      circle at 78% 6%,
      rgba(255, 157, 61, 0.1),
      transparent 34%
    ),
    #020d1d;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
}
.dsp26es-site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(3, 14, 31, 0.97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
}
.dsp26es-header-inner {
  min-height: 72px;
  width: 100%;
  max-width: var(--max);
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.dsp26es-logo {
  flex: 0 0 auto;
}
.dsp26es-logo img {
  width: 218px;
  max-height: 50px;
  object-fit: contain;
}
.dsp26es-site-nav {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text);
  flex: 1;
  justify-content: center;
}
.dsp26es-site-nav a {
  text-decoration: none;
  white-space: nowrap;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.dsp26es-site-nav a:hover,
.dsp26es-site-nav a[aria-current="page"] {
  background: rgba(99, 128, 247, 0.24);
  color: #fff;
}
.dsp26es-header-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}
.dsp26es-btn,
.dsp26es-header-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid #ffd177;
  background: linear-gradient(180deg, #ffd268 0%, #ffad45 48%, #ff7849 100%);
  color: #241000;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  box-shadow:
    0 0 12px rgba(255, 174, 68, 0.34),
    0 8px 20px rgba(0, 0, 0, 0.28),
    inset 0 0 8px rgba(255, 255, 255, 0.3);
  transition: 0.18s;
}
.dsp26es-btn:hover,
.dsp26es-header-actions a:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
}
.dsp26es-btn-dark {
  background: linear-gradient(180deg, #123b63, #08213c) !important;
  color: #fff !important;
  border-color: #46bdf8 !important;
  box-shadow: 0 0 12px rgba(62, 183, 255, 0.28) !important;
}
.dsp26es-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--soft);
  color: #fff;
}
.dsp26es-menu-toggle span {
  display: block;
  height: 3px;
  margin: 7px 6px;
  background: currentColor;
}
.dsp26es-hero {
  color: #fff;
  border-bottom: 1px solid var(--line);
  background-image:
    linear-gradient(
      90deg,
      rgba(9, 4, 15, 0.98),
      rgba(35, 10, 37, 0.84) 48%,
      rgba(9, 4, 15, 0.18)
    ),
    var(--hero);
  background-size: cover;
  background-position: center;
}
.dsp26es-hero-inner {
  min-height: 440px;
  padding: 74px max(24px, calc((100vw - var(--max)) / 2)) 70px;
  display: grid;
  grid-template-columns: minmax(300px, 620px) 1fr;
  align-items: center;
  gap: 30px;
}
.dsp26es-hero-kicker {
  color: var(--accent2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}
h1,
h2,
h3 {
  margin: 0 0 18px;
  color: var(--text);
  line-height: 1.15;
}
.dsp26es-hero h1 {
  font-size: clamp(38px, 4.3vw, 66px);
  max-width: 760px;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.6);
}
.dsp26es-hero p {
  max-width: 650px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}
.dsp26es-section {
  padding: 64px 20px;
}
.dsp26es-container {
  width: 100%;
  max-width: var(--max);
  margin: auto;
}
.dsp26es-content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 28px;
  align-items: start;
}
.dsp26es-review-content,
.dsp26es-side-box {
  background: rgba(7, 26, 48, 0.95);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}
.dsp26es-review-content {
  padding: 34px;
  min-width: 0;
}
.dsp26es-review-content a {
  color: var(--accent2);
}
.dsp26es-review-content p {
  margin: 0 0 18px;
}
.dsp26es-review-content h2 {
  margin-top: 38px;
  font-size: 29px;
  color: var(--accent2);
}
.dsp26es-review-content h3 {
  margin-top: 25px;
  font-size: 21px;
}
.dsp26es-review-content ul,
.dsp26es-review-content ol {
  padding-left: 24px;
  margin: 0 0 22px;
}
.dsp26es-review-content li {
  margin: 7px 0;
}
.dsp26es-review-content table {
  display: block;
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  overflow-x: auto;
  border-radius: 8px;
}
.dsp26es-review-content thead,
.dsp26es-review-content tbody {
  display: table;
  width: 100%;
  min-width: 580px;
  table-layout: fixed;
}
.dsp26es-review-content th:first-child,
.dsp26es-review-content td:first-child {
  width: 31%;
}
.dsp26es-review-content th,
.dsp26es-review-content td {
  border: 1px solid var(--line);
  padding: 12px;
  vertical-align: top;
}
.dsp26es-review-content th {
  background: var(--soft);
  color: #fff;
  text-align: left;
}
.dsp26es-review-content tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.035);
}
.dsp26es-review-content figure {
  margin: 26px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--deep);
}
.dsp26es-review-content figure img {
  width: 100%;
  aspect-ratio: 16/7.5;
  object-fit: cover;
}
.dsp26es-review-content figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 13px;
}
.dsp26es-lead {
  font-size: 18px;
  color: #fff;
}
.dsp26es-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 26px 0;
}
.dsp26es-highlights div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(
    145deg,
      rgba(255, 61, 141, 0.16),
    rgba(255, 255, 255, 0.03)
  );
}
.dsp26es-highlights strong,
.dsp26es-highlights span {
  display: block;
}
.dsp26es-highlights strong {
  color: #fff;
  font-size: 18px;
}
.dsp26es-highlights span {
  color: var(--muted);
  font-size: 13px;
}
.dsp26es-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 14px;
}
.dsp26es-article-meta span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 7px 10px;
  border-radius: 999px;
}
.dsp26es-sidebar {
  position: sticky;
  top: 86px;
}
.dsp26es-side-box {
  padding: 18px;
}
.dsp26es-side-box strong {
  display: block;
  margin-bottom: 12px;
  color: var(--accent2);
  font-size: 18px;
}
.dsp26es-toc-nav {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
  max-height: 62vh;
  overflow: auto;
  padding-right: 4px;
}
.dsp26es-toc-nav a {
  text-decoration: none;
  padding: 8px 9px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
  line-height: 1.25;
}
.dsp26es-toc-nav a:hover {
  background: rgba(99, 128, 247, 0.2);
  color: #fff;
}
.dsp26es-toc-sub {
  margin-left: 12px;
  opacity: 0.9;
}
.dsp26es-site-footer {
  background: var(--deep);
  border-top: 1px solid var(--line);
}
.dsp26es-footer-main {
  padding: 38px 20px;
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(280px, 1.5fr) minmax(
      190px,
      0.8fr
    );
  gap: 30px;
  align-items: start;
}
.dsp26es-footer-badges {
  display: grid;
  gap: 16px;
  justify-items: start;
}
.dsp26es-footer-badges img {
  width: 218px;
}
.dsp26es-footer-badge {
  display: flex;
  align-items: center;
}
.dsp26es-footer-badge-text {
  width: 76px;
  height: 54px;
  border-radius: 8px;
  border: 1px solid var(--line);
  justify-content: center;
  flex-direction: column;
  font-weight: 900;
  color: var(--accent2);
}
.dsp26es-footer-badge-text small {
  color: var(--muted);
  font-size: 10px;
}
.dsp26es-footer-copy-block p {
  margin: 0 0 16px;
  color: var(--muted);
}
.dsp26es-footer-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}
.dsp26es-footer-menu a {
  color: var(--accent2);
  text-decoration: none;
}
.dsp26es-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 20px;
}
.dsp26es-footer-bottom .dsp26es-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #fff;
}

/* Casino lobby on the home page */
.dsp26es-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.dsp26es-page-home {
  background: #09040f;
}
.dsp26es-page-home::before {
  background:
    radial-gradient(
      circle at 75% 5%,
      rgba(255, 61, 141, 0.14),
      transparent 30%
    ),
    linear-gradient(135deg, rgba(255, 255, 255, 0.018) 25%, transparent 25%) 0
      0 / 22px 22px,
    #09040f;
}
.dsp26es-page-home .dsp26es-site-header {
  background:
    linear-gradient(180deg, rgba(43, 17, 48, 0.98), rgba(21, 8, 29, 0.98)),
    #190a28;
  border-bottom-color: rgba(184, 198, 242, 0.16);
}
.dsp26es-home-hero {
  width: calc(100% - 48px);
  max-width: var(--max);
  margin: 48px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 61, 141, 0.24);
  border-radius: 52px;
  background-color: #230b2c;
  background-image:
    linear-gradient(
      90deg,
      #230b2c 0%,
      rgba(35, 11, 44, 0.98) 36%,
      rgba(35, 11, 44, 0.4) 66%,
      transparent 82%
    ),
    var(--hero);
  background-position:
    center,
    right center;
  background-size:
    100% 100%,
    auto 100%;
  background-repeat: no-repeat;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.48);
}
.dsp26es-home-hero .dsp26es-hero-inner {
  min-height: 500px;
  padding: 64px;
}
.dsp26es-home-hero .dsp26es-hero-kicker {
  color: #b9cae3;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  letter-spacing: 0.05em;
}
.dsp26es-home-hero h1 {
  margin-bottom: 10px;
  font-size: clamp(25px, 2.2vw, 36px);
}
.dsp26es-home-offer {
  max-width: 620px;
  margin: 0 0 18px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.2vw, 66px);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
  text-shadow: 0 7px 24px rgba(0, 0, 0, 0.46);
}
.dsp26es-home-offer span {
  display: block;
  margin-top: 10px;
  font-size: 0.62em;
  color: #dce7ff;
}
.dsp26es-home-hero p {
  max-width: 570px;
  font-size: 15px;
  color: #c8d5e7;
}
.dsp26es-lobby {
  padding: 34px 24px 18px;
  background: #05070b;
}
.dsp26es-lobby-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
  padding: 12px 14px;
  border: 1px solid rgba(184, 198, 242, 0.1);
  border-radius: 12px;
  background: #111720;
}
.dsp26es-category-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.dsp26es-category-nav::-webkit-scrollbar {
  display: none;
}
.dsp26es-category-nav a {
  flex: 0 0 auto;
  padding: 9px 13px;
  border-radius: 8px;
  color: #aeb9ca;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}
.dsp26es-category-nav a:hover,
.dsp26es-category-nav a.is-active {
  color: #fff;
  background: #2b3544;
}
.dsp26es-game-search {
  position: relative;
  flex: 0 0 230px;
}
.dsp26es-game-search::before {
  content: "⌕";
  position: absolute;
  top: 50%;
  left: 14px;
  color: #9faec3;
  font-size: 22px;
  transform: translateY(-52%);
}
.dsp26es-game-search input {
  width: 100%;
  min-height: 42px;
  padding: 9px 14px 9px 40px;
  border: 1px solid rgba(184, 198, 242, 0.18);
  border-radius: 9px;
  outline: none;
  background: #080c12;
  color: #fff;
}
.dsp26es-game-search input:focus {
  border-color: #6380f7;
  box-shadow: 0 0 0 3px rgba(99, 128, 247, 0.15);
}
.dsp26es-lobby-heading,
.dsp26es-lobby-heading > div,
.dsp26es-row-heading {
  display: flex;
  align-items: center;
}
.dsp26es-lobby-heading {
  justify-content: space-between;
  margin-bottom: 24px;
}
.dsp26es-lobby-heading > div {
  gap: 13px;
}
.dsp26es-section-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(184, 198, 242, 0.28);
  border-radius: 50%;
  color: #dce7ff;
  background: #182230;
}
.dsp26es-lobby-heading h2,
.dsp26es-row-heading h3 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
}
.dsp26es-lobby-heading h2 {
  font-size: 25px;
}
.dsp26es-lobby-heading p {
  margin: 2px 0 0;
  color: #8693a5;
  font-size: 13px;
}
.dsp26es-lobby-heading > a {
  color: #b8c6f2;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.dsp26es-game-row {
  margin-bottom: 32px;
}
.dsp26es-row-heading {
  gap: 10px;
  margin-bottom: 13px;
}
.dsp26es-row-heading h3 {
  font-size: 20px;
}
.dsp26es-row-heading span {
  color: #778497;
  font-size: 12px;
}
.dsp26es-game-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.dsp26es-game-card {
  min-width: 0;
}
.dsp26es-game-art {
  position: relative;
  aspect-ratio: 1;
  margin-bottom: 9px;
  overflow: hidden;
  border: 1px solid rgba(184, 198, 242, 0.18);
  border-radius: 10px;
  background: #111720;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}
.dsp26es-game-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 14, 0.66);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.dsp26es-game-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}
.dsp26es-game-art > a {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  padding: 10px 18px;
  border-radius: 999px;
  color: #071431;
  background: linear-gradient(180deg, #d7e1ff, #6380f7);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  opacity: 0;
  transform: translate(-50%, -42%);
  transition: 0.2s ease;
}
.dsp26es-game-art button {
  position: absolute;
  top: 9px;
  right: 9px;
  z-index: 3;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  color: #fff;
  background: rgba(6, 11, 19, 0.58);
  font-size: 21px;
  cursor: pointer;
}
.dsp26es-game-art button.is-favorite {
  color: #9db2ff;
  background: #263b7a;
}
.dsp26es-game-card:hover .dsp26es-game-art::after,
.dsp26es-game-card:hover .dsp26es-game-art > a {
  opacity: 1;
}
.dsp26es-game-card:hover .dsp26es-game-art > a {
  transform: translate(-50%, -50%);
}
.dsp26es-game-card:hover img {
  transform: scale(1.035);
}
.dsp26es-game-card > strong,
.dsp26es-game-card > span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dsp26es-game-card > strong {
  color: #f4f7ff;
  font-size: 14px;
  line-height: 1.25;
}
.dsp26es-game-card > span {
  margin-top: 2px;
  color: #818c9c;
  font-size: 12px;
}
.dsp26es-game-card[hidden] {
  display: none;
}
.dsp26es-lobby-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(184, 198, 242, 0.13);
  border-radius: 12px;
  background: rgba(184, 198, 242, 0.13);
}
.dsp26es-lobby-trust span {
  padding: 17px;
  color: #8996a8;
  text-align: center;
  background: #111720;
}
.dsp26es-lobby-trust strong {
  margin-right: 5px;
  color: #e5ecff;
  font-size: 18px;
}
.dsp26es-page-home > main > .dsp26es-section {
  padding-top: 48px;
}
@media (max-width: 1220px) {
  .dsp26es-header-inner {
    flex-wrap: wrap;
    padding: 10px 16px;
  }
  .dsp26es-site-nav {
    order: 3;
    width: 100%;
    flex-basis: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .dsp26es-content-layout,
  .dsp26es-footer-main {
    grid-template-columns: 1fr;
  }
  .dsp26es-sidebar {
    position: static;
  }
  .dsp26es-home-hero {
    margin-top: 28px;
  }
  .dsp26es-home-hero .dsp26es-hero-inner {
    padding: 50px 42px;
  }
  .dsp26es-game-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .dsp26es-game-card:nth-child(5) {
    display: none;
  }
}
@media (max-width: 760px) {
  .dsp26es-menu-toggle {
    display: block;
  }
  .dsp26es-site-nav {
    display: none;
  }
  .dsp26es-site-nav.dsp26es-is-open {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .dsp26es-header-actions {
    width: 100%;
  }
  .dsp26es-header-actions a {
    flex: 1;
  }
  .dsp26es-hero-inner {
    min-height: 390px;
    grid-template-columns: 1fr;
    padding: 54px 20px;
  }
  .dsp26es-review-content {
    padding: 20px;
  }
  .dsp26es-highlights {
    grid-template-columns: 1fr 1fr;
  }
  .dsp26es-review-content thead,
  .dsp26es-review-content tbody {
    min-width: 540px;
  }
  .dsp26es-footer-bottom .dsp26es-container {
    flex-direction: column;
  }
  .dsp26es-home-hero {
    width: calc(100% - 24px);
    margin-top: 18px;
    border-radius: 26px;
    background-image:
      linear-gradient(
        90deg,
        rgba(7, 22, 36, 0.98),
        rgba(7, 22, 36, 0.78) 65%,
        rgba(7, 22, 36, 0.48)
      ),
      var(--hero);
    background-position:
      center,
      58% center;
  }
  .dsp26es-home-hero .dsp26es-hero-inner {
    min-height: 470px;
    padding: 42px 24px;
  }
  .dsp26es-home-hero .dsp26es-hero-kicker {
    font-size: 17px;
  }
  .dsp26es-home-offer {
    font-size: clamp(34px, 11vw, 50px);
  }
  .dsp26es-lobby {
    padding: 24px 12px 8px;
  }
  .dsp26es-lobby-tools {
    align-items: stretch;
    flex-direction: column;
    margin-bottom: 26px;
  }
  .dsp26es-game-search {
    flex-basis: auto;
  }
  .dsp26es-lobby-heading {
    align-items: flex-end;
  }
  .dsp26es-lobby-heading h2 {
    font-size: 20px;
  }
  .dsp26es-lobby-heading p,
  .dsp26es-lobby-heading > a {
    font-size: 11px;
  }
  .dsp26es-game-grid {
    display: flex;
    gap: 12px;
    margin-right: -12px;
    padding-right: 12px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  .dsp26es-game-grid::-webkit-scrollbar {
    display: none;
  }
  .dsp26es-game-card,
  .dsp26es-game-card:nth-child(5) {
    display: block;
    flex: 0 0 158px;
    scroll-snap-align: start;
  }
  .dsp26es-lobby-trust {
    grid-template-columns: 1fr 1fr;
  }
  .dsp26es-page-home > main > .dsp26es-section {
    padding: 38px 12px 52px;
  }
}

/* DudeSpin lobby — based on the supplied official interface screenshots. */
.dsp26es-page-home,
.dsp26es-page-home::before {
  background: #020d1d;
}
.dsp26es-page-home .dsp26es-site-header {
  background: rgba(3, 16, 35, 0.98);
  border-bottom-color: rgba(71, 172, 255, 0.42);
  box-shadow: 0 0 22px rgba(29, 139, 244, 0.18);
}
.dsp26es-page-home .dsp26es-header-inner {
  max-width: none;
}
.dsp26es-page-home .dsp26es-site-nav a {
  border-color: rgba(69, 169, 255, 0.26);
  border-radius: 7px;
  background: #0b2341;
  box-shadow: inset 0 0 12px rgba(39, 137, 235, 0.12);
}
.dsp26es-page-home .dsp26es-site-nav a:hover,
.dsp26es-page-home .dsp26es-site-nav a[aria-current="page"] {
  color: #fff;
  border-color: #83ddff;
  background: #12365d;
  box-shadow: 0 0 12px rgba(77, 191, 255, 0.42);
}
.dsp26es-page-home .dsp26es-btn,
.dsp26es-page-home .dsp26es-header-actions a:not(.dsp26es-btn-dark) {
  border-color: #ffd177;
  background: linear-gradient(180deg, #ffd268 0%, #ff9f3d 52%, #ff7849 100%);
  box-shadow:
    0 0 12px rgba(255, 174, 68, 0.42),
    inset 0 0 8px rgba(255, 255, 255, 0.34);
}
.dsp26es-page-home .dsp26es-btn-dark {
  color: #fff !important;
  border-color: #46bdf8 !important;
  background: #08213c !important;
  box-shadow: 0 0 12px rgba(62, 183, 255, 0.35);
}
.dsp26es-home-shell {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 12px;
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr);
  gap: 16px;
  background:
    repeating-linear-gradient(90deg, transparent 0 126px, rgba(62, 127, 190, 0.055) 127px 128px),
    #031226;
}
.dsp26es-home-stage {
  min-width: 0;
}
.dsp26es-side-menu {
  position: sticky;
  top: 86px;
  align-self: start;
  display: grid;
  gap: 8px;
}
.dsp26es-side-menu a {
  min-height: 51px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffc778;
  border: 1px solid #235e9c;
  border-radius: 7px;
  background: linear-gradient(135deg, #0c2a50, #0a1d38);
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: inset 0 0 16px rgba(50, 138, 229, 0.14);
}
.dsp26es-side-menu a span {
  color: #f4f9ff;
  font-size: 12px;
  text-transform: uppercase;
}
.dsp26es-side-menu a:hover,
.dsp26es-side-menu a.is-active {
  border-color: #7ddcff;
  box-shadow:
    0 0 11px rgba(77, 192, 255, 0.42),
    inset 0 0 16px rgba(52, 160, 255, 0.22);
}
.dsp26es-side-menu a.is-hot {
  margin-bottom: 2px;
}
.dsp26es-home-shell .dsp26es-home-hero {
  width: 100%;
  max-width: none;
  margin: 0;
  border-color: rgba(70, 169, 255, 0.45);
  border-radius: 9px;
  background-color: #071d36;
  background-image:
    linear-gradient(90deg, #061a31 0%, rgba(6, 26, 49, 0.92) 34%, rgba(6, 26, 49, 0.12) 72%),
    var(--hero);
  box-shadow: 0 0 20px rgba(30, 129, 220, 0.2);
}
.dsp26es-home-shell .dsp26es-home-hero .dsp26es-hero-inner {
  min-height: 400px;
  padding: 50px 54px;
}
.dsp26es-home-shell .dsp26es-home-hero .dsp26es-hero-kicker,
.dsp26es-home-shell .dsp26es-home-hero h1 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}
.dsp26es-home-shell .dsp26es-home-hero .dsp26es-hero-kicker {
  color: #fff;
  font-size: 13px;
}
.dsp26es-home-shell .dsp26es-home-offer {
  color: #fff;
  text-shadow:
    0 0 8px rgba(255, 142, 56, 0.58),
    0 5px 18px rgba(0, 0, 0, 0.7);
}
.dsp26es-home-shell .dsp26es-home-offer span {
  color: #fff;
}
.dsp26es-lobby {
  padding: 18px 0 6px;
  background: transparent;
}
.dsp26es-lobby .dsp26es-lobby-tools {
  margin-bottom: 20px;
  padding: 8px;
  border-color: rgba(62, 165, 255, 0.32);
  background: rgba(4, 19, 39, 0.92);
}
.dsp26es-lobby .dsp26es-category-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #f5f9ff;
  border: 1px solid #20558c;
  background: linear-gradient(180deg, #0d2b4d, #071a31);
  box-shadow: 0 0 8px rgba(52, 156, 255, 0.16);
}
.dsp26es-lobby .dsp26es-category-nav a:hover,
.dsp26es-lobby .dsp26es-category-nav a.is-active {
  color: #ffe89e;
  border-color: #7ee1ff;
  background: #12375e;
  box-shadow: 0 0 10px rgba(70, 190, 255, 0.4);
}
.dsp26es-lobby .dsp26es-game-search input {
  border-color: #28659c;
  background: #031126;
}
.dsp26es-lobby .dsp26es-lobby-heading h2,
.dsp26es-lobby .dsp26es-row-heading h3 {
  color: #ffd28a;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  text-shadow: 0 0 8px rgba(255, 139, 60, 0.45);
}
.dsp26es-lobby .dsp26es-section-icon {
  color: #ffc96f;
  border-color: #3da9ef;
  background: #0b2949;
  box-shadow: 0 0 9px rgba(53, 174, 255, 0.36);
}
.dsp26es-lobby .dsp26es-game-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 170px;
  grid-template-columns: none;
  gap: 12px;
  margin: 0 -2px 26px;
  padding: 2px 2px 14px;
  overflow-x: auto;
  scrollbar-color: #235f98 #06162a;
}
.dsp26es-lobby .dsp26es-game-card,
.dsp26es-lobby .dsp26es-game-card:nth-child(5) {
  display: block;
}
.dsp26es-lobby .dsp26es-game-art {
  aspect-ratio: 2 / 3;
  border-color: #286ba8;
  border-radius: 7px;
  background-color: #061326;
  box-shadow: 0 0 9px rgba(52, 151, 238, 0.2);
}
.dsp26es-slot-crop {
  background-image: url("/assets/img/dudespin/dudespin-casino-nuevos.webp");
  background-repeat: no-repeat;
  background-position: var(--slot-x) var(--slot-y);
  background-size: 1690px 774px;
}
.dsp26es-lobby .dsp26es-game-art > a {
  color: #271200;
  background: linear-gradient(180deg, #ffd56d, #ff9340);
}
.dsp26es-lobby .dsp26es-game-art button.is-favorite {
  color: #ffbf5f;
  background: #0a2542;
}
.dsp26es-lobby .dsp26es-game-card > strong {
  color: #f4f8ff;
}
.dsp26es-lobby .dsp26es-game-card > span {
  color: #7fa8ca;
}
.dsp26es-lobby .dsp26es-lobby-trust {
  border-color: rgba(71, 167, 246, 0.25);
  background: rgba(71, 167, 246, 0.2);
}
.dsp26es-lobby .dsp26es-lobby-trust span {
  color: #9ebbd3;
  background: #071a30;
}
.dsp26es-lobby .dsp26es-lobby-trust strong {
  color: #ffd089;
}

@media (max-width: 980px) {
  .dsp26es-home-shell {
    grid-template-columns: 1fr;
    padding: 12px;
  }
  .dsp26es-side-menu {
    position: static;
    display: flex;
    overflow-x: auto;
  }
  .dsp26es-side-menu a {
    flex: 0 0 auto;
    min-height: 44px;
  }
}

@media (max-width: 760px) {
  .dsp26es-home-shell {
    padding: 10px;
  }
  .dsp26es-side-menu {
    display: none;
  }
  .dsp26es-home-shell .dsp26es-home-hero {
    width: 100%;
    margin: 0;
    border-radius: 12px;
    background-image:
      linear-gradient(90deg, rgba(3, 17, 35, 0.96), rgba(3, 17, 35, 0.58)),
      var(--hero);
  }
  .dsp26es-home-shell .dsp26es-home-hero .dsp26es-hero-inner {
    min-height: 470px;
    padding: 38px 24px;
  }
  .dsp26es-lobby .dsp26es-game-grid {
    grid-auto-columns: 158px;
  }
  .dsp26es-lobby .dsp26es-game-card {
    flex: none;
  }
}
