@font-face {
  font-family: "KCasinoIcons";
  src: url("../assets/icomoon.ttf") format("truetype");
  font-display: block;
}
:root {
  --rail-width: 250px;
  --ink: #6a7391;
  --muted: #cececd;
  --line: #d7daf1;
  --paper: #ffffff;
  --panel: #f4f4f4;
  --gold: #d8b486;
  --footer: #353c4a;
  --card-shadow: 2px 4px 5px 1px rgb(167 181 204 / 35%);
}
@media (max-width: 1900px) {
  :root {
    --rail-width: 80px;
  }
}
* {
  box-sizing: border-box;
}
html {
  min-width: 320px;
  background: var(--paper);
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans KR", "Malgun Gothic", "Apple SD Gothic Neo", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  color: inherit;
}
.kcasino-site {
  min-height: 100vh;
  overflow: hidden;
  background: #fff;
}
.content-width {
  width: 95%;
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.side-rail {
  position: fixed;
  z-index: 70;
  inset: 0 auto 0 0;
  display: flex;
  width: var(--rail-width);
  height: 100vh;
  padding-top: 29px;
  overflow: hidden;
  align-items: center;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 0 8.4px rgb(203 206 216 / 95%);
  transition: width 250ms ease-out;
}
.rail-scroll {
  width: 100%;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  flex: 1 1 auto;
  scrollbar-width: none;
}
.rail-scroll::-webkit-scrollbar {
  display: none;
}
.rail-home {
  display: block;
  width: var(--rail-width);
  height: 45px;
  margin: 0 0 22px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex: 0 0 45px;
}
.rail-logo-frame {
  display: block;
  width: 215px;
  height: 45px;
  margin-inline: auto;
  overflow: hidden;
}
.rail-logo-frame img {
  display: block;
  width: 215px;
  max-width: none;
  height: 45px;
}
.rail-group {
  width: 82%;
  margin: 0 auto 19px;
  padding: 17px;
  border: 1px solid #d7daf1;
  border-radius: 10px;
  background: #f4f4f4;
  box-shadow: 2px 4px 5px 1px rgb(167 181 204 / 35%), 0 0 6px 1px rgb(255 255 255 / 75%) inset;
}
.rail-list {
  width: 89%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.rail-item {
  position: relative;
  display: flex;
  min-width: 0;
  padding: 9px 3px;
  align-items: center;
  border-top: 1px solid #c6a586;
}
.rail-item:last-child {
  border-bottom: 1px solid #c6a586;
}
.rail-button {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 26px;
  padding: 0;
  align-items: center;
  justify-content: flex-start;
  color: #6a7391;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}
.rail-button:focus-visible {
  border-radius: 4px;
  outline: 2px solid #d9b491;
  outline-offset: 3px;
}
.rail-icon {
  font-family: "KCasinoIcons", sans-serif;
  font-size: var(--rail-icon-size);
  line-height: 1;
  margin-right: 25px;
  flex: 0 0 auto;
  transition: color 300ms ease, opacity 300ms ease, transform 300ms ease;
}
.rail-label {
  display: flex;
  min-width: 0;
  max-width: 100px;
  overflow: hidden;
  align-items: center;
  color: #6a7391;
  font-size: 13px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 300ms ease;
}
.rail-badge {
  position: absolute;
  z-index: 3;
  top: -8px;
  right: -3px;
  display: none;
  min-width: 52px;
  height: 21px;
  padding: 0 8px;
  color: #fff;
  border-radius: 2px;
  background: #e94b48;
  box-shadow: 0 2px 5px rgb(196 48 45 / 22%);
  font-size: 11px;
  font-weight: 800;
  line-height: 21px;
  text-align: center;
}
.rail-featured-art {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: -20px;
  display: block;
  width: 64px;
  max-width: none;
  height: 64px;
  transform: translateY(-50%);
  pointer-events: none;
}
.rail-item.is-featured .rail-icon {
  opacity: 0;
}
.rail-button:hover .rail-label,
.rail-button:focus-visible .rail-label {
  color: #d9b491;
}
.rail-group-visitor .rail-button:hover .rail-icon,
.rail-group-visitor .rail-button:focus-visible .rail-icon {
  color: #d9b491;
  transform: rotate(-45deg) translateZ(0);
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 43px;
  height: 48px;
  color: #cc9a6c;
  font-family: "KCasinoIcons", sans-serif;
}
.brand-mark > span {
  margin: 0;
  color: inherit;
  font-size: 42px;
  line-height: 1;
}
@media (max-width: 1900px) {
  .side-rail {
    align-items: stretch;
  }
  .rail-home {
    width: 80px;
    height: 48px;
    margin-bottom: 0;
    flex-basis: 48px;
  }
  .rail-logo-frame {
    width: 43px;
    height: 48px;
  }
  .rail-logo-frame img {
    width: 198px;
    height: 48px;
  }
  .rail-group {
    position: relative;
    width: 82%;
    margin: 0 auto;
    padding: 17px 23px 3px 16px;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    overflow: visible;
  }
  .rail-group-visitor::before {
    position: absolute;
    top: 7px;
    left: 50%;
    width: 38px;
    height: 1px;
    background: #d7daf1;
    content: "";
    transform: translateX(-50%);
  }
  .rail-item {
    width: 100%;
    height: var(--rail-item-height);
    padding: 9px 3px;
  }
  .rail-button {
    width: 50px;
    min-height: 0;
    overflow: visible;
  }
  .rail-icon {
    margin-right: 0;
  }
  .rail-label {
    display: none;
  }
  .rail-featured-art {
    top: -13px;
    left: -17px;
    transform: none;
  }
}
.kcasino-site {
  --rail-width: 80px;
}
.kcasino-site.rail-expanded {
  --rail-width: 80px;
}
.kcasino-site .side-rail {
  align-items: stretch;
}
.kcasino-site .rail-home {
  width: 80px;
  height: 48px;
  margin-bottom: 0;
  flex-basis: 48px;
}
.kcasino-site .rail-logo-frame {
  width: 43px;
  height: 48px;
}
.kcasino-site .rail-logo-frame img {
  width: 198px;
  height: 48px;
}
.kcasino-site .rail-group {
  position: relative;
  width: 82%;
  margin: 0 auto;
  padding: 17px 23px 3px 16px;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  overflow: visible;
}
.kcasino-site .rail-group-visitor::before {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 38px;
  height: 1px;
  background: #d7daf1;
  content: "";
  transform: translateX(-50%);
}
.kcasino-site .rail-item {
  width: 100%;
  height: var(--rail-item-height);
  padding: 9px 3px;
}
.kcasino-site .rail-button {
  width: 50px;
  min-height: 0;
  overflow: visible;
}
.kcasino-site .rail-icon {
  margin-right: 0;
}
.kcasino-site .rail-label {
  display: none;
}
.kcasino-site .rail-featured-art {
  top: -13px;
  left: -17px;
  transform: none;
}
.kcasino-site .rail-item.is-active .rail-icon {
  color: #d9b491;
}
.kcasino-site.rail-expanded .side-rail {
  width: 250px;
  align-items: center;
}
.kcasino-site.rail-expanded .rail-home {
  width: 250px;
  height: 45px;
  margin-bottom: 22px;
  flex-basis: 45px;
}
.kcasino-site.rail-expanded .rail-logo-frame {
  width: 215px;
  height: 45px;
}
.kcasino-site.rail-expanded .rail-logo-frame img {
  width: 215px;
  height: 45px;
}
.kcasino-site.rail-expanded .rail-group {
  width: 82%;
  margin: 0 auto 19px;
  padding: 17px;
  border: 1px solid #d7daf1;
  border-radius: 10px;
  background: #f4f4f4;
  box-shadow: 2px 4px 5px 1px rgb(167 181 204 / 35%), 0 0 6px 1px rgb(255 255 255 / 75%) inset;
}
.kcasino-site.rail-expanded .rail-group-visitor::before {
  display: none;
}
.kcasino-site.rail-expanded .rail-list {
  width: 89%;
}
.kcasino-site.rail-expanded .rail-item {
  width: auto;
  height: auto;
}
.kcasino-site.rail-expanded .rail-button {
  width: 100%;
  min-height: 26px;
  overflow: visible;
}
.kcasino-site.rail-expanded .rail-icon {
  margin-right: 25px;
}
.kcasino-site.rail-expanded .rail-label {
  display: flex;
}
.kcasino-site.rail-expanded .rail-badge {
  display: block;
}
.kcasino-site.rail-expanded .rail-featured-art {
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
}
.kcasino-site.rail-expanded .rail-item.is-active .rail-label {
  color: #d9b491;
}
.mobile-rail-close,
.mobile-rail-backdrop,
.mobile-menu-button,
.mobile-header-logo {
  display: none;
}
.top-header {
  position: fixed;
  z-index: 60;
  top: 0;
  left: var(--rail-width);
  display: flex;
  align-items: center;
  width: calc(100% - var(--rail-width));
  height: 70px;
  padding: 0 clamp(18px, 2.4vw, 37px);
  background: #fff;
  box-shadow: 0 2px 7px rgb(203 206 216 / 18%);
}
.speaker-icon {
  flex: 0 0 auto;
  width: 25px;
  margin-right: 9px;
  color: #d85b70;
  font-family: "KCasinoIcons", sans-serif;
  font-size: 21px;
}
.waiting-copy {
  flex: 0 0 auto;
  margin-right: 42px;
  color: #6a7391;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.notice-ticker {
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-move 18.8s linear infinite;
}
.ticker-track > span {
  display: flex;
  align-items: center;
  flex: none;
  gap: 62px;
  padding-right: 62px;
  white-space: nowrap;
}
.ticker-track strong {
  color: #6a7391;
  font-size: 13px;
  font-weight: 400;
}
@keyframes ticker-move {
  to { transform: translateX(-50%); }
}
.auth-buttons {
  display: flex;
  flex: 0 0 auto;
  gap: 15px;
  margin-left: 26px;
}
.auth-buttons button {
  min-width: 104px;
  height: 46px;
  padding: 0 20px;
  color: #fff;
  border: 0;
  border-radius: 50px;
  box-shadow: 1.2px 1.2px 7.2px rgb(167 181 204 / 70%);
  cursor: pointer;
  font-family: "KCasinoIcons", "Noto Sans KR", sans-serif;
  font-size: 13px;
  transition: transform 150ms ease, filter 150ms ease;
}
.auth-buttons button:hover,
.auth-buttons button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.04);
  outline: 2px solid rgb(106 115 145 / 24%);
  outline-offset: 2px;
}
.auth-buttons button span {
  margin-left: 7px;
  font-family: "Noto Sans KR", "Malgun Gothic", sans-serif;
  font-size: 12px;
}
.auth-buttons .login { background: #e42626; }
.auth-buttons .join { background: #8ac7d7; }
.auth-buttons .guest {
  min-width: 117px;
  color: #6a7391;
  background: #eaeafa;
}
.site-content {
  margin-left: var(--rail-width);
  padding-top: 82px;
  transition: margin-left 250ms ease-out;
}
.top-header {
  transition: left 250ms ease-out, width 250ms ease-out;
}
.page-heading {
  margin-top: 56px;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 2px solid #d8b486;
}
.page-heading p {
  margin: 0 0 8px;
  color: #d8b486;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}
.page-heading h2 {
  margin: 0;
  color: #525b78;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -.05em;
}
.page-heading span {
  display: block;
  margin-top: 8px;
  color: #858ba0;
  font-size: 13px;
}
.board-page,
.category-page,
.member-page {
  min-height: 580px;
  padding-bottom: 64px;
}
.board-title-line {
  display: flex;
  align-items: center;
  width: 100%;
  height: 30px;
  margin-top: 25px;
  margin-bottom: 50px;
  color: #cc9a6c;
}
.board-title-icon {
  display: grid;
  width: 29px;
  height: 29px;
  margin-right: 5px;
  place-items: center;
  color: #cc9a6c;
  font-family: "KCasinoIcons", sans-serif;
  font-size: 26px;
}
.board-title-line h2 {
  margin: 0 10px 0 0;
  color: #cc9a6c;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}
.board-title-rule {
  height: 1px;
  background: #cc9a6c;
  flex: 1 1 auto;
}
.board-page .page-heading,
.category-page .page-heading,
.member-page .page-heading {
  width: 100%;
}
.board-table-wrap {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}
.board-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.board-table-wrap th {
  height: 34px;
  color: #fff;
  background: #d7af8a;
  font-size: 14px;
}
.board-table-wrap th:first-child { border-radius: 4px 0 0 4px; }
.board-table-wrap th:last-child { border-radius: 0 4px 4px 0; }
.board-table-wrap th:first-child,
.board-table-wrap td:first-child {
  width: 9.5%;
  text-align: center;
}
.board-table-wrap th:last-child,
.board-table-wrap td:last-child {
  width: 17%;
  text-align: center;
}
.board-table-wrap td {
  height: 63px;
  padding: 0 18px;
  color: #6a7391;
  border-bottom: 1px solid #d7daf1;
  font-size: 14px;
}
.board-table-wrap tr:last-child td {
  border-bottom: 0;
}
.board-table-wrap td button {
  max-width: 100%;
  overflow: hidden;
  padding: 0;
  color: #5d6684;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 400;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.board-important {
  display: inline-grid;
  min-width: 38px;
  height: 22px;
  padding: 0 7px;
  place-items: center;
  color: #fff;
  border-radius: 2px;
  background: #d7af8a;
  font-size: 11px;
  font-weight: 700;
}
.board-writer-logo {
  display: inline-block;
  width: 86px;
  height: 28px;
  object-fit: contain;
  filter: sepia(1) saturate(.75) brightness(1.05);
}
.board-pagination {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 34px;
}
.board-pagination button {
  width: 29px;
  height: 29px;
  padding: 0;
  color: #9297a6;
  border: 0;
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
  font-size: 12px;
}
.board-pagination button:hover,
.board-pagination button:focus-visible,
.board-pagination button.active {
  color: #fff;
  background: #343b4b;
  outline: 0;
}
.board-table-wrap td button:hover,
.board-table-wrap td button:focus-visible {
  color: #c79a6c;
  outline: 0;
}
.category-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.category-card {
  min-height: 182px;
  padding: 22px;
  color: #6a7391;
  border: 1px solid #d7daf1;
  border-radius: 12px;
  background: linear-gradient(145deg, #fff, #f3f4f7);
  box-shadow: var(--card-shadow);
  cursor: pointer;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.category-card:hover,
.category-card:focus-visible {
  border-color: #d8b486;
  outline: 0;
  box-shadow: 0 12px 25px rgb(167 181 204 / 36%);
  transform: translateY(-4px);
}
.category-card > span {
  display: block;
  color: #d8b486;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}
.category-card strong {
  display: block;
  margin-top: 42px;
  color: #4e5670;
  font-size: 23px;
}
.category-card small {
  display: block;
  margin-top: 9px;
  color: #9da2b5;
}
.member-lock-card {
  display: grid;
  min-height: 300px;
  padding: 45px 28px;
  place-items: center;
  border: 1px solid #d7daf1;
  border-radius: 12px;
  background: #f7f7f9;
  box-shadow: var(--card-shadow);
  text-align: center;
}
.member-lock-card > span {
  color: #d8b486;
  font-family: "KCasinoIcons", sans-serif;
  font-size: 45px;
}
.member-lock-card h3 {
  margin: 12px 0 0;
  color: #525b78;
  font-size: 22px;
}
.member-lock-card p {
  margin: 8px 0 18px;
  color: #858ba0;
  font-size: 13px;
}
.member-lock-card button {
  min-width: 138px;
  height: 42px;
  color: #fff;
  border: 0;
  border-radius: 22px;
  background: #e42626;
  cursor: pointer;
  font-weight: 700;
}
.hero {
  position: relative;
  width: 100%;
  height: min(calc((100vw - var(--rail-width)) / 3), 485px);
  min-height: 104px;
  overflow: hidden;
  background: #e8eaf0;
}
.hero > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-arrive 650ms ease both;
}
@keyframes hero-arrive {
  from { opacity: .75; transform: scale(1.012); }
  to { opacity: 1; transform: scale(1); }
}
.hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}
.hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 85%);
  border-radius: 50%;
  background: rgb(255 255 255 / 45%);
  box-shadow: 0 1px 4px rgb(0 0 0 / 24%);
  cursor: pointer;
}
.hero-dots button.active {
  background: #fff;
  transform: scale(1.25);
}
.game-section {
  padding-top: 18px;
}
.game-section > h2 {
  display: flex;
  align-items: center;
  height: 55px;
  margin: 0 0 18px;
  color: #cececd;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.5px;
}
.game-section > h2 .brand-mark {
  width: 25px;
  height: 28px;
  margin-right: 10px;
}
.game-section > h2 .brand-mark > span {
  display: block;
  font-size: 25px;
}
.game-section > h2 > span:last-child {
  color: #d7b985;
}
.game-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px 13px;
}
.game-card {
  position: relative;
  display: flex;
  min-width: 0;
  height: 233px;
  padding: 0;
  overflow: hidden;
  flex-direction: column;
  color: #dbb897;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(0deg, #f0f0f8, #fff);
  box-shadow: var(--card-shadow), inset 0 1px 0 #fff;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.game-card:hover,
.game-card:focus-visible {
  z-index: 1;
  transform: translateY(-3px);
  outline: none;
  box-shadow: 2px 9px 18px rgb(92 103 137 / 28%);
}
.game-card::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgb(36 42 58 / 0%);
  content: "게임시작";
  font-size: 15px;
  font-weight: 800;
  opacity: 0;
  transition: opacity 180ms ease, background-color 180ms ease;
}
.game-card:hover::after,
.game-card:focus-visible::after {
  background: rgb(36 42 58 / 52%);
  opacity: 1;
}
.game-art {
  position: relative;
  display: grid;
  width: 100%;
  height: 177px;
  flex: 0 0 177px;
  place-items: center;
  background-color: #fafafd;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.game-art > img {
  width: min(45%, 116px);
  max-height: 55px;
  object-fit: contain;
}
.game-title {
  display: grid;
  width: 100%;
  min-height: 55px;
  place-items: center;
  border-top: 1px solid rgb(215 218 241 / 68%);
  background: linear-gradient(0deg, #f3f3f8, #fff);
  font-size: clamp(18px, 1.7vw, 26px);
  font-weight: 500;
  letter-spacing: -.8px;
}
.card-ribbon {
  position: absolute;
  top: 13px;
  left: -34px;
  width: 128px;
  padding: 5px 0;
  color: #fff;
  transform: rotate(-42deg);
  font-size: 9px;
  letter-spacing: .5px;
  text-align: center;
  box-shadow: 0 2px 5px rgb(45 49 70 / 20%);
}
.card-ribbon.daily { background: #8bcbd3; }
.card-ribbon.event { background: #dbad65; }
.card-ribbon.hot { background: #e45757; }
.live-casino-page {
  position: relative;
  width: 100%;
  min-height: 910px;
  overflow: hidden;
}
.live-casino-scene {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: visible;
  pointer-events: none;
}
.live-casino-scene img {
  position: absolute;
  display: block;
  max-width: none;
  object-fit: contain;
}
.live-casino-hero {
  z-index: 1;
  top: 36px;
  left: 5.35%;
  width: 43.25%;
  height: 599px;
}
.live-casino-chips-wide {
  z-index: 2;
  top: 30px;
  left: -1.35%;
  width: 52.75%;
  height: 484px;
}
.live-casino-chips-tall {
  z-index: 0;
  top: -305px;
  left: 52.9%;
  width: 67.9%;
  height: 982px;
}
.live-casino-panel {
  position: relative;
  z-index: 3;
  width: 38.4%;
  margin-left: 53.6%;
  padding-top: 36px;
}
.live-casino-panel h2 {
  height: 22px;
  margin: 0 0 27px;
  color: #c9aa8d;
  font-size: 22px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: -.02em;
}
.live-casino-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 147px));
  gap: 21px 7px;
}
.live-casino-card {
  position: relative;
  display: flex;
  width: 147px;
  height: 127px;
  padding: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid #d7daf1;
  border-radius: 8px;
  background: linear-gradient(0deg, #f0f0f8, #fff);
  box-shadow: 2px 4px 5px 1px rgb(167 181 204 / 35%), 0 0 6px 1px rgb(255 255 255 / 75%) inset;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.live-casino-card:hover,
.live-casino-card:focus-visible {
  z-index: 2;
  outline: 0;
  box-shadow: 2px 8px 14px rgb(92 103 137 / 28%);
  transform: translateY(-2px);
}
.live-casino-art {
  position: relative;
  display: block;
  width: 100%;
  height: 95px;
  overflow: visible;
  flex: 0 0 95px;
}
.live-casino-model {
  position: absolute;
  z-index: 1;
  inset: 3px 2px auto;
  width: calc(100% - 4px);
  height: 87px;
  object-fit: contain;
}
.live-casino-logo {
  position: absolute;
  z-index: 3;
  top: 8px;
  right: 7px;
  width: 54px;
  height: 23px;
  object-fit: contain;
}
.live-casino-tag {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 125px;
  object-fit: cover;
  pointer-events: none;
}
.live-casino-daily {
  position: absolute;
  z-index: 4;
  top: 10px;
  left: -29px;
  width: 108px;
  height: 20px;
  color: #fff;
  background: #83cbd6;
  font-size: 8px;
  font-weight: 800;
  line-height: 20px;
  letter-spacing: .08em;
  text-align: center;
  transform: rotate(-45deg);
}
.live-casino-name {
  display: grid;
  width: 100%;
  height: 31px;
  place-items: center;
  color: #dbb897;
  border-top: 1px solid rgb(215 218 241 / 45%);
  font-size: 11.5px;
  font-weight: 500;
}
@media (max-width: 1050px) {
  .live-casino-hero {
    left: 1%;
    width: 48%;
  }
  .live-casino-chips-wide {
    left: -8%;
    width: 61%;
  }
  .live-casino-panel {
    width: 48%;
    margin-left: 48%;
  }
  .live-casino-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .live-casino-card {
    width: 100%;
  }
}
@media (max-width: 760px) {
  .live-casino-page {
    min-height: 980px;
  }
  .live-casino-scene {
    opacity: .14;
  }
  .live-casino-hero {
    left: -8%;
    width: 72%;
  }
  .live-casino-panel {
    width: calc(100% - 32px);
    margin-left: 16px;
  }
  .live-casino-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.coming-card {
  display: grid;
  place-items: center;
  background: #f8f8fb;
  cursor: default;
}
.coming-card::after {
  display: none;
}
.coming-card:disabled {
  opacity: 1;
}
.coming-card:hover,
.coming-card:focus-visible {
  transform: none;
  box-shadow: var(--card-shadow), inset 0 1px 0 #fff;
}
.coming-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slot-section {
  display: grid;
  grid-template-columns: minmax(0, 1020px) 196px;
  gap: 92px;
  align-items: center;
  min-height: 390px;
  padding-top: 34px;
}
.slot-stage {
  display: grid;
  grid-template-columns: 56% 44%;
  min-width: 0;
  min-height: 298px;
  overflow: hidden;
  border-radius: 10px;
}
.slot-visual {
  min-width: 0;
  overflow: hidden;
  background: #e8e9ef;
}
.slot-visual img {
  display: block;
  width: 100%;
  height: 298px;
  object-fit: cover;
  animation: hero-arrive 450ms ease both;
}
.slot-copy {
  display: flex;
  min-width: 0;
  padding: 43px 0 28px 66px;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, #fff 0%, #f4f4f7 100%);
}
.slot-copy h2 {
  margin: 0 0 14px;
  color: #d1b88e;
  font-size: 32px;
  letter-spacing: -.5px;
}
.slot-copy p {
  margin: 0 0 6px;
  color: #8f96ab;
  font-size: 12px;
}
.slot-actions {
  display: flex;
  gap: 18px;
  margin-top: 25px;
}
.slot-actions button {
  width: 107px;
  height: 46px;
  padding: 0;
  color: #6a7391;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #ededf3 50%, #fff);
  box-shadow: 1px 3px 5px rgb(167 181 204 / 25%);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}
.slot-actions button:hover,
.slot-actions button:focus-visible {
  border-color: #d0b47e;
  outline: 2px solid rgb(218 187 126 / 20%);
}
.slot-tabs {
  display: flex;
  height: 356px;
  flex-direction: column;
  justify-content: space-between;
}
.slot-tabs button {
  position: relative;
  width: 196px;
  height: 50px;
  padding: 0;
  overflow: hidden;
  color: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #f2f2f6;
  box-shadow: 1px 3px 6px rgb(167 181 204 / 28%);
  cursor: pointer;
  opacity: .72;
  transition: opacity 160ms ease, transform 160ms ease, border-color 160ms ease;
}
.slot-tabs button:hover,
.slot-tabs button:focus-visible,
.slot-tabs button.active {
  opacity: 1;
  transform: translateX(-4px);
  border-color: #d8bd8d;
  outline: none;
}
.slot-tabs button img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slot-tabs button span {
  position: absolute;
  inset: auto 8px 5px auto;
  color: rgb(255 255 255 / 1%);
  font-size: 1px;
}
.slot-lobby-page {
  width: 95%;
  min-height: 1700px;
  margin-top: 14px;
  margin-left: 6%;
  padding-bottom: 80px;
}
.slot-lobby-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 1;
  overflow: hidden;
  background: #17171b;
}
.slot-lobby-banner > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slot-lobby-dots {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  display: flex;
  height: 16px;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.slot-lobby-dots span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgb(255 255 255 / 75%);
  box-shadow: 0 0 5px rgb(0 0 0 / 24%);
}
.slot-lobby-dots span.active {
  background: #d9b491;
  box-shadow: 0 0 0 2px rgb(255 255 255 / 75%);
}
.slot-lobby-content {
  margin-top: 20px;
}
.slot-provider-zone {
  display: flex;
  width: 90%;
  min-height: 137px;
  margin-left: 3%;
  align-items: flex-start;
}
.slot-provider-list {
  display: flex;
  width: 869px;
  min-height: 119px;
  padding: 0;
  align-items: flex-start;
}
.slot-provider-list button {
  position: relative;
  display: flex;
  width: 74px;
  height: 92px;
  margin: 18px 13px 0 0;
  padding: 0;
  flex: 0 0 74px;
  align-items: center;
  flex-direction: column;
  color: #8a90a4;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.slot-provider-list button::after {
  position: absolute;
  right: 8px;
  bottom: 0;
  left: 8px;
  height: 2px;
  background: transparent;
  content: "";
}
.slot-provider-list button:hover,
.slot-provider-list button:focus-visible,
.slot-provider-list button.active {
  color: #d6b184;
  outline: none;
}
.slot-provider-list button.active::after {
  background: #d6b184;
}
.slot-provider-list button > img {
  display: block;
  width: 45px;
  height: 30px;
  margin-top: 5px;
  object-fit: contain;
}
.slot-favorite-icon {
  display: grid;
  width: 45px;
  height: 44px;
  margin-top: -1px;
  place-items: center;
}
.slot-favorite-icon::before {
  color: transparent;
  background: linear-gradient(360deg, #a1aac3, #d8dbef);
  background-clip: text;
  content: "\e942";
  font-family: "KCasinoIcons", sans-serif;
  font-size: 31px;
  line-height: 31px;
  -webkit-background-clip: text;
}
.slot-provider-list strong {
  display: block;
  width: 74px;
  margin-top: 6px;
  overflow: hidden;
  color: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 14px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: normal;
}
.slot-provider-list small {
  width: 37px;
  height: 18px;
  margin-top: 7px;
  color: #fff;
  border-radius: 2px;
  font-size: 10px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}
.slot-provider-list small.hot {
  background: #ee5e52;
}
.slot-provider-list small.event {
  background: #76b4d7;
}
.slot-search {
  position: relative;
  display: block;
  width: 126px;
  height: 51px;
  margin-top: 32px;
  margin-left: 31px;
  flex: 0 0 126px;
}
.slot-search input {
  width: 100%;
  height: 100%;
  padding: 0 38px 0 17px;
  color: #6a7391;
  border: 1px solid #d7daf1;
  border-radius: 8px;
  outline: none;
  background: #f4f4f4;
  box-shadow: 1px 3px 6px rgb(167 181 204 / 25%);
  font-size: 13px;
}
.slot-search input:focus {
  border-color: #c6a586;
}
.slot-search > span:last-child {
  position: absolute;
  top: 10px;
  right: 12px;
  color: #8a90a4;
  font-size: 25px;
  line-height: 1;
}
.slot-company-title {
  display: flex;
  width: 100%;
  height: 30px;
  margin: 6px 0 31px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #d4b784;
  font-size: 18px;
  font-weight: 700;
}
.slot-company-title span {
  width: 37%;
  height: 1px;
  background: #d7daf1;
}
.slot-game-grid {
  display: grid;
  grid-template-columns: repeat(6, 152px);
  gap: 25px 13px;
  align-items: start;
}
.slot-game-card {
  position: relative;
  width: 152px;
  height: 193px;
  padding: 0;
  overflow: hidden;
  color: #6a7391;
  border: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 1px 3px 7px rgb(167 181 204 / 26%);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.slot-game-card:hover,
.slot-game-card:focus-visible {
  transform: translateY(-3px);
  outline: 2px solid rgb(214 177 132 / 38%);
  box-shadow: 2px 6px 12px rgb(167 181 204 / 38%);
}
.slot-game-art {
  display: block;
  width: 152px;
  height: 152px;
  overflow: hidden;
  background: #ececf2;
}
.slot-game-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slot-game-name {
  display: flex;
  height: 41px;
  padding: 0 8px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
}
.slot-empty-result {
  width: 979px;
  padding: 42px 0;
  color: #9ca1b1;
  border-top: 1px solid #d7daf1;
  text-align: center;
}
.sports-book-page {
  display: grid;
  grid-template-columns: 214px minmax(620px, 1fr) 154px;
  gap: 8px;
  width: calc(100vw - var(--rail-width));
  min-width: 1120px;
  height: calc(100vh - 82px);
  padding: 8px 8px 0 0;
  overflow: hidden;
  background: #f6f7fb;
  font-size: 13px;
}
.sports-league-nav {
  overflow: hidden;
  border-right: 1px solid #dfe2ed;
  background: #fff;
  box-shadow: 1px 1px 4px rgb(124 133 155 / 14%);
}
.sports-league-nav h2 {
  display: flex;
  height: 42px;
  margin: 0;
  padding: 0 12px;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background: linear-gradient(90deg, #c9a989, #f5eee8);
  font-size: 14px;
  font-weight: 500;
}
.sports-league-nav h2 span {
  font-size: 30px;
  font-weight: 200;
}
.sports-league-nav button {
  display: flex;
  width: 100%;
  height: 52px;
  padding: 0;
  align-items: center;
  overflow: hidden;
  color: #5f667b;
  border: 0;
  border-bottom: 1px solid #e3e5ed;
  background: #fff;
  cursor: pointer;
  text-align: left;
}
.sports-league-nav button:hover,
.sports-league-nav button:focus-visible {
  color: #c19870;
  outline: none;
  background: #faf8f5;
}
.sports-league-nav button span {
  display: grid;
  width: 34px;
  height: 100%;
  flex: 0 0 34px;
  place-items: center;
  font-size: 18px;
}
.sports-league-nav button b {
  overflow: hidden;
  font-size: 13px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sports-market-area {
  min-width: 0;
  overflow: hidden auto;
  border: 1px solid #dfe2ed;
  background: #f4f6fd;
  box-shadow: 1px 1px 4px rgb(124 133 155 / 12%);
}
.sports-market-area::-webkit-scrollbar,
.sports-league-nav::-webkit-scrollbar {
  width: 0;
}
.sports-category-tabs {
  position: sticky;
  z-index: 2;
  top: 0;
  display: flex;
  height: 34px;
  padding: 0 5px;
  gap: 5px;
  background: #fff;
  border-bottom: 1px solid #d7dbe8;
}
.sports-category-tabs button {
  min-width: 86px;
  height: 29px;
  margin-top: 3px;
  padding: 0 9px;
  color: #697087;
  border: 1px solid #d9dce7;
  background: #fff;
  cursor: pointer;
  font-size: 12px;
  white-space: nowrap;
}
.sports-category-tabs button.active {
  color: #fff;
  border-color: #c4a382;
  background: #c4a382;
}
.sports-category-tabs button span {
  margin-right: 4px;
  font-size: 17px;
}
.sports-category-tabs small {
  color: #d89962;
}
.sports-category-tabs .active small {
  color: #f7e3d0;
}
.sports-league-heading,
.prematch-row > header {
  display: flex;
  height: 43px;
  padding: 0 11px;
  align-items: center;
  color: #424a63;
  border-top: 1px solid #cfd5e4;
  border-bottom: 1px solid #d6dae6;
  background: #edf0fb;
  font-size: 13px;
}
.sports-league-heading b,
.prematch-row > header i {
  margin-left: auto;
  color: #bca68c;
  font-size: 18px;
  font-style: normal;
}
.live-match-list {
  padding-bottom: 30px;
}
.live-match-card {
  position: relative;
  min-height: 186px;
  margin: 18px 12px 0;
  padding: 29px 10px 12px;
  border: 1px solid #d7dbe7;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 7px 16px rgb(85 101 142 / 11%);
}
.live-status {
  position: absolute;
  top: -20px;
  left: 26px;
  height: 40px;
  padding: 0 15px;
  color: #b9a48a;
  border: 1px solid #e1e2e8;
  border-radius: 6px;
  background: #fff;
  line-height: 40px;
}
.match-favorite {
  position: absolute;
  top: 31px;
  left: 18px;
  color: #9fa5b5;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 46px;
  font-weight: 200;
}
.live-scoreboard {
  display: grid;
  width: 330px;
  height: 72px;
  margin: 0 auto 9px;
  grid-template-columns: 58px 46px 54px 46px 58px;
  align-items: center;
  justify-content: center;
}
.team-crest {
  display: grid;
  width: 38px;
  height: 45px;
  margin-inline: auto;
  place-items: center;
  color: #fff;
  border: 2px solid #d9a84f;
  border-radius: 48% 48% 42% 42%;
  background: linear-gradient(145deg, #d94939, #8e2429);
  box-shadow: inset 0 0 0 3px rgb(255 255 255 / 65%);
  font-size: 13px;
}
.team-crest.away {
  border-color: #657aa4;
  background: linear-gradient(145deg, #7084b5, #29395f);
}
.team-crest.small {
  display: inline-grid;
  width: 24px;
  height: 24px;
  margin: 0 8px 0 0;
  font-size: 9px;
}
.team-crest.small.away {
  margin: 0 0 0 8px;
}
.live-scoreboard strong {
  color: #323a53;
  font-size: 35px;
  font-weight: 400;
  text-align: center;
}
.live-scoreboard em {
  color: #333a51;
  font-size: 27px;
  font-style: normal;
  text-align: center;
}
.live-odds-row {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) 96px minmax(210px, 1fr);
  gap: 10px;
}
.live-odds-row button,
.prematch-odds button {
  display: flex;
  height: 40px;
  padding: 0 10px;
  align-items: center;
  justify-content: space-between;
  color: #4a5064;
  border: 1px solid #e0e2e9;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
}
.live-odds-row button:hover,
.prematch-odds button:hover {
  border-color: #c5a684;
  background: #fbf6f0;
}
.live-odds-row button:nth-child(2) {
  justify-content: center;
}
.more-markets {
  position: absolute;
  top: -20px;
  right: 27px;
  height: 40px;
  padding: 0 17px;
  color: #fff;
  border: 0;
  border-radius: 5px;
  background: #c7a98b;
  cursor: pointer;
}
.prematch-list {
  padding-bottom: 22px;
}
.prematch-row > header {
  height: 43px;
  border-top: 0;
  font-size: 13px;
}
.prematch-row > header b {
  margin-inline: 5px;
  color: #e1463f;
  font-size: 20px;
}
.prematch-odds {
  display: grid;
  height: 54px;
  padding: 5px 8px;
  grid-template-columns: 66px 51px minmax(210px, 1fr) 65px minmax(210px, 1fr) 34px 65px;
  gap: 4px;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #dfe2ed;
}
.prematch-odds time {
  color: #5d6478;
  font-size: 11px;
  line-height: 11px;
}
.prematch-odds > span {
  color: #71778a;
  font-size: 12px;
}
.prematch-odds button {
  height: 35px;
  min-width: 0;
  overflow: hidden;
  font-size: 11px;
  white-space: nowrap;
}
.prematch-odds button b {
  margin-left: auto;
}
.prematch-odds button:nth-of-type(3) b {
  margin: 0 8px 0 0;
}
.prematch-odds .row-star,
.prematch-odds .row-extra {
  justify-content: center;
  color: #8990a3;
  font-size: 21px;
}
.prematch-odds .row-extra {
  color: #fff;
  border-color: #c4a484;
  background: #c4a484;
  font-size: 12px;
}
.sports-bet-slip {
  overflow: hidden;
  color: #60677b;
  border-left: 1px solid #e0e2ea;
  background: #fff;
}
.quick-bet {
  display: flex;
  height: 40px;
  align-items: center;
  gap: 7px;
  font-size: 12px;
}
.quick-bet input {
  position: absolute;
  opacity: 0;
}
.quick-bet span {
  position: relative;
  width: 41px;
  height: 24px;
  border-radius: 20px;
  background: #c2a184;
}
.quick-bet span::before {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  content: "";
}
.quick-bet b {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: #9fa5b4;
}
.sports-bet-slip > h2 {
  height: 40px;
  margin: 0;
  color: #fff;
  background: #c4a484;
  font-size: 14px;
  font-weight: 500;
  line-height: 40px;
  text-align: center;
}
.sports-refresh {
  width: 100%;
  height: 51px;
  padding: 0 12px;
  color: #50576d;
  border: 0;
  border-bottom: 1px solid #e1e3ea;
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  text-align: left;
}
.sports-bet-slip section {
  margin: 0 8px;
}
.sports-bet-slip section h3 {
  height: 34px;
  margin: 10px 0 17px;
  padding-left: 10px;
  color: #fff;
  background: #c4a484;
  font-size: 13px;
  font-weight: 500;
  line-height: 34px;
}
.sports-bet-slip section p,
.sports-bet-slip section label {
  display: flex;
  margin: 0 0 13px;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
}
.sports-bet-slip section input {
  width: 56px;
  height: 36px;
  border: 1px solid #ececf1;
}
.sports-bet-slip section div {
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: 6px;
}
.sports-bet-slip section div button {
  height: 43px;
  color: #fff;
  border: 0;
  background: #555c70;
  cursor: pointer;
}
.sports-bet-slip section div button:last-child {
  background: #c5a586;
}
.sports-bet-slip dl {
  display: grid;
  margin: 29px 8px 0;
  grid-template-columns: 1fr auto;
  gap: 13px;
  font-size: 11px;
}
.sports-bet-slip dt,
.sports-bet-slip dd {
  margin: 0;
}
.saba-sports-page {
  display: grid;
  grid-template-columns: 225px minmax(945px, 1fr);
  grid-template-rows: 34px minmax(610px, calc(100vh - 116px));
  gap: 7px 9px;
  min-width: 1185px;
  height: calc(100vh - 76px);
  margin-top: -6px;
  padding: 1px 9px 0;
  overflow: auto;
  color: #4a5569;
  background: #f7f7f7;
  font-family: Arial, "Noto Sans KR", sans-serif;
  font-size: 12px;
}
.saba-toolbar {
  display: flex;
  grid-column: 1 / -1;
  height: 34px;
  padding: 0 26px;
  align-items: center;
  gap: 11px;
  border: 1px solid #dadde3;
  background: #fff;
}
.saba-toolbar time {
  color: #6e8aa9;
}
.saba-toolbar button {
  width: 25px;
  height: 25px;
  padding: 0;
  color: #fff;
  border: 0;
  background: #4c83b3;
}
.saba-toolbar p {
  margin: 0;
  color: #8ba0b6;
}
.saba-left-nav {
  overflow: hidden auto;
}
.saba-left-nav > button,
.saba-sport-tree button {
  cursor: pointer;
}
.saba-banner {
  display: flex;
  width: 100%;
  height: 37px;
  margin-bottom: 4px;
  padding: 0 14px;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(120deg, #2778ae, #6099c8);
}
.saba-banner.galaxy {
  background: linear-gradient(120deg, #24699e, #67a6cf);
}
.saba-banner.galaxy span {
  color: #1f2841;
  background: #ffd43c;
  font-size: 9px;
}
.saba-ad {
  height: 65px;
  padding: 12px 15px 0 70px;
  color: #fff;
  background: linear-gradient(105deg, #27364c, #c73545 50%, #101d34);
  font-size: 15px;
  text-align: center;
  text-shadow: 0 1px 2px #000;
}
.saba-ad b {
  font-size: 18px;
}
.saba-slip-tabs {
  display: grid;
  height: 36px;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #d8dce1;
  background: #fff;
}
.saba-slip-tabs button {
  border: 0;
  border-bottom: 2px solid transparent;
  background: #fff;
}
.saba-slip-tabs button:first-child {
  border-bottom-color: #5589b6;
}
.saba-league {
  display: flex;
  width: 100%;
  height: 36px;
  margin-top: 4px;
  padding: 0 10px;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  border: 0;
  border-radius: 3px;
  background: #4a87ba;
  text-align: left;
}
.saba-sport-tree {
  margin-top: 5px;
  border: 1px solid #d5d8dc;
  background: #fff;
}
.saba-sport-tree h2 {
  display: flex;
  height: 37px;
  margin: 0;
  padding: 0 10px;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background: #447fab;
  font-size: 13px;
}
.saba-sport-tree nav {
  display: grid;
  height: 34px;
  grid-template-columns: repeat(3, 1fr);
  background: #4d7da5;
}
.saba-sport-tree nav button {
  position: relative;
  color: #e8edf2;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
}
.saba-sport-tree nav button.active {
  border-bottom-color: #fff;
}
.saba-sport-tree nav b {
  position: absolute;
  top: 1px;
  right: 1px;
  color: #fff;
  background: #e66a32;
  font-size: 9px;
}
.saba-sport-tree > button {
  width: 100%;
  height: 36px;
  padding-left: 26px;
  color: #566274;
  border: 0;
  background: #fff;
  text-align: left;
}
.saba-board {
  min-width: 945px;
  overflow: hidden;
  background: #fff;
}
.saba-top-actions {
  display: flex;
  height: 36px;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid #d6d9de;
}
.saba-top-actions button,
.saba-top-actions select {
  height: 29px;
  color: #fff;
  border: 0;
  border-radius: 2px;
  background: #4e87b8;
  font-size: 11px;
}
.saba-top-actions button:nth-last-child(-n + 3),
.saba-top-actions select {
  color: #5c6470;
  border: 1px solid #e0e1e4;
  background: #fff;
}
.saba-top-actions span {
  flex: 1 1 auto;
}
.saba-board-title {
  display: flex;
  height: 37px;
  padding: 0 10px;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: #6796bd;
}
.saba-board-title button {
  height: 25px;
  margin-left: auto;
  color: #fff;
  border: 1px solid rgb(255 255 255 / 45%);
  background: #5686ad;
}
.saba-match > header {
  height: 33px;
  padding: 0 10px;
  color: #6a6f79;
  background: #f2f2f2;
  line-height: 33px;
}
.saba-market-head {
  display: grid;
  height: 29px;
  grid-template-columns: 105px repeat(5, 1fr);
  align-items: center;
  color: #68839a;
  background: #f6e6d7;
  text-align: center;
}
.saba-market-head b {
  width: max-content;
  padding: 2px 7px;
  color: #fff;
  background: #c84d30;
}
.saba-team-row {
  display: grid;
  min-height: 146px;
  padding: 5px 8px;
  grid-template-columns: 194px 1fr;
  gap: 8px;
  background: #f8dfca;
}
.saba-team-row > strong {
  color: #985f39;
  font-size: 13px;
  font-weight: 600;
  line-height: 35px;
}
.saba-team-row em {
  color: #ad6a46;
  font-style: normal;
}
.saba-team-row small {
  float: right;
  color: #c65a2f;
  font-size: 16px;
}
.saba-odds-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(90px, 1fr));
  gap: 4px;
  overflow: hidden;
}
.saba-odds-grid button {
  height: 25px;
  color: #26384c;
  border: 0;
  background: rgb(255 255 255 / 70%);
  cursor: pointer;
  font-weight: 700;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
  margin-top: 51px;
}
.info-card {
  height: 240px;
  padding: 22px 23px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f4f4f4;
  box-shadow: var(--card-shadow);
}
.info-card h2 {
  margin: 0 0 14px;
  color: #d4b784;
  font-size: 18px;
  letter-spacing: -.3px;
}
.info-card h2 span {
  margin-left: 5px;
  color: #cececd;
}
.info-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.info-card li + li {
  border-top: 1px solid rgb(215 218 241 / 75%);
}
.info-card li button {
  display: flex;
  align-items: center;
  width: 100%;
  height: 40px;
  padding: 0 2px;
  justify-content: space-between;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  text-align: left;
}
.info-card li button:hover,
.info-card li button:focus-visible {
  color: #b68d45;
  outline: none;
}
.info-card li button span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.info-card time {
  margin-left: 10px;
  color: #a7adbf;
  font-size: 10px;
  white-space: nowrap;
}
.empty-lines {
  display: grid;
  gap: 12px;
  padding-top: 5px;
}
.empty-lines i {
  height: 1px;
  background: rgb(215 218 241 / 75%);
}
.footer-gap {
  height: 241px;
}
.site-footer {
  min-height: 373px;
  padding-top: 39px;
  color: #fff;
  background: var(--footer);
}
.footer-grid {
  display: grid;
  grid-template-columns: 25% 20% 55%;
  min-height: 225px;
}
.footer-brand {
  padding-right: 36px;
}
.footer-brand > img {
  display: block;
  width: 183px;
  height: 44px;
  margin-bottom: 20px;
  object-fit: contain;
  object-position: left center;
  filter: sepia(1) saturate(.8) hue-rotate(355deg) brightness(1.25);
}
.footer-brand p {
  margin: 0 0 23px;
  color: rgb(255 255 255 / 68%);
  font-size: 11px;
  line-height: 1.8;
}
.footer-help {
  padding-left: 22px;
  border-left: 1px solid rgb(255 255 255 / 10%);
}
.footer-help h2,
.footer-links h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
.footer-help h2 span {
  color: #d3b67e;
}
.footer-help > div {
  display: grid;
  gap: 9px;
}
.footer-help button {
  display: flex;
  align-items: center;
  width: 160px;
  height: 42px;
  padding: 0 12px;
  color: rgb(255 255 255 / 76%);
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 6px;
  background: rgb(255 255 255 / 5%);
  cursor: pointer;
  font-size: 11px;
}
.footer-help button b {
  width: 28px;
  color: #d5b878;
  font-family: "KCasinoIcons", sans-serif;
  font-size: 18px;
}
.footer-help button:hover,
.footer-help button:focus-visible,
.footer-links button:hover,
.footer-links button:focus-visible {
  color: #e0c37f;
  outline: none;
}
.footer-links {
  display: grid;
  grid-template-columns: .8fr 1.2fr 1.2fr .8fr;
  gap: 24px;
}
.footer-links > div {
  display: flex;
  flex-direction: column;
}
.footer-links button {
  width: max-content;
  padding: 2px 0;
  color: rgb(255 255 255 / 65%);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  line-height: 1.45;
  text-align: left;
}
.partner-strip {
  height: 87px;
  margin-top: 12px;
  overflow: hidden;
  border-top: 1px solid rgb(255 255 255 / 12%);
}
.partner-strip > div {
  display: flex;
  align-items: center;
  width: max-content;
  height: 87px;
  gap: 62px;
  padding-left: 15px;
  color: rgb(255 255 255 / 30%);
  animation: partner-move 25s linear infinite alternate;
}
.partner-strip b {
  font-size: 17px;
  font-style: italic;
  letter-spacing: -1px;
  white-space: nowrap;
}
@keyframes partner-move {
  to { transform: translateX(-34%); }
}
.promo-overlay {
  position: fixed;
  z-index: 100;
  inset: 0;
  width: auto;
  max-width: none;
  height: auto;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: auto;
  border: 0;
  background: rgb(21 24 31 / 64%);
  backdrop-filter: blur(2px);
}
.promo-grid {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  width: max-content;
  padding: 50px 50px 80px 100px;
}
.promo-card {
  width: 500px;
  overflow: hidden;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 18px 60px rgb(0 0 0 / 35%);
}
.promo-card header {
  display: flex;
  align-items: center;
  height: 82px;
  padding: 0 22px;
  justify-content: space-between;
  background: #fff;
}
.promo-card header img {
  width: 247px;
  height: 60px;
  object-fit: contain;
  object-position: left center;
}
.promo-card header button {
  width: 40px;
  height: 40px;
  padding: 0;
  color: #7c849c;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 30px;
}
.promo-image {
  display: block;
  width: 500px;
  height: 711px;
  object-fit: cover;
}
.promo-today {
  display: block;
  min-width: 162px;
  height: 36px;
  margin: 8px auto 12px;
  padding: 0 20px;
  color: #fff;
  border: 0;
  border-radius: 30px;
  background: #83c4d7;
  cursor: pointer;
  font-size: 12px;
}
.dialog-backdrop {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
  background: rgb(25 29 40 / 67%);
  backdrop-filter: blur(3px);
}
.demo-dialog {
  position: relative;
  width: min(500px, 100%);
  padding: 44px 42px 36px;
  color: #6a7391;
  border: 1px solid #d7daf1;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 90px rgb(18 22 34 / 34%);
  text-align: center;
}
.demo-dialog .brand-mark {
  margin-bottom: 14px;
}
.demo-dialog h2 {
  margin: 0 0 17px;
  color: #525b78;
  font-size: 25px;
}
.demo-dialog p {
  margin: 6px 0;
  font-size: 13px;
  line-height: 1.6;
}
.dialog-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 38px;
  height: 38px;
  color: #858ba0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 27px;
}
.dialog-confirm {
  width: 150px;
  height: 44px;
  margin-top: 24px;
  color: #fff;
  border: 0;
  border-radius: 30px;
  background: #8ac7d7;
  box-shadow: 1px 3px 8px rgb(101 155 171 / 35%);
  cursor: pointer;
  font-weight: 700;
}
.chat-widget {
  position: fixed;
  z-index: 80;
  right: 30px;
  bottom: 12px;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 10px;
}
.chat-button {
  display: grid;
  width: 64px;
  height: 64px;
  padding: 0;
  color: #58460a;
  border: 5px solid #fff;
  border-radius: 50%;
  place-items: center;
  background: #e3c574;
  box-shadow: 0 7px 22px rgb(40 45 59 / 28%);
  cursor: pointer;
  font-size: 26px;
}
.chat-glyph {
  position: relative;
  display: block;
  width: 26px;
  height: 20px;
  border: 3px solid #101820;
  border-radius: 7px;
}
.chat-glyph::before {
  position: absolute;
  right: 2px;
  bottom: -7px;
  width: 8px;
  height: 8px;
  border-right: 3px solid #101820;
  border-bottom: 3px solid #101820;
  background: #e3c574;
  content: "";
  transform: skewY(-35deg);
}
.chat-glyph::after {
  position: absolute;
  top: 6px;
  left: 5px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #101820;
  box-shadow: 6px 0 #101820, 12px 0 #101820;
  content: "";
}
.chat-card {
  width: 245px;
  padding: 19px;
  color: #6a7391;
  border: 1px solid #d7daf1;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 32px rgb(45 52 74 / 24%);
}
.chat-card b {
  color: #c5a163;
}
.chat-card p {
  margin: 9px 0 13px;
  font-size: 12px;
}
.chat-card button {
  width: 100%;
  height: 35px;
  color: #fff;
  border: 0;
  border-radius: 20px;
  background: #8ac7d7;
  cursor: pointer;
  font-size: 11px;
}
@media (max-width: 1180px) {
  .top-header {
    padding-inline: 18px;
  }
  .notice-ticker {
    max-width: none;
  }
  .auth-buttons {
    gap: 8px;
    margin-left: 12px;
  }
  .auth-buttons button {
    min-width: 92px;
    padding-inline: 14px;
  }
  .auth-buttons .guest {
    min-width: 105px;
  }
  .slot-section {
    grid-template-columns: minmax(0, 1fr) 170px;
    gap: 30px;
  }
  .slot-tabs button {
    width: 170px;
  }
  .slot-copy {
    padding-left: 34px;
  }
  .slot-actions {
    gap: 8px;
  }
  .slot-actions button {
    width: auto;
    min-width: 0;
    padding-inline: 6px;
    flex: 1 1 0;
  }
}
@media (max-width: 1000px) {
  .category-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .game-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px 14px;
  }
  .game-card {
    height: 180px;
  }
  .game-art {
    height: 132px;
    flex-basis: 132px;
  }
  .game-title {
    min-height: 47px;
    font-size: 18px;
  }
  .slot-section {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "tabs" "stage";
    gap: 12px;
    min-height: 0;
    padding-top: 38px;
  }
  .slot-stage {
    grid-area: stage;
    grid-template-columns: 52% 48%;
    min-height: 183px;
  }
  .slot-visual img {
    height: 183px;
  }
  .slot-copy {
    padding: 18px 16px;
  }
  .slot-copy h2 {
    margin-bottom: 7px;
    font-size: 24px;
  }
  .slot-copy p {
    font-size: 10px;
  }
  .slot-actions {
    gap: 6px;
    margin-top: 12px;
  }
  .slot-actions button {
    width: auto;
    min-width: 0;
    height: 36px;
    padding-inline: 8px;
    flex: 1 1 0;
    font-size: 10px;
  }
  .slot-tabs {
    display: grid;
    grid-area: tabs;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    height: 50px;
  }
  .slot-tabs button {
    width: 100%;
    height: 50px;
  }
  .slot-tabs button:hover,
  .slot-tabs button:focus-visible,
  .slot-tabs button.active {
    transform: translateY(-3px);
  }
  .info-grid {
    gap: 14px;
  }
  .info-card {
    padding-inline: 15px;
  }
  .footer-grid {
    width: 924px;
    margin-left: 34px;
    grid-template-columns: 260px 190px 474px;
  }
  .partner-strip {
    width: 924px;
    margin-left: 34px;
  }
}
@media (max-width: 720px) {
  .page-heading {
    margin-top: 34px;
  }
  .category-card-grid {
    grid-template-columns: 1fr;
  }
  .board-table-wrap th:first-child,
  .board-table-wrap td:first-child {
    width: 54px;
  }
  .board-table-wrap th:last-child,
  .board-table-wrap td:last-child {
    width: 86px;
  }
  .board-table-wrap td {
    padding-inline: 10px;
  }
  .content-width {
    width: calc(100% - 32px);
  }
  .top-header {
    min-width: 650px;
    padding-left: 15px;
  }
  .speaker-icon {
    margin-right: 7px;
  }
  .notice-ticker {
    width: 150px;
    flex: 0 0 150px;
  }
  .auth-buttons {
    margin-left: 9px;
  }
  .auth-buttons button {
    min-width: 90px;
  }
  .game-section > h2 {
    height: 44px;
    margin-bottom: 10px;
    font-size: 18px;
  }
  .game-grid {
    gap: 13px 8px;
  }
  .game-card {
    height: 180px;
  }
  .game-art {
    height: 134px;
    flex-basis: 134px;
  }
  .game-title {
    min-height: 45px;
    padding-inline: 4px;
    font-size: 14px;
  }
  .slot-stage {
    display: block;
    min-height: 0;
  }
  .slot-visual img {
    height: 146px;
  }
  .slot-copy {
    min-height: 160px;
    padding: 19px 16px;
  }
  .slot-copy h2 {
    font-size: 23px;
  }
  .slot-tabs {
    gap: 4px;
    height: 42px;
  }
  .slot-tabs button {
    height: 42px;
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
  .info-card {
    height: 220px;
  }
  .footer-gap {
    height: 95px;
  }
  .footer-grid,
  .partner-strip {
    margin-left: 16px;
  }
  .chat-widget {
    right: 15px;
  }
  .chat-button {
    width: 60px;
    height: 60px;
  }
  .promo-grid {
    gap: 18px;
    width: 100%;
    padding: 20px 20px 60px;
    flex-direction: column;
  }
  .promo-card {
    width: min(500px, calc(100vw - 40px));
    margin-inline: auto;
  }
  .promo-image {
    width: 100%;
    height: auto;
    aspect-ratio: 500 / 711;
  }
}
@media (max-width: 1180px) {
  .slot-provider-zone {
    width: 96%;
    margin-left: 1%;
  }
  .slot-provider-list {
    width: auto;
    min-width: 0;
    flex: 1 1 auto;
  }
  .slot-provider-list button {
    width: 64px;
    margin-right: 4px;
    flex-basis: 64px;
  }
  .slot-provider-list strong {
    width: 64px;
    font-size: 11px;
  }
  .slot-search {
    margin-left: 10px;
  }
}
@media (max-width: 1000px) {
  .slot-lobby-page {
    width: 94%;
    margin-left: 3%;
  }
  .slot-provider-zone {
    display: block;
    width: 100%;
    margin-left: 0;
    overflow-x: auto;
  }
  .slot-provider-list {
    width: max-content;
  }
  .slot-provider-list button {
    width: 72px;
    margin-right: 7px;
    flex-basis: 72px;
  }
  .slot-provider-list strong {
    width: 72px;
  }
  .slot-search {
    width: min(100%, 320px);
    margin: 4px 0 18px;
  }
  .slot-game-grid {
    grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
    gap: 18px 12px;
  }
  .slot-game-card,
  .slot-game-art {
    width: 100%;
  }
  .slot-game-card {
    height: auto;
  }
  .slot-game-art {
    height: auto;
    aspect-ratio: 1;
  }
}
@media (max-width: 720px) {
  .slot-lobby-page {
    width: calc(100% - 24px);
    margin-top: 10px;
    margin-left: 12px;
  }
  .slot-lobby-dots {
    bottom: 5px;
    gap: 4px;
  }
  .slot-lobby-dots span {
    width: 7px;
    height: 7px;
  }
  .slot-company-title {
    margin-top: 12px;
    gap: 10px;
    font-size: 16px;
  }
  .slot-company-title span {
    width: 29%;
  }
  .slot-game-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track,
  .partner-strip > div,
  .hero > img,
  .slot-visual img {
    animation: none;
  }
}
.theme-sapphire {
  --ink: #23375f;
  --muted: #8797b0;
  --line: #d8c59e;
  --paper: #f5f0e9;
  --panel: #e9e2dc;
  --gold: #d7b677;
  --footer: #09152f;
  --card-shadow: 0 15px 38px rgb(9 21 47 / 14%);
  color: #23375f;
  background:
    radial-gradient(circle at 76% 4%, rgb(60 80 125 / 16%), transparent 30rem),
    linear-gradient(180deg, #f8f4ee 0%, #eef1f5 52%, #f5f0e9 100%);
}
.theme-sapphire .side-rail {
  color: #f5f0e9;
  background:
    radial-gradient(circle at 0 10%, rgb(60 80 125 / 68%), transparent 17rem),
    linear-gradient(180deg, #112250 0%, #09152f 100%);
  border-right: 1px solid rgb(224 197 143 / 66%);
  box-shadow: 7px 0 30px rgb(9 21 47 / 24%);
}
.theme-sapphire .brand-rail-logo {
  display: flex;
  width: 215px;
  height: 48px;
  align-items: center;
  color: #f5f0e9;
  font-family: Georgia, "Times New Roman", serif;
  white-space: nowrap;
}
.theme-sapphire .brand-rail-logo b {
  display: grid;
  width: 43px;
  height: 43px;
  margin-right: 13px;
  place-items: center;
  color: #112250;
  border: 1px solid #e0c58f;
  background: #e0c58f;
  font-size: 27px;
  font-weight: 500;
  line-height: 1;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.theme-sapphire .brand-rail-logo em {
  color: #f5f0e9;
  font-size: 25px;
  font-style: normal;
  letter-spacing: .13em;
}
.theme-sapphire .brand-wordmark {
  display: inline-flex;
  align-items: center;
  color: #f5f0e9;
  font-family: Georgia, "Times New Roman", serif;
  white-space: nowrap;
}
.theme-sapphire .brand-wordmark > b {
  display: grid;
  width: 34px;
  height: 34px;
  margin-right: 10px;
  place-items: center;
  color: #112250;
  border: 1px solid #e0c58f;
  background: #e0c58f;
  font-size: 21px;
  font-weight: 500;
}
.theme-sapphire .brand-wordmark > span {
  font-size: 24px;
  letter-spacing: .16em;
}
.theme-sapphire .brand-mark.brand-mark,
.theme-sapphire .brand-mark.brand-mark > span,
.theme-sapphire .brand-featured-icon {
  color: #e0c58f;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}
.theme-sapphire .rail-item.is-featured .brand-featured-icon {
  opacity: 1;
}
.theme-sapphire .brand-wordmark.mobile-header-logo {
  display: none;
}
.theme-sapphire .brand-wordmark.board-writer-logo {
  display: inline-flex;
  width: 86px;
  height: 28px;
  justify-content: center;
  color: #112250;
}
.theme-sapphire .brand-wordmark.board-writer-logo > b {
  width: 24px;
  height: 24px;
  margin-right: 5px;
  font-size: 14px;
}
.theme-sapphire .brand-wordmark.board-writer-logo > span {
  font-size: 11px;
  letter-spacing: .08em;
}
.theme-sapphire .footer-brand > .brand-wordmark.footer-brand-logo {
  display: inline-flex;
  height: 44px;
  margin-bottom: 20px;
}
.theme-sapphire .footer-brand > .brand-wordmark.footer-brand-logo > b {
  width: 40px;
  height: 40px;
}
.theme-sapphire .footer-brand > .brand-wordmark.footer-brand-logo > span {
  font-size: 27px;
}
.theme-sapphire .rail-logo-frame img {
  filter: brightness(0) invert(1) sepia(.08);
}
.theme-sapphire .rail-group,
.theme-sapphire.rail-expanded .rail-group {
  border-color: rgb(224 197 143 / 38%);
  background: rgb(245 240 233 / 6%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 8%);
}
.theme-sapphire .rail-group-visitor::before,
.theme-sapphire .rail-item,
.theme-sapphire .rail-item:last-child {
  border-color: rgb(224 197 143 / 36%);
}
.theme-sapphire .rail-button,
.theme-sapphire .rail-label,
.theme-sapphire .rail-icon {
  color: #bcc9dc;
}
.theme-sapphire .rail-item.is-active .rail-icon,
.theme-sapphire .rail-button:hover .rail-icon,
.theme-sapphire .rail-button:focus-visible .rail-icon,
.theme-sapphire .rail-button:hover .rail-label,
.theme-sapphire .rail-button:focus-visible .rail-label,
.theme-sapphire.rail-expanded .rail-item.is-active .rail-label {
  color: #e0c58f;
}
.theme-sapphire .rail-badge {
  color: #112250;
  background: #e0c58f;
  box-shadow: 0 3px 12px rgb(0 0 0 / 22%);
}
.theme-sapphire .top-header {
  color: #23375f;
  background: rgb(245 240 233 / 91%);
  border-bottom: 1px solid rgb(201 169 106 / 46%);
  box-shadow: 0 8px 26px rgb(9 21 47 / 10%);
  backdrop-filter: blur(16px);
}
.theme-sapphire .speaker-icon,
.theme-sapphire .waiting-copy,
.theme-sapphire .ticker-track strong {
  color: #3c507d;
}
.theme-sapphire .auth-buttons .login {
  background: linear-gradient(135deg, #112250, #3c507d);
}
.theme-sapphire .auth-buttons .join {
  color: #112250;
  background: linear-gradient(135deg, #e0c58f, #c9a96a);
}
.theme-sapphire .auth-buttons .guest {
  color: #112250;
  border: 1px solid rgb(17 34 80 / 16%);
  background: #f5f0e9;
}
.theme-sapphire .site-content {
  background:
    linear-gradient(90deg, transparent 0 97%, rgb(60 80 125 / 4%) 97% 100%),
    linear-gradient(180deg, #f5f0e9 0%, #eef1f5 62%, #f5f0e9 100%);
}
.theme-sapphire .hero {
  height: min(calc((100vw - var(--rail-width)) * .43), 710px);
  min-height: 260px;
  background: #09152f;
  border-bottom: 1px solid #c9a96a;
}
.theme-sapphire .hero::after {
  position: absolute;
  inset: 18px;
  border: 1px solid rgb(224 197 143 / 55%);
  border-radius: 22px;
  content: "";
  pointer-events: none;
}
.theme-sapphire .sapphire-hero-art {
  object-position: center center;
  animation: sapphire-reveal 900ms ease both;
}
@keyframes sapphire-reveal {
  from { opacity: .45; transform: scale(1.02); }
  to { opacity: 1; transform: scale(1); }
}
.theme-sapphire .sapphire-hero-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: clamp(42px, 7vw, 132px);
  display: flex;
  max-width: min(46vw, 620px);
  color: #f5f0e9;
  flex-direction: column;
  transform: translateY(-50%);
  text-shadow: 0 3px 18px rgb(0 0 0 / 46%);
}
.theme-sapphire .sapphire-hero-copy span {
  color: #e0c58f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(12px, 1.1vw, 17px);
  letter-spacing: .28em;
}
.theme-sapphire .sapphire-hero-copy strong {
  margin-top: 15px;
  font-family: Georgia, "Batang", serif;
  font-size: clamp(30px, 4vw, 66px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: 1.15;
}
.theme-sapphire .sapphire-hero-copy small {
  margin-top: 26px;
  color: #c3cfdf;
  font-family: Georgia, serif;
  font-size: clamp(9px, .8vw, 12px);
  letter-spacing: .21em;
}
.theme-sapphire .hero-dots {
  display: none;
}
.theme-sapphire .game-section > h2,
.theme-sapphire .slot-copy h2,
.theme-sapphire .page-heading h2,
.theme-sapphire .info-card h2,
.theme-sapphire .live-casino-panel h2,
.theme-sapphire .slot-company-title {
  color: #112250;
  font-family: Georgia, "Batang", serif;
  font-weight: 500;
}
.theme-sapphire .game-section > h2 > span:last-child,
.theme-sapphire .page-heading p,
.theme-sapphire .brand-mark,
.theme-sapphire .board-title-icon,
.theme-sapphire .board-title-line h2 {
  color: #c49a52;
}
.theme-sapphire .game-card,
.theme-sapphire .category-card,
.theme-sapphire .member-lock-card,
.theme-sapphire .info-card {
  color: #3c507d;
  border-color: rgb(201 169 106 / 55%);
  background: linear-gradient(145deg, #fffdf8, #e9e2dc);
  box-shadow: 0 15px 34px rgb(17 34 80 / 12%), inset 0 1px 0 #fff;
}
.theme-sapphire .game-card:hover,
.theme-sapphire .game-card:focus-visible,
.theme-sapphire .category-card:hover,
.theme-sapphire .category-card:focus-visible {
  border-color: #c49a52;
  box-shadow: 0 18px 38px rgb(17 34 80 / 24%);
}
.theme-sapphire .game-card::after {
  background: rgb(9 21 47 / 0%);
}
.theme-sapphire .game-card:hover::after,
.theme-sapphire .game-card:focus-visible::after {
  background: rgb(9 21 47 / 64%);
}
.theme-sapphire .game-title {
  color: #112250;
  border-top-color: rgb(201 169 106 / 35%);
  background: linear-gradient(180deg, #fffdf8, #e9e2dc);
  font-family: Georgia, "Batang", serif;
}
.theme-sapphire .card-ribbon.daily,
.theme-sapphire .card-ribbon.event,
.theme-sapphire .card-ribbon.hot {
  color: #112250;
  background: #e0c58f;
}
.theme-sapphire .slot-section,
.theme-sapphire .live-casino-page,
.theme-sapphire .slot-lobby-page,
.theme-sapphire .board-page,
.theme-sapphire .category-page,
.theme-sapphire .member-page {
  background-color: transparent;
}
.theme-sapphire .slot-stage,
.theme-sapphire .live-casino-panel,
.theme-sapphire .slot-lobby-content,
.theme-sapphire .board-table-wrap {
  border-color: rgb(201 169 106 / 45%);
  background: rgb(255 253 248 / 84%);
  box-shadow: 0 18px 45px rgb(17 34 80 / 10%);
}
.theme-sapphire .slot-actions button,
.theme-sapphire .slot-tabs button.active,
.theme-sapphire .slot-provider-list button.active,
.theme-sapphire .member-lock-card button,
.theme-sapphire .dialog-confirm {
  color: #f5f0e9;
  background: linear-gradient(135deg, #112250, #3c507d);
  border-color: #c9a96a;
}
.theme-sapphire .slot-tabs,
.theme-sapphire .slot-provider-zone,
.theme-sapphire .slot-search input,
.theme-sapphire .slot-game-card,
.theme-sapphire .live-casino-card {
  border-color: rgb(201 169 106 / 42%);
  background-color: #fffdf8;
}
.theme-sapphire .slot-game-name,
.theme-sapphire .live-casino-name,
.theme-sapphire .category-card strong,
.theme-sapphire .member-lock-card h3 {
  color: #112250;
}
.theme-sapphire .page-heading,
.theme-sapphire .board-title-line,
.theme-sapphire .board-title-rule {
  border-color: #c9a96a;
}
.theme-sapphire .board-table-wrap th,
.theme-sapphire .board-important {
  color: #f5f0e9;
  background: #3c507d;
}
.theme-sapphire .board-table-wrap td {
  color: #3c507d;
  border-bottom-color: rgb(60 80 125 / 18%);
}
.theme-sapphire .board-pagination button.active,
.theme-sapphire .board-pagination button:hover,
.theme-sapphire .board-pagination button:focus-visible {
  background: #112250;
}
.theme-sapphire .sports-book-page {
  color: #e8edf5;
  background: #09152f;
}
.theme-sapphire .sports-league-nav,
.theme-sapphire .sports-bet-slip,
.theme-sapphire .sports-category-tabs,
.theme-sapphire .sports-league-heading,
.theme-sapphire .prematch-row > header,
.theme-sapphire .live-match-card,
.theme-sapphire .prematch-row {
  border-color: rgb(224 197 143 / 30%);
  background-color: #112250;
}
.theme-sapphire .sports-category-tabs button.active,
.theme-sapphire .sports-league-nav button:hover,
.theme-sapphire .sports-league-nav button:focus-visible,
.theme-sapphire .sports-bet-slip > h2,
.theme-sapphire .live-status {
  color: #112250;
  background: #e0c58f;
}
.theme-sapphire .live-odds-row button,
.theme-sapphire .prematch-odds button,
.theme-sapphire .saba-odds-grid button {
  color: #112250;
  border-color: rgb(201 169 106 / 55%);
  background: #f5f0e9;
}
.theme-sapphire .live-odds-row button:hover,
.theme-sapphire .prematch-odds button:hover,
.theme-sapphire .saba-odds-grid button:hover {
  background: #e0c58f;
}
.theme-sapphire .saba-sports-page,
.theme-sapphire .saba-toolbar,
.theme-sapphire .saba-sport-tree,
.theme-sapphire .saba-board,
.theme-sapphire .saba-slip-tabs,
.theme-sapphire .saba-league {
  border-color: rgb(224 197 143 / 34%);
  background-color: #112250;
}
.theme-sapphire .info-card h2 span,
.theme-sapphire .info-card li button:hover,
.theme-sapphire .info-card li button:focus-visible {
  color: #c49a52;
}
.theme-sapphire .site-footer {
  color: #b9c4d5;
  background:
    radial-gradient(circle at 78% 20%, rgb(60 80 125 / 45%), transparent 30rem),
    linear-gradient(145deg, #112250, #09152f 70%);
  border-top: 1px solid #c9a96a;
}
.theme-sapphire .footer-brand > img {
  filter: brightness(0) invert(1) sepia(.08);
}
.theme-sapphire .footer-help h2,
.theme-sapphire .footer-links h2,
.theme-sapphire .footer-help h2 span,
.theme-sapphire .partner-strip b {
  color: #e0c58f;
}
.theme-sapphire .chat-button {
  color: #112250;
  background: linear-gradient(145deg, #e0c58f, #c9a96a);
  box-shadow: 0 10px 28px rgb(9 21 47 / 28%);
}
.theme-sapphire .chat-card,
.theme-sapphire .demo-dialog,
.theme-sapphire .promo-card {
  color: #23375f;
  border: 1px solid rgb(201 169 106 / 60%);
  background: #f5f0e9;
}
@media (max-width: 720px) {
  .theme-sapphire .hero {
    height: 430px;
  }
  .theme-sapphire .hero::after {
    inset: 10px;
    border-radius: 14px;
  }
  .theme-sapphire .sapphire-hero-art {
    object-position: 67% center;
  }
  .theme-sapphire .sapphire-hero-copy {
    top: auto;
    right: 26px;
    bottom: 40px;
    left: 26px;
    max-width: none;
    padding: 18px;
    border: 1px solid rgb(224 197 143 / 48%);
    background: rgb(9 21 47 / 74%);
    backdrop-filter: blur(6px);
    transform: none;
  }
  .theme-sapphire .sapphire-hero-copy strong {
    font-size: 30px;
  }
}
.static-dialog { z-index: 1000; }
.static-backdrop { z-index: 90; }
.slot-game-card[hidden] { display: none !important; }