:root {
  --bg: #070716;
  --bar: #1d1a2a;
  --nav: #05051c;
  --line: #6a3dff;
  --text: #f4f6ff;
  --muted: #c9c6d8;
  --purple: #7a3dff;
  --blue: #4d7dff;
  --max: 1280px;
  --topbar-h: 72px;
  --font: "Apple SD Gothic Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  background: var(--bg);
  color: var(--text);
  font: 15px/1.5 var(--font);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

.shell {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.topbar {
  position: relative;
  z-index: 50;
  overflow: visible;
  background: #0d0f15;
}

.topbar-inner {
  height: var(--topbar-h);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  padding: 0 28px 0 40px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  height: 60px;
  width: auto;
  max-width: none;
}

.brand-mark {
  display: none;
}

.ticker {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  width: 100%;
  max-width: 690px;
  justify-self: center;
  height: 34px;
  padding: 0 14px 0 10px;
  border: 1px solid rgba(168, 85, 247, .5);
  border-radius: 999px;
  background: linear-gradient(180deg, #161226, #100c1c);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}

.ticker-ico {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: #e879f9;
  filter: drop-shadow(0 0 6px rgba(232, 121, 249, .7));
}

.ticker-ico svg {
  width: 18px;
  height: 18px;
}

.ticker-view {
  overflow: hidden;
  min-width: 0;
  flex: 1;
}

.ticker-item {
  padding-right: 56px;
}

.ticker-track {
  display: flex;
  margin: 0;
  width: max-content;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.02em;
  white-space: nowrap;
  animation: ticker-run 12s linear infinite;
}

@keyframes ticker-run {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.top-utils {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.util {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f3f2f8;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.util-ico {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #fff;
}

.util-ico svg {
  width: 24px;
  height: 24px;
}

.util-bypass {
  font-size: 16px;
  gap: 10px;
}

.util-bypass .util-ico {
  width: 36px;
  height: 36px;
}

.util-bypass .util-ico svg {
  width: 31px;
  height: 31px;
}

.tg-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: transparent;
}

.tg-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.util-tg:hover .tg-mark {
  transform: translateY(-1px);
}

.icon-btn {
  position: relative;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1.5px solid rgba(255,255,255,.82);
  border-radius: 50%;
  background: transparent;
  color: #fff;
}

.icon-btn svg {
  width: 16px;
  height: 16px;
}

.icon-btn em {
  position: absolute;
  top: -5px;
  right: -4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #b14dff;
  color: #fff;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.auth {
  appearance: none;
  min-width: 86px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 2px;
  background: #0a0b12;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: box-shadow .18s ease, filter .18s ease;
}

.auth.is-login {
  border: 1px solid #3d5cff;
  box-shadow:
    0 -6px 12px rgba(61, 92, 255, .45),
    0 6px 12px rgba(61, 92, 255, .45),
    inset 0 8px 10px rgba(67, 90, 224, .18),
    inset 0 -8px 10px rgba(67, 90, 224, .18);
}

.auth.is-join {
  border: 1px solid #b14dff;
  box-shadow:
    0 -6px 12px rgba(177, 77, 255, .48),
    0 6px 12px rgba(177, 77, 255, .48),
    inset 0 8px 10px rgba(196, 93, 255, .2),
    inset 0 -8px 10px rgba(196, 93, 255, .2);
}

.auth.is-login:hover,
.auth.is-login:focus-visible {
  filter: brightness(1.12);
}

.auth.is-join:hover,
.auth.is-join:focus-visible {
  filter: brightness(1.12);
}

body.is-in .auth { display: none; }

.sess {
  display: none;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 70;
}

body.is-in .sess { display: flex; }

.sess-bal {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 12px 0 8px;
  border: 1.4px solid rgba(255,255,255,.78);
  border-radius: 999px;
  background: #0a0c12;
  color: #fff;
}

.sess-plus {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.sess-krw {
  display: grid;
  gap: 1px;
  text-align: left;
}

.sess-krw b {
  font-size: 11px;
  font-weight: 800;
  line-height: 1.15;
}

.sess-user { position: relative; }

.sess-avatar {
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1.5px solid rgba(255,255,255,.82);
  border-radius: 50%;
  background: #0a0c12;
  color: #fff;
}

.sess-avatar svg { width: 20px; height: 20px; }

.sess-avatar.is-on,
.sess-avatar[aria-expanded="true"] {
  border-color: #c4b5fd;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, .22);
}

.sess-dot {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 2px #0d0f15;
}

.sess-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 252px;
  padding: 10px 10px 8px;
  border-radius: 14px;
  background: #0b1424;
  border: 1px solid rgba(125, 211, 252, .38);
  box-shadow:
    0 0 0 1px rgba(168, 85, 247, .22),
    0 0 28px rgba(168, 85, 247, .38),
    0 18px 40px rgba(0,0,0,.5);
}

.sess-rank {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 50px;
  padding: 0 12px;
  margin-bottom: 4px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(90deg, #4a2f78, #2d2154);
  color: #fff;
  text-align: left;
}

.sess-be {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background:
    radial-gradient(circle at 30% 28%, #7dd3fc 0%, #818cf8 46%, #c026d3 100%);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .02em;
}

.sess-rank strong {
  flex: 1;
  font-size: 14px;
  font-weight: 800;
}

.sess-rank svg {
  width: 16px;
  height: 16px;
  color: #fff;
}

.sess-menu nav { display: grid; }

.sess-menu nav button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 42px;
  padding: 0 8px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}

.sess-menu nav button:last-child { border-bottom: 0; }

.sess-menu nav button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.sess-menu nav button:hover,
.sess-rank:hover {
  filter: brightness(1.08);
}

.sess-note {
  margin-left: auto;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.sess-menu nav button.is-out {
  color: #f87171;
}

.lang {
  position: relative;
  z-index: 60;
  flex-shrink: 0;
}

.lang-toggle,
.lang-btn {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 8px 6px;
  border-radius: 24px;
  background: rgba(7, 9, 16, .92);
  box-shadow: 0 12px 28px rgba(0,0,0,.45), 0 0 0 1px rgba(92, 126, 255, .22);
}

.lang-menu[hidden] { display: none; }

.lang-ring {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #070b14;
  box-shadow:
    0 0 0 1.5px rgba(92, 126, 255, .95),
    0 0 10px rgba(78, 118, 255, .42);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.lang-btn:hover .lang-ring,
.lang-btn:focus-visible .lang-ring {
  transform: scale(1.06);
  box-shadow:
    0 0 0 1.6px #8eb0ff,
    0 0 14px rgba(110, 150, 255, .7);
}

.lang-btn.is-active .lang-ring {
  box-shadow:
    0 0 0 2px #9ec2ff,
    0 0 16px rgba(120, 165, 255, .85);
}

.lang-disc {
  display: block;
  width: 28px;
  height: 28px;
  overflow: hidden;
  border-radius: 50%;
  background: #10141f;
}

.lang-disc svg {
  display: block;
  width: 100%;
  height: 100%;
  transform: scale(1.42);
  transform-origin: center;
}

.nav-toggle {
  display: none;
}

.nav-dim {
  display: none;
}

.nav-panel {
  display: contents;
}

.nav {
  width: 100%;
  background: #0d0f15;
  border-top: 2px solid #8c2cf0;
  border-bottom: 2px solid #8c2cf0;
  box-shadow:
    0 -4px 14px rgba(140, 44, 240, .28),
    0 4px 14px rgba(140, 44, 240, .28);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 56px;
  padding-left: 40px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 0;
  overflow-x: auto;
}

.menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 56px;
  padding-top: 25px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.02em;
  white-space: nowrap;
}

.ico-broadcast {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 24px;
  height: 15px;
  transform: translateX(-50%);
  overflow: visible;
  color: #ff2d3a;
  filter: drop-shadow(0 0 5px rgba(255, 45, 58, .75));
}

.ico-broadcast .live-dot {
  transform-box: fill-box;
  transform-origin: center;
  animation: live-dot 1.2s ease-in-out infinite;
}

.ico-broadcast .live-wave {
  animation: live-wave 1.6s ease-out infinite;
}

.ico-broadcast .live-wave.is-outer {
  animation-delay: .28s;
}

.live-tv {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 11px;
  padding: 0 4px;
  border-radius: 2px;
  background: #fff;
  color: #111;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1;
}
.live-tv::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 8px;
  height: 3px;
  transform: translateX(-50%);
  background:
    linear-gradient(#fff, #fff) 50% 0 / 1.2px 3px no-repeat,
    linear-gradient(#fff, #fff) 0 0 / 3.5px 1.2px no-repeat,
    linear-gradient(#fff, #fff) 100% 0 / 3.5px 1.2px no-repeat;
}

.new {
  position: absolute;
  top: 5px;
  left: 50%;
  height: 13px;
  padding: 0 5px;
  border-radius: 3px;
  background: linear-gradient(180deg, #ff4b63 0%, #e10600 100%);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 13px;
  animation: new-pulse 1.35s ease-in-out infinite;
}

.menu-more {
  gap: 5px;
}

.chevron {
  width: 9px;
  height: 6px;
  margin-top: 2px;
}

.event {
  --event-t: 5.4s;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 10px;
  width: 314px;
  height: 40px;
  margin-left: auto;
  margin-right: 16px;
  padding: 0 24px 0 16px;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  flex-shrink: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.01em;
  text-decoration: none;
  background:
    linear-gradient(108deg, rgba(78, 46, 148, .94), rgba(16, 10, 36, .96) 58%, rgba(42, 22, 82, .9));
  box-shadow:
    0 0 0 1px rgba(186, 150, 255, .5),
    0 0 18px rgba(124, 72, 230, .34);
  animation: event-mood var(--event-t) ease-in-out infinite;
}

.event::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, .13), transparent 46%);
  pointer-events: none;
}

.event::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -46%;
  z-index: 1;
  width: 42%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .18), transparent);
  transform: skewX(-22deg);
  animation: event-sheen var(--event-t) ease-in-out infinite;
  pointer-events: none;
}

.event > span {
  position: relative;
  z-index: 3;
}

.event-fx {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
}

.event-wash,
.event-rim,
.event-pop,
.event-sparks {
  position: absolute;
  inset: -6px;
  pointer-events: none;
}

.event-wash {
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186, 140, 255, .34) 0 28%, transparent 68%);
  animation: event-wash var(--event-t) ease-in-out infinite;
}

.event-rim {
  border-radius: 50%;
  background: conic-gradient(from 200deg, transparent 0 58%, rgba(255, 226, 170, .55), rgba(255, 150, 190, .4), transparent 78%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 100%);
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 100%);
  animation: event-spin var(--event-t) linear infinite;
}

.event-pop {
  left: 2px;
  right: 2px;
  top: 2px;
  bottom: 2px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 236, 190, .72) 0 18%, rgba(255, 140, 190, .18) 42%, transparent 70%);
  transform: scale(.2);
  opacity: 0;
  animation: event-pop var(--event-t) ease-out infinite;
}

.event-sparks i {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 3px;
  height: 3px;
  margin: -1.5px;
  border-radius: 50%;
  background: #fff6d2;
  box-shadow: 0 0 6px rgba(255, 220, 140, .9);
  opacity: 0;
  animation: event-spark var(--event-t) ease-out infinite;
}

.event-sparks i:nth-child(1) { --a: -18deg; --d: 16px; }
.event-sparks i:nth-child(2) { --a: -52deg; --d: 18px; background: #ffd36a; }
.event-sparks i:nth-child(3) { --a: -88deg; --d: 15px; background: #ff9ec8; }
.event-sparks i:nth-child(4) { --a: -124deg; --d: 17px; }
.event-sparks i:nth-child(5) { --a: 16deg; --d: 15px; background: #c9b4ff; }
.event-sparks i:nth-child(6) { --a: 48deg; --d: 18px; background: #ffd36a; }
.event-sparks i:nth-child(7) { --a: -160deg; --d: 14px; background: #ffb0c8; }
.event-sparks i:nth-child(8) { --a: 78deg; --d: 13px; }

.event-gift {
  position: relative;
  z-index: 4;
  width: 22px;
  height: 20px;
}

.event-body,
.event-lid {
  position: absolute;
  display: block;
}

.event-body {
  left: 2px;
  right: 2px;
  bottom: 0;
  height: 12px;
  border-radius: 2px 2px 3px 3px;
  background: linear-gradient(180deg, #8a68ff 0%, #4d32e6 58%, #2a1878 100%);
  box-shadow: 0 2px 5px rgba(40, 16, 90, .45);
}

.event-body::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #ffe08a, #ff9ec0);
}

.event-lid {
  left: 1px;
  right: 1px;
  top: 2px;
  height: 8px;
  border-radius: 3px 3px 1px 1px;
  background: linear-gradient(180deg, #c8a8ff 0%, #6d4dff 100%);
  transform-origin: 14% 100%;
  animation: event-lid var(--event-t) cubic-bezier(.2, .85, .24, 1) infinite;
}

.event-lid::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #ffe08a, #ffb0c8);
}

.event-lid::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -5px;
  width: 11px;
  height: 6px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 22% 62%, #ffd56a 0 2.1px, transparent 2.2px),
    radial-gradient(circle at 78% 62%, #ffb0d2 0 2.1px, transparent 2.2px),
    radial-gradient(circle at 50% 78%, #ffe08a 0 1.4px, transparent 1.5px);
}

@media (min-width: 1280px) {
  .nav-inner {
    height: 56px;
    padding-left: 40px;
  }
  .menu {
    gap: 32px;
  }
  .menu a {
    height: 56px;
    padding-top: 25px;
    font-size: 15px;
    font-weight: 700;
  }
  .event {
    width: 314px;
    height: 40px;
  }
}

.hero {
  position: relative;
  width: 100%;
  padding: 18px 70px 8px;
  overflow: hidden;
  background: #070716;
}

.stage {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(320px, .92fr);
  gap: 12px;
  align-items: start;
}

.stage-promo {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 1024 / 366;
  overflow: hidden;
  border: 1px solid #3aa7ff;
  box-shadow: 0 0 18px rgba(58, 167, 255, .22);
  background: #061018;
}

.promo-track {
  position: absolute;
  inset: 0;
}

.promo-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-color: #061018;
  transition: opacity .8s ease;
}

.promo-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.promo-slide.is-active { opacity: 1; z-index: 1; }

.stage-copy {
  position: relative;
  z-index: 2;
  max-width: 18em;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 28px 52px;
}

.promo-dots {
  position: absolute;
  left: 28px;
  bottom: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
}

.promo-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1.5px solid rgba(255,255,255,.75);
  border-radius: 999px;
  background: transparent;
}

.promo-dots button.is-active {
  width: 28px;
  border-color: transparent;
  background: #3aa7ff;
  box-shadow: 0 0 10px rgba(58, 167, 255, .55);
}

.stage-copy h1 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.25;
  word-break: keep-all;
  text-shadow: 0 8px 24px rgba(0, 0, 0, .45);
}

.stage-copy p {
  margin: 0;
  color: #e8eefc;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 600;
  line-height: 1.55;
  word-break: keep-all;
}

.liveboard {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  padding: 10px;
  border: 1px solid #8c2cf0;
  background: linear-gradient(180deg, rgba(18, 8, 32, .92), rgba(8, 6, 16, .96));
  box-shadow: 0 0 18px rgba(140, 44, 240, .18);
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.stat-box {
  --c: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-height: 64px;
  padding: 10px 14px;
  color: #fff;
  background: linear-gradient(90deg, #7a3dff, #c45dff);
  clip-path: var(--c);
  filter: drop-shadow(0 0 8px rgba(140, 70, 255, .35));
}

.stat-box::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  background: #0b0816;
  clip-path: var(--c);
}

.stat-box > * { position: relative; z-index: 1; }

.stat-box span {
  color: #d7c8ff;
  font-size: 13px;
  font-weight: 700;
}

.stat-box strong {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: .02em;
  text-shadow: 0 0 14px rgba(210, 180, 255, .45);
  font-variant-numeric: tabular-nums;
}

.stat-box strong.is-flash {
  animation: stat-flash .4s ease;
}

.feed h2 {
  display: flex;
  margin: 0 0 8px;
}

.feed h2 b {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 10px;
  background: #7b3dff;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -.02em;
  box-shadow: 0 0 10px rgba(123, 61, 255, .4);
}

.feed-grid {
  display: grid;
  gap: 6px;
}

.feed-grid.is-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feed-grid.is-6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.feed-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 54px;
  padding: 8px 10px;
  overflow: hidden;
  border: 1px solid rgba(180, 150, 255, .28);
  background: #100c1c;
  color: #fff;
}

.feed-card.is-in {
  animation: feed-in .45s ease;
}

.feed-card .uid {
  color: #cfc6e6;
  font-size: 12px;
  font-weight: 700;
}

.feed-card .amt {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.feed-card .amt svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.feed-new {
  position: absolute;
  top: 0;
  right: 0;
  width: 46px;
  height: 46px;
  overflow: hidden;
  pointer-events: none;
}

.feed-new span {
  position: absolute;
  top: 7px;
  right: -18px;
  width: 64px;
  padding: 2px 0;
  background: #2f6dff;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: -.02em;
  text-align: center;
  transform: rotate(45deg);
  box-shadow: 0 0 8px rgba(47, 109, 255, .45);
}

@keyframes stat-flash {
  0%, 100% { text-shadow: 0 0 14px rgba(210, 180, 255, .45); }
  50% { color: #fff; text-shadow: 0 0 18px rgba(170, 120, 255, .9); }
}

@keyframes feed-in {
  from { opacity: .35; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.hot {
  padding: 8px 70px 28px;
}

.hot-inner {
  width: 100%;
}

.hot-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #8c2cf0;
}

.hot-chip {
  --cut: 10px;
  --c: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  position: relative;
  display: block;
  height: 40px;
  margin: 0;
  padding: 1.5px;
  border: 0;
  background: #a24dff;
  clip-path: var(--c);
  filter: drop-shadow(0 0 7px rgba(162, 77, 255, .55));
  color: #fff;
  cursor: pointer;
}

.hot-chip-in {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 100%;
  padding: 0 14px;
  background: #090812;
  clip-path: var(--c);
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
}

.hot-chip.is-title {
  --c: polygon(var(--cut) 0, 100% 0, 100% 100%, 0 100%, 0 var(--cut));
  cursor: default;
}

.hot-chip.is-title .hot-chip-in {
  padding: 0 18px 0 20px;
  background: #a24dff;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.02em;
  text-shadow: 0 0 10px rgba(255, 255, 255, .25);
}

.hot-chip.is-evo {
  --c: polygon(0 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 2px 100%, 0 calc(100% - 2px));
  background: linear-gradient(90deg, #6d2ad8 0%, #e14cff 100%);
}

.hot-chip.is-pp {
  --c: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
}

.hot-chip.is-haba {
  --c: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
}

.hot-chip.is-bn {
  --c: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
}

.hot-chip.is-cq9 {
  --c: polygon(0 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 2px 100%, 0 calc(100% - 2px));
}

.hot-chip.is-png {
  --c: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
}

.hot-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  overflow-x: auto;
}

.hot-tab.is-active,
.hot-tab:hover {
  filter: drop-shadow(0 0 11px rgba(186, 110, 255, .85));
}

.prov-logo {
  display: block;
  height: 20px;
  width: auto;
  max-width: 92px;
  object-fit: contain;
}

.prov-logo.is-cq9 { height: 18px; }
.prov-logo.is-png { height: 22px; }

.prov-name {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.hot-frame {
  position: relative;
  padding: 14px;
  background:
    linear-gradient(#241046, #140828) padding-box,
    linear-gradient(180deg, #a56bff, #4a1d9c) border-box;
  border: 3px solid transparent;
  clip-path: polygon(16px 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%, 0 16px);
  box-shadow: 0 0 28px rgba(122, 45, 255, .28), inset 0 0 0 1px rgba(180, 120, 255, .18);
}

.hot-frame::before,
.hot-frame::after {
  content: "";
  position: absolute;
  top: 8px;
  width: 28px;
  height: 10px;
  background: repeating-linear-gradient(90deg, #4de8ff 0 3px, transparent 3px 6px);
  opacity: .85;
}

.hot-frame::before { left: 18px; }
.hot-frame::after { right: 18px; }

.hot-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.game-card {
  position: relative;
  min-width: 0;
  padding: 2px;
  background: linear-gradient(180deg, #b07aff 0%, #5b28c2 100%);
  clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%, 0 10px);
  transition: transform .25s ease, filter .25s ease;
}

.game-card.is-dim {
  filter: grayscale(.35) brightness(.55);
}

.game-card:hover {
  transform: translateY(-6px);
  filter: brightness(1.08);
  z-index: 1;
}

.game-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: #100818;
  clip-path: polygon(9px 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 0 100%, 0 9px);
}

.game-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 6px;
  height: 26px;
  padding: 0 8px;
  background: linear-gradient(180deg, #1d1033 0%, #140826 100%);
}

.game-head em {
  overflow: hidden;
  color: #d7c7ff;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.game-pips {
  display: flex;
  gap: 2px;
}

.game-pips b {
  width: 3px;
  height: 11px;
  background: #4de8ff;
  box-shadow: 0 0 6px #4de8ff;
}

.game-thumb {
  position: relative;
  aspect-ratio: 3 / 4.05;
  overflow: hidden;
}

.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .45s ease;
}

.game-card:hover .game-thumb img {
  transform: scale(1.06);
}

.game-card.is-poster {
  padding: 0;
  background: none;
  clip-path: none;
  align-self: start;
  overflow: hidden;
  filter: drop-shadow(0 0 10px rgba(176, 72, 255, .38));
}

.game-card.is-poster:hover {
  transform: none;
  filter: drop-shadow(0 0 16px rgba(198, 96, 255, .58));
}

.game-card.is-poster.is-dim {
  filter: grayscale(.35) brightness(.55) drop-shadow(0 0 6px rgba(176, 72, 255, .18));
}

.game-card.is-poster .game-card-inner {
  background: transparent;
  clip-path: none;
  overflow: visible;
}

.game-card.is-poster .game-thumb {
  aspect-ratio: 723 / 1024;
  overflow: hidden;
}

.game-card.is-poster .game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.game-card.is-poster:hover .game-thumb img {
  transform: none;
}

.game-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  pointer-events: none;
}

.game-title.is-live {
  gap: 6px;
}

.game-title.is-live strong {
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -.04em;
  text-shadow: 0 2px 0 #c81e5a, 0 0 12px rgba(255, 70, 140, .7);
}

.live-badge {
  display: inline-flex;
  align-items: center;
  height: 16px;
  padding: 0 7px;
  border-radius: 3px;
  background: #e10600;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .04em;
  box-shadow: 0 0 8px rgba(225, 6, 0, .5);
}

.game-title.is-candy {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  font-weight: 900;
  text-shadow: 0 2px 0 rgba(80, 0, 40, .45);
}

.game-title.is-candy b:first-child { color: #ff4fa3; font-size: 16px; }
.game-title.is-candy b:nth-child(2) { color: #ff8a1a; font-size: 16px; }
.game-title.is-candy small { color: #ffe14a; font-size: 14px; font-weight: 900; }

.game-title.is-myth b {
  color: #f3d37a;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .02em;
  text-shadow: 0 0 10px rgba(90, 160, 255, .6);
}

.game-title.is-myth span {
  color: #9ec7ff;
  font-size: 11px;
  font-weight: 800;
}

.game-title.is-myth small {
  margin-top: 2px;
  color: #dce7ff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

.game-title.is-korea {
  width: 86%;
  padding: 8px 6px;
  border: 1px solid rgba(255, 214, 120, .7);
  border-radius: 50%;
  background: rgba(20, 8, 4, .35);
}

.game-title.is-korea small,
.game-title.is-korea b {
  color: #ffe7b0;
  text-shadow: 0 1px 4px #000;
}

.game-title.is-korea small { font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.game-title.is-korea b { font-size: 11px; font-weight: 900; }

.game-title.is-kpop b {
  color: #ff4fd8;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .04em;
  text-shadow: 0 0 12px rgba(255, 79, 216, .7);
}

.game-title.is-kpop small {
  color: #c9a6ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}



.lobby {
  padding: 4px 70px 40px;
  scroll-margin-top: 20px;
}

.lobby-inner {
  width: 100%;
}

.lobby-tabs {
  display: flex;
  gap: 8px;
  padding: 8px;
  border-radius: 16px;
  background: #12081f;
  border: 1px solid rgba(140, 44, 240, .28);
  box-shadow: inset 0 1px 0 rgba(162, 77, 255, .08);
}

.lobby-tab {
  flex: 1 1 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 88px;
  padding: 16px 20px;
  border: 1px solid rgba(140, 44, 240, .18);
  border-radius: 12px;
  background: linear-gradient(180deg, #1a1230 0%, #12081f 100%);
  color: #c9c6d8;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.02em;
  transition: border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.lobby-tab:hover {
  color: #f4f6ff;
  border-color: rgba(162, 77, 255, .45);
  background: linear-gradient(180deg, #24163e 0%, #161028 100%);
}

.lobby-tab.is-on {
  color: #fff;
  background: linear-gradient(180deg, #2a1848 0%, #17102c 100%);
  border-color: #8c2cf0;
  box-shadow: inset 0 0 0 1px rgba(196, 181, 253, .16), 0 0 18px rgba(140, 44, 240, .28);
}

.lobby-ico {
  display: block;
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  color: #8b7aa8;
  filter: grayscale(1);
  opacity: .7;
  transition: filter .22s ease, opacity .22s ease, color .22s ease, drop-shadow .22s ease;
}

.lobby-ico svg {
  display: block;
  width: 100%;
  height: 100%;
}

.lobby-ico .ico-a,
.lobby-ico .ico-b,
.lobby-ico .ico-c,
.lobby-ico .ico-card {
  fill: none;
  stroke: currentColor;
}

.lobby-ico .ico-fill {
  fill: currentColor;
  stroke: none;
}

.lobby-tab[data-lobby-tab="casino"] .ico-b {
  fill: currentColor;
}

.lobby-tab.is-on .lobby-ico {
  filter: none;
  opacity: 1;
}

.lobby-tab.is-on .lobby-ico {
  filter: drop-shadow(0 0 8px rgba(162, 77, 255, .35));
}

.lobby-tab[data-lobby-tab="casino"].is-on .lobby-ico { color: #e9d5ff; }
.lobby-tab[data-lobby-tab="casino"].is-on .ico-a { stroke: #c4b5fd; }
.lobby-tab[data-lobby-tab="casino"].is-on .ico-card { stroke: #f3e8ff; fill: rgba(196, 181, 253, .1); }
.lobby-tab[data-lobby-tab="casino"].is-on .ico-b,
.lobby-tab[data-lobby-tab="casino"].is-on .ico-fill { stroke: #e879f9; fill: #e879f9; }
.lobby-tab[data-lobby-tab="casino"].is-on .ico-c { stroke: #a78bfa; fill: rgba(167, 139, 250, .14); }

.lobby-tab[data-lobby-tab="slot"].is-on .lobby-ico { color: #f0abfc; }
.lobby-tab[data-lobby-tab="slot"].is-on .ico-a { stroke: #d8b4fe; }
.lobby-tab[data-lobby-tab="slot"].is-on .ico-card { stroke: #c4b5fd; fill: rgba(162, 77, 255, .12); }
.lobby-tab[data-lobby-tab="slot"].is-on .ico-b { stroke: #e879f9; fill: none; }
.lobby-tab[data-lobby-tab="slot"].is-on .ico-c { stroke: #a78bfa; }

.lobby-tab[data-lobby-tab="sports"].is-on .lobby-ico { color: #ddd6fe; }
.lobby-tab[data-lobby-tab="sports"].is-on .ico-a { stroke: #f4f6ff; }
.lobby-tab[data-lobby-tab="sports"].is-on .ico-b { stroke: #e879f9; fill: none; }
.lobby-tab[data-lobby-tab="sports"].is-on .ico-fill { fill: #e879f9; stroke: none; }
.lobby-tab[data-lobby-tab="sports"].is-on .ico-c { stroke: #a78bfa; fill: rgba(167, 139, 250, .16); }

.lobby-pane {
  margin-top: 16px;
}

.lobby-pane[hidden] {
  display: none !important;
}

.prov-bar {
  margin: 16px 0 14px;
  padding: 12px 14px 12px;
  border-radius: 10px;
  background: #0a101f;
  border: 1px solid rgba(255,255,255,.06);
}

.prov-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.prov-title {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.prov-title b {
  font-weight: 700;
  color: #c5c9d6;
}

.prov-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}

.prov-reset {
  height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  background: #2a3144;
  color: #d7dbe6;
  font-weight: 700;
  white-space: nowrap;
}

.prov-reset:hover { background: #343c52; }

.prov-search {
  position: relative;
  width: min(240px, 36vw);
}

.prov-search input {
  width: 100%;
  height: 36px;
  padding: 0 36px 0 12px;
  border: 1px solid #8b2cff;
  border-radius: 6px;
  background: #0c1220;
  color: #fff;
  font: inherit;
  outline: none;
}

.prov-search input::placeholder { color: #8b93a7; }
.prov-search input::-webkit-search-decoration,
.prov-search input::-webkit-search-cancel-button { appearance: none; }

.prov-search svg {
  position: absolute;
  right: 10px;
  top: 50%;
  width: 16px;
  height: 16px;
  color: #fff;
  transform: translateY(-50%);
  pointer-events: none;
}

.prov-more {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: #8b2cff;
  color: #fff;
  box-shadow: 0 0 12px rgba(139, 44, 255, .45);
}

.prov-more svg {
  display: block;
  width: 16px;
  height: 16px;
  transition: transform .2s ease;
}

.prov-bar.is-closed .prov-row { display: none; }
.prov-bar.is-closed .prov-more svg { transform: rotate(-180deg); }
.prov-bar.is-closed .prov-head {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.prov-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.prov-row.is-casino {
  display: grid;
  grid-template-columns: minmax(88px, 1.15fr) repeat(10, minmax(0, 1fr));
  grid-template-rows: repeat(2, 52px);
  align-items: stretch;
}

.prov-row.is-casino .prov-all {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: auto;
  min-width: 0;
  height: auto;
  font-size: 13px;
}

.prov-row.is-casino .prov-chip {
  width: auto;
  height: auto;
  min-width: 0;
}

.prov-row.is-slot {
  display: grid;
  grid-template-columns: minmax(88px, 1.15fr) repeat(11, minmax(0, 1fr));
  grid-template-rows: repeat(5, 52px);
  align-items: stretch;
}

.prov-row.is-slot .prov-all {
  grid-column: 1;
  grid-row: 1 / span 5;
  width: auto;
  min-width: 0;
  height: auto;
  font-size: 13px;
}

.prov-row.is-slot .prov-chip {
  width: auto;
  height: auto;
  min-width: 0;
}

.prov-chip.is-slot-more {
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid #2ee0c5;
  background: linear-gradient(180deg, #157a6c, #0d4f47);
  color: #e8fffb;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -.02em;
  box-shadow: 0 0 12px rgba(46, 224, 197, .28);
}

.prov-bar.is-slot-open .prov-chip.is-slot-more {
  border-color: #f3b04a;
  background: linear-gradient(180deg, #8a5a16, #5c3a0c);
  color: #fff6e4;
  box-shadow: 0 0 12px rgba(243, 176, 74, .3);
}


.prov-row.is-slot .prov-mark {
  font-size: 9px;
  letter-spacing: 0;
  line-height: 1.15;
  padding: 0 2px;
}

.prov-all,
.prov-chip {
  position: relative;
  height: 52px;
  border-radius: 8px;
  color: #fff;
}

.prov-all {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: 0 14px;
  border: 1px solid #8b2cff;
  background: #12182a;
  font-weight: 800;
}

.prov-chip {
  width: 118px;
  padding: 6px 10px;
  border: 1px solid transparent;
  background: #162035;
}

.prov-chip img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.prov-mark {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #f2f4f8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  text-align: center;
  line-height: 1.15;
}

.prov-all.is-on,
.prov-chip.is-on {
  border-color: #8b2cff;
  box-shadow: inset 0 0 0 1px rgba(139, 44, 255, .35);
}

.prov-chip.is-miss { display: none; }

.prov-tag {
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 1;
  height: 14px;
  padding: 0 5px;
  border-radius: 3px;
  background: #e1062c;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  line-height: 14px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.prov-tag.is-ex { background: #e67e22; }

.hits-card.is-hide { display: none; }



.hits-grid.is-sports {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hits-grid.is-sports .hits-card {
  aspect-ratio: 3 / 2;
}

.hits-grid.is-sports .hits-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.sport-copy {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 62%;
  padding: 22px 16px 22px 28px;
  background: linear-gradient(90deg, rgba(4, 10, 22, .62) 0%, rgba(4, 10, 22, .22) 70%, transparent 100%);
  pointer-events: none;
}

.sport-brand {
  display: block;
  margin: 0 0 10px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .55));
}

.sport-brand img {
  display: block;
  height: 28px;
  width: auto;
}

.sport-copy strong {
  color: #fff;
  font-size: clamp(17px, 1.55vw, 26px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.2;
  text-shadow: 0 0 18px rgba(80, 210, 255, .5), 0 2px 10px rgba(0, 0, 0, .7);
}

.sport-copy em {
  margin-top: 7px;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(11px, .8vw, 13px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.45;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .72);
}

.sport-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 16 / 11;
  padding: 14px 14px 12px;
  border-radius: 10px;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(122,61,255,.26), transparent 48%),
    linear-gradient(180deg, #171326 0%, #0c0a16 100%);
  border: 1px solid rgba(140, 44, 240, .26);
  color: #fff;
  transition: transform .2s ease, border-color .2s ease, filter .2s ease;
}

.sport-card:hover {
  transform: translateY(-3px);
  border-color: rgba(180, 110, 255, .5);
  filter: brightness(1.06);
}

.sport-card.is-basket {
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(255,140,60,.22), transparent 48%),
    linear-gradient(180deg, #1b1420 0%, #0e0a12 100%);
}

.sport-card.is-base {
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(80,170,255,.22), transparent 48%),
    linear-gradient(180deg, #121826 0%, #0a0e16 100%);
}

.sport-card.is-tennis {
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(170,220,70,.2), transparent 48%),
    linear-gradient(180deg, #141c16 0%, #0a120c 100%);
}

.sport-card.is-volley {
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(80,200,220,.2), transparent 48%),
    linear-gradient(180deg, #102026 0%, #0a1216 100%);
}

.sport-card.is-ufc {
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(255,70,70,.22), transparent 48%),
    linear-gradient(180deg, #1c1014 0%, #12080c 100%);
}

.sport-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.sport-kind {
  color: #d7c7ff;
  font-size: 12px;
  font-weight: 800;
}

.sport-live {
  display: inline-flex;
  align-items: center;
  height: 18px;
  padding: 0 7px;
  border-radius: 4px;
  background: #e1062c;
  box-shadow: 0 0 10px rgba(225, 6, 44, .55);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  animation: hot-pulse 1.15s ease-in-out infinite;
}

.sport-league {
  margin-top: 8px;
  color: #9aa4b8;
  font-size: 12px;
  font-weight: 700;
}

.sport-match {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.sport-match i {
  flex: 0 0 auto;
  color: #8b93a7;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.sport-match b {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sport-odds {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 6px;
  margin-top: 10px;
}

.sport-odds span {
  display: grid;
  place-items: center;
  height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: #e8edf5;
  font-size: 12px;
  font-weight: 800;
}

.hits {
  padding: 0 70px 32px;
}

.hits:last-of-type {
  padding-bottom: 40px;
}

.hits-inner {
  width: 100%;
}

.hits-head {
  display: flex;
  align-items: flex-end;
  margin-bottom: 12px;
  border-bottom: 1px solid #8c2cf0;
}

.hits-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 -1px;
  padding: 10px 20px 10px 14px;
  border: 1px solid #8c2cf0;
  border-bottom-color: transparent;
  background: #12081f;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.02em;
  white-space: nowrap;
}

.hits-ico {
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: #fff;
}

.hits-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.hits-card {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 917 / 575;
  overflow: hidden;
  border-radius: 10px;
  background: #16101f;
  border: 1px solid rgba(140, 44, 240, .22);
}

.hits-card.is-filled {
  border-color: transparent;
  background: transparent;
}

.hits-card.is-filled picture,
.hits-card.is-filled img {
  display: block;
  width: 100%;
  height: 100%;
}

.hits-card.is-filled img {
  object-fit: cover;
  object-position: center;
}

.hits-grid.is-live {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.hits-grid.is-live .hits-card {
  aspect-ratio: 1024 / 598;
}

.hits-grid.is-slot {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.hits-grid.is-slot .hits-card {
  aspect-ratio: 1 / 1;
  background: #0a0614;
}

.hits-grid.is-slot .hits-card img {
  object-fit: contain;
  object-position: center;
}

.hits-card.is-slot-grid-more {
  display: none;
  place-items: center;
  width: 100%;
  padding: 0;
  border: 1px solid #2ee0c5;
  background: linear-gradient(180deg, #157a6c, #0d4f47);
  color: #e8fffb;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 0 16px rgba(46, 224, 197, .28);
}

.hits-grid.is-slot-open .hits-card.is-slot-grid-more {
  border-color: #f3b04a;
  background: linear-gradient(180deg, #8a5a16, #5c3a0c);
  color: #fff6e4;
}

.hits-card.is-filled {
  transition: transform .2s ease, filter .2s ease;
}

.hits-card.is-filled:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
}

.hits-grid.is-live .hits-card.is-filled:hover,
.hits-grid.is-slot .hits-card.is-filled:hover {
  transform: none;
  filter: none;
}

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 10px 14px;
  background: rgba(6, 4, 16, .62);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

.play-orb {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .38);
}

.play-tri {
  width: 18px;
  height: 18px;
  margin-left: 2px;
  background: linear-gradient(180deg, #e14cff 0%, #9b4dff 48%, #6d2ad8 100%);
  clip-path: polygon(12% 6%, 12% 94%, 92% 50%);
}

.play-name {
  max-width: 92%;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .01em;
  line-height: 1.25;
  text-align: center;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .55);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.hits-grid.is-slot .play-orb {
  width: 22px;
  height: 22px;
}

.hits-grid.is-slot .play-tri {
  width: 14px;
  height: 14px;
}

.hits-grid.is-slot .play-name {
  font-size: 12px;
}

.hits-grid.is-live .hits-card:focus-visible .play-overlay,
.hits-grid.is-slot .hits-card:focus-visible .play-overlay,
.hot-grid .game-card:focus-visible .play-overlay {
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  .hits-grid.is-live .hits-card:hover .play-overlay,
  .hits-grid.is-slot .hits-card:hover .play-overlay,
  .hot-grid .game-card:hover .play-overlay {
    opacity: 1;
  }
}

@media (hover: none) {
  .hits-grid.is-live .hits-card:active .play-overlay,
  .hits-grid.is-slot .hits-card:active .play-overlay,
  .hot-grid .game-card:active .play-overlay {
    opacity: 1;
  }
}

.hot-mark {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 20px;
  padding: 0 7px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: #f3b04a;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1;
  box-shadow: 0 0 10px rgba(243, 176, 74, .65);
  animation: hot-pulse 1.15s ease-in-out infinite;
}

.hits-grid.is-slot .hot-mark {
  top: 6px;
  right: 6px;
  min-width: 32px;
  height: 17px;
  font-size: 9px;
}

@keyframes hot-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 8px rgba(243, 176, 74, .45);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 16px rgba(255, 200, 90, .9);
  }
}

.dock {
  position: fixed;
  top: 50%;
  right: 18px;
  z-index: 30;
  display: grid;
  gap: 10px;
  width: 88px;
  transform: translateY(-50%);
}

.dock-item {
  --glow: transparent;
  position: relative;
  display: block;
  width: 88px;
  height: 88px;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  word-break: keep-all;
  animation: dock-in .7s cubic-bezier(.18,.86,.24,1) both, dock-pulse 2.8s ease-in-out 1s infinite;
}

.dock-item:nth-child(1) { animation-delay: .08s, 1s; }
.dock-item:nth-child(2) { animation-delay: .18s, 1.2s; }
.dock-item:nth-child(3) { animation-delay: .28s, 1.4s; }

.dock-face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dock-txt {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.dock-txt u {
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.9);
  padding-bottom: 1px;
}

.dock-txt small {
  font-size: 11px;
  font-weight: 800;
}

.dock-item.is-green { --glow: rgba(72, 230, 190, .45); }
.dock-item.is-purple { --glow: rgba(196, 93, 255, .45); }
.dock-item.is-blue { --glow: rgba(80, 190, 255, .45); }

.dock-item:hover {
  transform: translateX(-8px);
  filter: brightness(1.08);
  animation-play-state: paused;
}

.dock-item:hover .dock-face {
  animation: dock-pop .45s ease;
}

.to-top {
  position: fixed;
  top: auto;
  right: 22px;
  bottom: 98px;
  z-index: 80;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  padding: 0;
  border: 1px solid #c4a35a;
  border-radius: 50%;
  background: #12121a;
  color: #e7d7a8;
  box-shadow: none;
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.to-top svg {
  display: block;
  width: 26px;
  height: 26px;
}

.to-top:hover,
.to-top:focus-visible {
  color: #f4e8c4;
  border-color: #d4b36a;
  background: #17171f;
}

body.is-modal .to-top,
body.is-pops .to-top,
body.is-nav .to-top,
body:has(.livechat.is-open) .to-top {
  visibility: hidden;
  pointer-events: none;
}

@keyframes dock-in {
  from { opacity: 0; transform: translateX(90px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes dock-pulse {
  0%, 100% { filter: drop-shadow(0 8px 14px rgba(0,0,0,.28)); }
  50% { filter: drop-shadow(0 8px 16px var(--glow)); }
}

@keyframes dock-pop {
  0% { transform: scale(1); }
  40% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

@keyframes live-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: .7; }
}

@keyframes live-wave {
  0%, 100% { opacity: .28; }
  45% { opacity: 1; }
}

@keyframes new-pulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 0 0 0 rgba(225, 6, 0, .55);
  }
  50% {
    transform: translateX(-50%) scale(1.08);
    box-shadow: 0 0 10px 2px rgba(255, 64, 90, .7);
  }
}

@keyframes event-sheen {
  0%, 18% { left: -46%; opacity: 0; }
  32% { opacity: 1; }
  58% { left: 108%; opacity: .85; }
  70%, 100% { left: 108%; opacity: 0; }
}

@keyframes event-mood {
  0%, 100% {
    background: linear-gradient(108deg, rgba(78, 46, 148, .94), rgba(16, 10, 36, .96) 58%, rgba(42, 22, 82, .9));
    box-shadow: 0 0 0 1px rgba(168, 122, 255, .42), 0 0 16px rgba(124, 72, 230, .28);
  }
  36% {
    background: linear-gradient(108deg, rgba(96, 42, 92, .94), rgba(22, 10, 32, .96) 58%, rgba(92, 36, 68, .9));
    box-shadow: 0 0 0 1px rgba(255, 164, 196, .38), 0 0 20px rgba(230, 92, 150, .22);
  }
  58% {
    background: linear-gradient(108deg, rgba(92, 66, 28, .92), rgba(22, 14, 18, .96) 58%, rgba(78, 50, 22, .88));
    box-shadow: 0 0 0 1px rgba(255, 212, 130, .4), 0 0 20px rgba(255, 188, 86, .2);
  }
}

@keyframes event-wash {
  0%, 18%, 100% { opacity: .55; transform: scale(.92); }
  32%, 52% { opacity: 1; transform: scale(1.18); background: radial-gradient(circle, rgba(255, 214, 140, .4) 0 30%, transparent 70%); }
  70% { opacity: .7; transform: scale(1); }
}

@keyframes event-spin {
  to { transform: rotate(360deg); }
}

@keyframes event-lid {
  0%, 16% { transform: rotate(-4deg); }
  26%, 68% { transform: rotate(-68deg) translateY(-1px); }
  82%, 100% { transform: rotate(-4deg); }
}

@keyframes event-pop {
  0%, 22% { opacity: 0; transform: scale(.15); }
  30% { opacity: .95; transform: scale(1.15); }
  48% { opacity: .28; transform: scale(1.35); }
  64%, 100% { opacity: 0; transform: scale(1.5); }
}

@keyframes event-spark {
  0%, 22% { opacity: 0; transform: rotate(var(--a)) translateY(0) scale(.25); }
  30% { opacity: 1; }
  52% { opacity: 1; transform: rotate(var(--a)) translateY(calc(var(--d) * -1)) scale(1); }
  70%, 100% { opacity: 0; transform: rotate(var(--a)) translateY(calc(var(--d) * -1.35)) scale(.15); }
}

@media (prefers-reduced-motion: reduce) {
  .dock-item,
  .dock-item .dock-face,
  .ico-broadcast .live-dot,
  .ico-broadcast .live-wave,
  .new,
  .event,
  .event-wash,
  .event-rim,
  .event-pop,
  .event-lid,
  .event-sparks i,
  .event::after {
    animation: none;
  }
  .new { transform: translateX(-50%); }
  .stat-box strong,
  .feed-card {
    animation: none;
  }
}


body.is-modal {
  overflow: hidden;
}

.modal-root {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal-root[hidden] {
  display: none !important;
}

.modal-dim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .82);
}

.modal-stack {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
}

.modal-root[data-open="join"] .modal-stack {
  width: min(460px, 100%);
}

.modal-root[data-open="wallet"] .modal-stack {
  width: min(2006px, 99vw);
  zoom: calc(1 / 1.2);
}

.modal-root[data-open="slot"] .modal-stack {
  width: min(1841px, 100%);
  max-width: 100%;
  min-width: 0;
}

.modal-root[data-open="wallet"] [data-modal="wallet"] {
  display: flex;
  max-height: min(98vh, 1462px);
  background: #07111c;
}

.wal-side {
  display: flex;
  flex-direction: column;
  width: 422px;
  flex-shrink: 0;
  padding: 27px 24px 31px;
  background: #08131f;
  border-right: 1px solid rgba(122, 61, 255, .2);
  overflow: auto;
}

.wal-user {
  padding: 24px 20px 27px;
  border-radius: 16px;
  background:
    linear-gradient(165deg, rgba(122, 61, 255, .38), transparent 46%),
    linear-gradient(180deg, #1a1630 0%, #10182a 100%);
  border: 1px solid rgba(183, 163, 255, .22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  text-align: center;
  color: #fff;
}

.wal-uid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 17px;
  font-size: 20px;
  font-weight: 700;
}

.wal-copy {
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
}

.wal-copy svg { width: 24px; height: 24px; }

.wal-avatar {
  display: grid;
  place-items: center;
  width: 95px;
  height: 95px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #12182a;
  color: #fff;
  font-size: 31px;
  font-weight: 800;
  box-shadow: 0 0 0 2px rgba(122, 61, 255, .35);
}

.wal-user strong { font-size: 26px; }

.wal-bals {
  display: grid;
  gap: 14px;
  margin: 20px 0;
}

.wal-bals article {
  padding: 17px 20px;
  border-radius: 14px;
  background: #0d1a28;
  border: 1px solid rgba(255,255,255,.06);
}

.wal-bals span {
  display: block;
  color: #9aa4b8;
  font-size: 19px;
}

.wal-bals b {
  display: block;
  margin-top: 7px;
  color: #fff;
  font-size: 27px;
}

.wal-deposit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  height: 75px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(90deg, #7a3dff, #4d7dff);
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  box-shadow: 0 10px 24px rgba(77, 125, 255, .22);
}

.wal-deposit-btn span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  font-size: 27px;
}

.wal-cat {
  margin: 31px 7px 14px;
  color: #8b93a7;
  font-size: 20px;
  font-weight: 700;
}

.wal-nav {
  display: grid;
  gap: 8px;
}

.wal-nav button,
.wal-out {
  position: relative;
  display: flex;
  align-items: center;
  gap: 17px;
  width: 100%;
  height: 75px;
  padding: 24px 20px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  background: #0d1a28;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-align: left;
}

.wal-nav button.is-on {
  color: #c4b5fd;
  box-shadow: inset 5px 0 0 #7a3dff;
}

.wal-nav button::after {
  content: "›";
  margin-left: auto;
  color: #6b7280;
  font-size: 18px;
}

.wal-badge {
  position: absolute;
  top: -6px;
  left: 28px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
}

.wal-out {
  margin-top: 8px;
  color: #f87171;
  justify-content: flex-start;
}

.wal-nav button span,
.wal-out span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.wal-out::after { content: none; }

.wi {
  display: inline-block;
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  background: currentColor;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.wi-wallet { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 7a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v2H3zm0 4h18v6a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3zm13 2a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3z'/%3E%3C/svg%3E"); }
.wi-gear { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 8.5A3.5 3.5 0 1 1 8.5 12 3.5 3.5 0 0 1 12 8.5zm8 2.2-1.7-.3a6.8 6.8 0 0 0-.7-1.6l1-1.4-2-2-1.4 1a6.8 6.8 0 0 0-1.6-.7L13.3 4h-2.6l-.3 1.7a6.8 6.8 0 0 0-1.6.7l-1.4-1-2 2 1 1.4a6.8 6.8 0 0 0-.7 1.6L4 10.7v2.6l1.7.3a6.8 6.8 0 0 0 .7 1.6l-1 1.4 2 2 1.4-1a6.8 6.8 0 0 0 1.6.7l.3 1.7h2.6l.3-1.7a6.8 6.8 0 0 0 1.6-.7l1.4 1 2-2-1-1.4a6.8 6.8 0 0 0 .7-1.6l1.7-.3z'/%3E%3C/svg%3E"); }
.wi-list { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 6h16v2H4zm0 5h16v2H4zm0 5h16v2H4z'/%3E%3C/svg%3E"); }
.wi-gift { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20 8h-2.1A3 3 0 0 0 13 5.2L12 4l-1 1.2A3 3 0 0 0 6.1 8H4v4h8V8h2v4h8zM4 14v6h8v-6zm10 0v6h8v-6z'/%3E%3C/svg%3E"); }
.wi-msg { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 4h16a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H9l-5 4v-4H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2z'/%3E%3C/svg%3E"); }
.wi-medal { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2 9 8H3l5 4-2 8 6-4 6 4-2-8 5-4h-6z'/%3E%3C/svg%3E"); }
.wi-out { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M10 4H5a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h5v-2H5V6h5zm3.5 4 5 4-5 4v-3H9v-2h4.5z'/%3E%3C/svg%3E"); }
.wi-in { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M11 4v7H8l4 5 4-5h-3V4zM5 18h14v2H5z'/%3E%3C/svg%3E"); }
.wi-out2 { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M13 20v-7h3l-4-5-4 5h3v7zM5 4h14v2H5z'/%3E%3C/svg%3E"); }
.wi-hist { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 4a8 8 0 1 1-8 8H2l3.5 4L9 12H7a5 5 0 1 0 5-5V4zm1 4v5l3 2'/%3E%3C/svg%3E"); }
.wi-user { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 12a4 4 0 1 0-4-4 4 4 0 0 0 4 4zm0 2c-4 0-8 2-8 5v1h16v-1c0-3-4-5-8-5z'/%3E%3C/svg%3E"); }
.wi-key { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M14.5 5A4.5 4.5 0 1 0 17 13.2L21 17v3h-3v-2h-2v-2h-1.2A4.5 4.5 0 0 0 14.5 5zm-2 4.5A2 2 0 1 1 14.5 11.5 2 2 0 0 1 12.5 9.5z'/%3E%3C/svg%3E"); }
.wi-cal { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 3v2H5a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2V3h-2v2H9V3zm12 6H5v10h14z'/%3E%3C/svg%3E"); }
.wi-find { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M10.5 4a6.5 6.5 0 1 1 0 13 6.5 6.5 0 0 1 0-13zm0 2a4.5 4.5 0 1 0 0 9 4.5 4.5 0 0 0 0-9zm7.2 10.1 3.6 3.6-1.4 1.4-3.6-3.6z'/%3E%3C/svg%3E"); }
.wi-box { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 8.5 12 4l9 4.5v2H3zm0 3h18V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3C/svg%3E"); }

.wi-bell { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3a6 6 0 0 1 6 6v4.2l1.6 2.4H4.4L6 13.2V9a6 6 0 0 1 6-6zm-2.2 16h4.4A2.2 2.2 0 0 1 12 21.2 2.2 2.2 0 0 1 9.8 19z'/%3E%3C/svg%3E"); }
.wi-ask { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 4h16a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H9l-5 4v-4H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2zm8 3.2a2.4 2.4 0 0 0-2.4 2.4h1.6c0-.44.36-.8.8-.8s.8.36.8.8c0 .5-.28.66-.72.94-.52.34-.88.78-.88 1.46v.4h1.6v-.28c0-.22.12-.36.5-.6.7-.46 1.3-1 1.3-1.92A2.4 2.4 0 0 0 12 7.2zM11.2 14.4h1.6V16h-1.6z'/%3E%3C/svg%3E"); }
.wi-trash { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 4h6l1 2h4v2H4V6h4zm1 6h2v8h-2zm4 0h2v8h-2zM7 10h2v8H7z'/%3E%3C/svg%3E"); }


.wal-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
  background: #071320;
}

.wal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 0 31px;
  border-bottom: 1px solid rgba(122, 61, 255, .18);
}

.wal-head h2 {
  margin: 0;
  color: #fff;
  font-size: 27px;
  font-weight: 800;
}

.wal-head-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.inq-write {
  height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(90deg, #7a3dff, #4d7dff);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.inq-write:hover,
.inq-write:focus-visible {
  filter: brightness(1.08);
}

.modal-x.is-in-wal { position: static; }

.wal-tabs {
  display: flex;
  gap: 14px;
  padding: 20px 31px 0;
}

.wal-tabs button {
  min-width: 187px;
  height: 61px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #9aa4b8;
  font-weight: 800;
  font-size: 20px;
}

.wal-tabs button.is-on {
  background: #121f30;
  color: #fff;
}

.wal-body {
  display: grid;
  grid-template-columns: 218px minmax(0, 1fr);
  gap: 31px;
  min-height: 0;
  flex: 1;
  padding: 24px 34px 37px;
  overflow: auto;
}

.wal-body[hidden] {
  display: none !important;
}

.wal-body.is-status:not([hidden]) {
  display: grid;
  place-items: center;
  grid-template-columns: 1fr;
}

.wal-body.is-set:not([hidden]) {
  display: block;
  grid-template-columns: 1fr;
}

.wal-tabs[hidden] { display: none !important; }

.wal-empty { color: #9aa4b8; }

.wal-rail {
  display: grid;
  align-content: start;
  gap: 8px;
}

.wal-rail button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 122px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  background: #0d1a28;
  color: #d1d5e0;
  font-size: 19px;
  font-weight: 700;
}

.wal-rail button.is-on {
  color: #c4b5fd;
  border-color: #7a3dff;
}

.wal-stage {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
}

.wal-lead {
  margin: 3px 0 27px;
}

.wal-lead h3 {
  margin: 0 0 10px;
  color: #c4b5fd;
  font-size: 37px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.wal-lead p {
  margin: 0;
  color: #e8edf5;
  font-size: 22px;
}

.wal-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(510px, .92fr);
  gap: 34px;
  align-items: start;
}

.wal-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.wal-methods button {
  display: flex;
  align-items: center;
  gap: 17px;
  min-height: 88px;
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: #0c1826;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  text-align: left;
}

.wal-methods button.is-on {
  border-color: #7a3dff;
  background: #101828;
  box-shadow: 0 0 0 1px #7a3dff, 0 0 22px rgba(122, 61, 255, .28);
}

.pm {
  width: 51px;
  height: 51px;
  flex: 0 0 51px;
  display: grid;
  place-items: center;
}

.pm svg {
  display: block;
  width: 48px;
  height: 48px;
}

.wal-info {
  padding: 27px 27px 24px;
  border: 1px solid rgba(122, 61, 255, .45);
  border-radius: 14px;
  background: #0a1522;
}

.wal-info h4 {
  margin: 0 0 20px;
  color: #c4b5fd;
  font-size: 27px;
  font-weight: 800;
}

.wal-info ol {
  margin: 0 0 17px;
  padding-left: 31px;
  color: #f3f4f6;
  font-size: 21px;
  line-height: 1.7;
}

.wal-info ul {
  margin: 0 0 20px;
  padding-left: 31px;
  color: #c5cddb;
  font-size: 20px;
  line-height: 1.65;
}

.wal-limit {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  color: #9aa8c2;
  font-size: 20px;
  font-weight: 700;
}

.wal-amt-label {
  display: block;
  margin: 27px 0 14px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.wal-amt-label i { color: #ef4444; font-style: normal; }

.wal-amt {
  position: relative;
}

.wal-amt input {
  width: 100%;
  height: 78px;
  padding: 0 95px 0 24px;
  border: 1px solid #7a3dff;
  border-radius: 12px;
  background: #07111c;
  color: #fff;
  font: inherit;
  font-size: 22px;
  outline: none;
  box-shadow: 0 0 0 4px rgba(122, 61, 255, .16);
}

.wal-amt em {
  position: absolute;
  top: 50%;
  right: 14px;
  color: #fff;
  font-style: normal;
  font-weight: 800;
  transform: translateY(-50%);
}

.wal-chips {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.wal-chips button {
  height: 65px;
  padding: 0 8px;
  border: 0;
  border-radius: 12px;
  background: #1a2740;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

.wal-chips .wal-correct {
  background: linear-gradient(180deg, #f43f5e, #be123c);
  box-shadow: 0 6px 14px rgba(190, 18, 60, .28);
}

.wal-submit {
  width: 100%;
  height: 82px;
  margin-top: 27px;
  margin-bottom: 36px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(90deg, #7a3dff, #4d7dff);
  color: #fff;
  font-size: 27px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(77, 125, 255, .22);
}

@media (max-width: 980px) {
  .modal-root[data-open="wallet"] [data-modal="wallet"] {
    flex-direction: column;
  }
  .wal-side { width: 100%; max-height: 374px; }
  .wal-body { grid-template-columns: 1fr; }
  .wal-split { grid-template-columns: 1fr; }
  .wal-methods { grid-template-columns: 1fr 1fr; }
}



.wal-sheet {
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1;
}

.wal-sheet[hidden] { display: none !important; }

.set-wrap {
  display: grid;
  grid-template-columns: 218px minmax(0, 1fr);
  gap: 31px;
  min-height: 0;
  flex: 1;
  padding: 24px 34px 37px;
  overflow: auto;
}

.set-wrap[hidden] { display: none !important; }

.set-body {
  display: grid;
  grid-template-columns: 218px minmax(0, 1fr);
  gap: 31px;
  min-height: 0;
  flex: 1;
  padding: 24px 34px 37px;
  overflow: auto;
}

.set-rail {
  display: grid;
  align-content: start;
  gap: 8px;
}

.set-rail button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  height: 72px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  background: #0d1a28;
  color: #d1d5e0;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.set-rail button.is-on {
  color: #c4b5fd;
  background: #12182a;
  border-color: #7a3dff;
  box-shadow: 0 0 0 1px #7a3dff, 0 0 18px rgba(122, 61, 255, .28);
}

.set-rail .wi {
  width: 22px;
  height: 22px;
  flex-basis: 22px;
}

.set-main { min-width: 0; }

.set-main h3,
.wal-body.is-set h3 {
  margin: 4px 0 10px;
  color: #c4b5fd;
  font-size: 37px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.wal-body.is-set {
  padding: 0;
  overflow: visible;
}

.set-pane[hidden] { display: none !important; }

.set-pane h3 {
  margin: 4px 0 10px;
  color: #c4b5fd;
  font-size: 37px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.set-help {
  margin: 0 0 22px;
  max-width: 560px;
  color: #c9d0de;
  font-size: 15px;
  line-height: 1.6;
}

.set-form {
  max-width: 560px;
}

.set-form.is-profile {
  max-width: 720px;
}

.set-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 680px) {
  .set-row { grid-template-columns: 1fr; }
}

.set-label {
  display: block;
  margin: 0 0 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.set-label i { color: #ef4444; font-style: normal; }

.set-form .modal-field {
  margin-bottom: 16px;
}

.set-form .modal-field input {
  border-color: #7a3dff;
  background: #07111c;
  box-shadow: 0 0 0 2px rgba(122, 61, 255, .14);
}

.set-form.is-locked .modal-field input[readonly] {
  color: #ddd8f0;
  border-color: rgba(122, 61, 255, .28);
  background: #0a1018;
  box-shadow: none;
  cursor: default;
}

.set-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

.set-save {
  min-width: 88px;
  height: 38px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(90deg, #7a3dff, #4d7dff);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.set-save:hover { filter: brightness(1.08); }

.acc-sheet {
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1;
  padding: 12px 18px 18px;
  overflow: auto;
}

.acc-sheet[hidden] { display: none !important; }

.acc-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.acc-tabs button {
  min-width: 132px;
  height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #9aa4b8;
  font-size: 15px;
  font-weight: 800;
}

.acc-tabs button.is-on {
  background: #121f30;
  color: #fff;
}

.bet-filters {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}

.acc-select,
.acc-search {
  position: relative;
}

.acc-select select,
.acc-input,
.acc-search input,
.acc-date {
  height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  background: #0c1826;
  color: #e8edf5;
  font: inherit;
  outline: none;
}

.acc-select select { min-width: 0; width: 88px; padding-right: 22px; appearance: none; }
.acc-input { width: 112px; min-width: 0; flex: 0 1 112px; }
.acc-search input { width: 100%; min-width: 0; }
.acc-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  flex: 0 0 128px;
  padding-left: 10px;
}

.acc-search .wi,
.acc-date .wi {
  position: absolute;
  right: 10px;
  top: 50%;
  width: 14px;
  height: 14px;
  color: #9aa4b8;
  transform: translateY(-50%);
}

.acc-date { position: relative; padding-right: 32px; }
.acc-date .wi { position: absolute; }

.bet-find {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1 1 240px;
  min-width: 0;
}

.bet-find .acc-search,
.bet-find .acc-search-btn {
  width: auto;
  flex: 1 1 0;
  min-width: 0;
}

.bet-find .acc-search input,
.bet-find .acc-search-btn {
  width: 100%;
  height: 38px;
  box-sizing: border-box;
}

.acc-search-btn {
  height: 38px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(90deg, #7a3dff, #4d7dff);
  color: #fff;
  font-weight: 800;
}

.bet-empty {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  min-height: 360px;
  border: 1px solid rgba(120, 180, 230, .22);
  border-radius: 10px;
  color: #c5cddb;
}

.bet-empty svg {
  width: 72px;
  height: 58px;
  color: #f3f6fb;
}

.bet-empty p {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.bon-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.bon-tabs button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  background: #0c1826;
  color: #d1d5e0;
  font-weight: 800;
}

.bon-tabs button b {
  color: #9aa4b8;
  font-size: 12px;
}

.bon-tabs button.is-on {
  color: #fff;
  border-color: #7a3dff;
  background: #12182a;
  box-shadow: 0 0 0 1px #7a3dff;
}

.bon-tabs button.is-on b { color: #c4b5fd; }

.bon-lead { margin: 0 0 14px; }
.bon-lead h3 {
  margin: 0 0 6px;
  color: #c4b5fd;
  font-size: 22px;
  font-weight: 800;
}
.bon-lead p { margin: 0; color: #c9d0de; font-size: 15px; line-height: 1.6; }

.bon-card {
  margin-bottom: 12px;
  padding: 16px 16px 14px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  background: #0b1624;
}

.bon-card header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.bon-card h4 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.bon-ok {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #86efac;
  font-size: 13px;
  font-weight: 800;
}

.bon-ok i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}

.bon-split {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.bon-card dl { display: grid; gap: 6px; margin: 0; }
.bon-card dl div { display: flex; justify-content: space-between; gap: 10px; }
.bon-card dt { color: #9aa4b8; font-size: 14px; }
.bon-card dd { margin: 0; color: #fff; font-size: 14px; font-weight: 800; }

.bon-side p {
  margin: 0 0 14px;
  color: #9aa4b8;
  font-size: 14px;
  line-height: 1.65;
}

.bon-apply {
  min-width: 160px;
  height: 40px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(90deg, #7a3dff, #4d7dff);
  color: #fff;
  font-weight: 800;
}

.acc-empty {
  padding: 48px 16px;
  color: #9aa4b8;
  text-align: center;
}

.acc-sheet.is-msg { overflow: hidden; }

.msg-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.msg-inbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(192, 38, 211, .45);
  border-radius: 8px;
  background: #1a1030;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.msg-split {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 14px;
  min-height: 0;
  flex: 1;
}

.msg-list {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 0;
  overflow: auto;
}

.msg-item {
  position: relative;
  display: grid;
  gap: 8px;
  width: 100%;
  padding: 16px 32px 16px 16px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  background: #0c1826;
  color: #fff;
  text-align: left;
}

.msg-item.is-on {
  border-color: #7a3dff;
  background: #12182a;
  box-shadow: 0 0 0 1px #7a3dff;
}

.msg-item strong { font-size: 16px; font-weight: 800; line-height: 1.4; letter-spacing: -.02em; }
.msg-item span { color: #9aa4b8; font-size: 13px; }

.msg-dot {
  position: absolute;
  top: 16px;
  right: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
}

.msg-detail {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  padding: 16px 16px 18px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  background: #0b1624;
  overflow: auto;
}

.msg-detail header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.msg-detail h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.35;
}

.msg-detail header p {
  margin: 0;
  color: #9aa4b8;
  font-size: 14px;
}

.msg-detail header b { color: #d1d5e0; font-weight: 700; }

.msg-del {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background: #0c1826;
  color: #e5e7eb;
  font-size: 14px;
  font-weight: 700;
}

.msg-body p { margin: 0 0 12px; color: #e8edf5; font-size: 16px; line-height: 1.75; }
.msg-body .msg-sub { margin: 18px 0 8px; color: #fff; font-size: 16px; font-weight: 800; }
.msg-body ol {
  margin: 0 0 18px;
  padding-left: 20px;
  color: #d1d5e0;
  font-size: 16px;
  line-height: 1.75;
}

.msg-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.msg-links a { color: #c4b5fd; font-size: 15px; font-weight: 700; }
.msg-links em { color: #7a3dff; font-style: normal; }

.ntc-tabs { margin-bottom: 12px; }
.ntc-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  font-style: normal;
}
.ntc-tag.is-notice { background: #1e3a5f; color: #93c5fd; }
.ntc-tag.is-event { background: #1a1640; color: #c4b5fd; }
.ntc-tag.is-maint { background: #3f2a12; color: #fbbf24; }
.ntc-tag.is-wait { background: #3f2a12; color: #fbbf24; }
.ntc-tag.is-done { background: #12361f; color: #86efac; }

.inq-form { display: grid; gap: 8px; }
.inq-form[hidden] { display: none !important; }
.inq-text {
  width: 100%;
  min-height: 180px;
  padding: 14px 16px;
  border: 1px solid rgba(122, 61, 255, .28);
  border-radius: 10px;
  background: #0a1018;
  color: #eee;
  font: inherit;
  font-size: 16px;
  line-height: 1.65;
  resize: vertical;
}
.msg-item .ntc-tag { margin-bottom: 2px; }
.msg-body ul {
  margin: 0 0 12px;
  padding-left: 20px;
  color: #d1d5e0;
  font-size: 16px;
  line-height: 1.75;
}


@media (max-width: 980px) {
  .bon-split, .msg-split { grid-template-columns: 1fr; }
  .bet-filters { flex-wrap: wrap; }
  .bet-find { flex: 1 1 100%; }
}


.set-meta {
  display: grid;
  gap: 12px;
  margin: 0;
  max-width: 420px;
}

.set-meta div {
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 10px;
  background: #0d1a28;
  border: 1px solid rgba(255,255,255,.06);
}

.set-meta dt { color: #9aa4b8; font-size: 14px; }
.set-meta dd { margin: 0; color: #fff; font-weight: 800; }

@media (max-width: 980px) {
  .set-wrap, .set-body { grid-template-columns: 1fr; }
}

.modal-panel {
  display: none;
  position: relative;
  overflow: hidden;
  max-height: min(90vh, 860px);
  overflow-y: auto;
  border-radius: 10px;
  background: #0c0d18;
  box-shadow: 0 0 0 1px rgba(162, 77, 255, .55), 0 24px 60px rgba(0, 0, 0, .55);
}

.modal-root[data-open="login"] [data-modal="login"],
.modal-root[data-open="join"] [data-modal="join"] {
  display: block;
}

.modal-root[data-open="slot"] [data-modal="slot"] {
  display: flex;
}

.modal-panel.is-slot-lobby {
  flex-direction: column;
  max-height: min(98vh, 1435px);
  overflow: hidden;
  background:
    radial-gradient(900px 280px at 50% -8%, rgba(122, 61, 255, .28), transparent 58%),
    linear-gradient(180deg, #12101f 0%, #0a0814 42%, #070716 100%);
}

.modal-x.is-slot-x {
  position: static;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(12, 10, 22, .72);
  border: 1px solid rgba(162, 77, 255, .38);
  color: #f4f6ff;
}

.modal-x.is-slot-x:hover,
.modal-x.is-slot-x:focus-visible {
  background: rgba(122, 61, 255, .28);
  border-color: #9b5cff;
}

.slot-lobby-head {
  flex-shrink: 0;
  padding: 22px 28px 0;
}

.slot-head-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slot-head-row .slot-search {
  flex: 1;
  min-width: 0;
}

.slot-search {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 62px;
  padding: 0 20px;
  border: 1px solid rgba(162, 77, 255, .32);
  border-radius: 12px;
  background: #0c0d18;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}

.slot-search svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: #9b8ec4;
}

.slot-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #f4f6ff;
  font: inherit;
  font-size: 16px;
}

.slot-search input::placeholder {
  color: #7d7694;
}

.slot-search:focus-within {
  border-color: #8b2cff;
  box-shadow: 0 0 0 3px rgba(122, 61, 255, .18);
}

.slot-prov-wrap {
  margin-top: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(162, 77, 255, .16);
}

.slot-prov-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  color: #9b8ec4;
  font-size: 12px;
  font-weight: 700;
}

.slot-prov-label em {
  color: #c45dff;
  font-style: normal;
  font-weight: 800;
}

.slot-provs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.slot-chip {
  appearance: none;
  height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid rgba(162, 77, 255, .22);
  background: #161226;
  color: #f4f6ff;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: background .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.slot-chip:hover,
.slot-chip:focus-visible {
  border-color: rgba(162, 77, 255, .55);
  background: #1c1630;
}

.slot-chip.is-on {
  border-color: transparent;
  background: linear-gradient(180deg, #9b5cff 0%, #7a3dff 100%);
  color: #fff;
  box-shadow: 0 6px 16px rgba(122, 61, 255, .32);
}

.slot-chip.is-slot-fold {
  display: none;
}

.slot-chip.is-slot-fold.is-more {
  border-color: #2ee0c5;
  background: linear-gradient(180deg, #157a6c, #0d4f47);
  color: #e8fffb;
  box-shadow: 0 0 12px rgba(46, 224, 197, .28);
}

.slot-chip.is-slot-fold.is-less {
  border-color: #f3b04a;
  background: linear-gradient(180deg, #8a5a16, #5c3a0c);
  color: #fff6e4;
  box-shadow: 0 0 12px rgba(243, 176, 74, .3);
}

.slot-lobby-body {
  min-height: 0;
  flex: 1;
  overflow: auto;
  padding: 22px 28px 30px;
}

.slot-dir {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.slot-dir em {
  display: block;
  margin: 0 0 4px;
  color: #c45dff;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .12em;
}

.slot-dir h2 {
  margin: 0;
  color: #fff;
  font-size: 43px;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
}

.slot-dir-count {
  color: #c45dff;
  font-size: 13px;
  font-weight: 800;
}

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

.slot-game {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  color: inherit;
}

.slot-game[hidden] { display: none !important; }

.slot-game-art {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 14px;
  background: #0c0d18;
  box-shadow: 0 0 0 1px rgba(162, 77, 255, .16);
  transition: transform .18s ease, box-shadow .18s ease;
}

.slot-game-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.slot-game-art::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(6, 4, 16, .92));
  pointer-events: none;
}

.slot-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
  height: 18px;
  padding: 0 7px;
  border-radius: 4px;
  background: #7a3dff;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 18px;
}

.slot-game-art strong {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .55);
}

.slot-game-meta {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 0 2px;
}

.slot-game-meta b {
  overflow: hidden;
  color: #f4f6ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.01em;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.slot-game-meta em {
  overflow: hidden;
  color: #8b8498;
  font-size: 11px;
  font-style: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.slot-game:hover .slot-game-art,
.slot-game:focus-visible .slot-game-art {
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(162, 77, 255, .5), 0 14px 28px rgba(122, 61, 255, .22);
}

.slot-empty {
  margin: 28px 0 8px;
  color: #9b8ec4;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 980px) {
  .modal-root[data-open="slot"] {
    padding: 10px;
    align-items: stretch;
    justify-items: stretch;
  }
  .modal-root[data-open="slot"] .modal-stack,
  .modal-panel.is-slot-lobby {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .slot-lobby-head { padding: 16px 16px 0; }
  .modal-x.is-slot-x {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }
  .slot-search { height: 40px; }
  .slot-lobby-body { padding: 16px; }
  .slot-dir h2 { font-size: 26px; }
  .slot-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .slot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .slot-game-art strong { font-size: 13px; }
  .slot-provs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
  }
  .slot-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    height: 38px;
    padding: 0 4px;
    font-size: 11px;
  }
  .slot-chip.is-slot-fold {
    grid-column: 5;
    height: 38px;
    font-size: 12px;
  }
  .slot-provs:not(.is-open) .slot-chip[data-slot-prov]:nth-child(n+10) { display: none; }
  .slot-provs:not(.is-open) .slot-chip.is-more { display: inline-flex; }
  .slot-provs.is-open .slot-chip.is-less { display: inline-flex; }
}

@media (prefers-reduced-motion: reduce) {
  .slot-game-art,
  .slot-chip {
    transition: none;
  }
  .slot-game:hover .slot-game-art,
  .slot-game:focus-visible .slot-game-art {
    transform: none;
  }
}

.modal-x {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
}

.modal-x svg {
  width: 18px;
  height: 18px;
}

.modal-title {
  margin: 28px 0 22px;
  color: #d946ef;
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  letter-spacing: -.02em;
}

.modal-hero {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 92px;
  padding: 22px 48px 20px 22px;
  background:
    radial-gradient(ellipse at 14% 50%, rgba(0, 230, 255, .42), transparent 52%),
    radial-gradient(ellipse at 88% 18%, rgba(177, 77, 255, .38), transparent 48%),
    linear-gradient(90deg, #07101c 0%, #101428 55%, #0c1022 100%);
  overflow: hidden;
}

.modal-hero::before,
.modal-hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 230, 255, .7), rgba(177, 77, 255, .7), transparent);
  opacity: .7;
  pointer-events: none;
}

.modal-hero::before { top: 18%; }
.modal-hero::after { bottom: 22%; transform: scaleX(.92); }

.modal-hero-mark {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #5ef2ff;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1;
  text-shadow: 0 0 10px #2ee0ff, 0 0 28px #2ee0ff, 0 0 48px rgba(46, 224, 255, .7);
  white-space: nowrap;
}

.modal-hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.modal-hero-copy h2 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.modal-hero-copy p {
  margin: 0;
  color: #e8eaf6;
  font-size: 14px;
  font-weight: 500;
}

.modal-form {
  padding: 22px 28px 26px;
}

.modal-panel.is-login .modal-form {
  padding-top: 0;
}

.modal-label {
  display: block;
  margin: 0 0 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.modal-label i {
  color: #ff4d4f;
  font-style: normal;
  font-weight: 800;
}

.modal-form .modal-label + .modal-field {
  margin-bottom: 16px;
}

.modal-field {
  position: relative;
}

.modal-field input,
.modal-field select {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #a855f7;
  border-radius: 6px;
  background: #12121f;
  color: #fff;
  font: inherit;
  outline: none;
  appearance: none;
}

.modal-field input::placeholder {
  color: #8b849c;
}

.modal-field input:focus,
.modal-field select:focus {
  border-color: #d946ef;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, .18);
}

.modal-field:has(.modal-eye) input {
  padding-right: 44px;
}

.modal-eye {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #cfc7e0;
  transform: translateY(-50%);
}

.modal-eye svg {
  width: 18px;
  height: 18px;
}

.modal-field .ico-eye { display: none; }
.modal-field.is-shown .ico-eye { display: block; }
.modal-field.is-shown .ico-eye-off { display: none; }

.modal-field.is-select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.modal-field.is-select select {
  padding-right: 36px;
}

.modal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: -4px 0 18px;
}

.modal-check {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
}

.modal-check input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.modal-check-ui {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: #12121f;
  box-shadow: inset 0 0 0 1.5px #a855f7;
}

.modal-check input:checked + .modal-check-ui {
  background: #a855f7;
  box-shadow: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M3.5 8.2 6.6 11.2 12.5 4.8'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.modal-link {
  color: #d946ef;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.modal-submit {
  display: grid;
  place-items: center;
  width: 100%;
  height: 46px;
  margin: 4px 0 16px;
  border: 0;
  border-radius: 8px;
  background: #4263eb;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.modal-submit:hover,
.modal-submit:focus-visible {
  filter: brightness(1.08);
}

.modal-foot {
  margin: 0;
  color: #fff;
  font-size: 13px;
  text-align: center;
}

.modal-switch {
  padding: 0;
  border: 0;
  background: none;
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.modal-switch.is-plain {
  font-weight: 700;
  text-decoration: none;
}


.event.is-on {
  filter: drop-shadow(0 0 10px rgba(177, 77, 255, .55));
}

.promo-page {
  min-height: calc(100vh - 128px);
  padding: 36px 70px 80px;
  background: #070716;
}

.promo-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 0 28px;
}

.promo-tab {
  min-width: 118px;
  height: 46px;
  padding: 0 22px;
  border: 1px solid #8b5cf6;
  border-radius: 999px;
  background: #12101c;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.02em;
  transition: background .18s ease, box-shadow .18s ease, filter .18s ease;
}

.promo-tab:hover,
.promo-tab:focus-visible {
  filter: brightness(1.12);
}

.promo-tab.is-active {
  border-color: transparent;
  background: linear-gradient(180deg, #b56bff 0%, #6d28d9 100%);
  box-shadow: 0 8px 18px rgba(139, 92, 246, .35);
}

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

.promo-card[hidden] {
  display: none !important;
}

.promo-card {
  position: relative;
  display: block;
  min-height: 228px;
  overflow: hidden;
  border: 1px solid #a855f7;
  background: #12081f;
  color: #fff;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.promo-card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.promo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(7, 6, 18, .78) 0%, rgba(7, 6, 18, .35) 42%, rgba(7, 6, 18, .08) 70%, transparent 100%);
}

.promo-card:hover {
  transform: translateY(-5px);
  border-color: #d8b4fe;
  box-shadow: 0 16px 32px rgba(122, 45, 255, .28), 0 0 0 1px rgba(216, 180, 254, .25);
}

.promo-card-in {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  max-width: 74%;
  min-height: 228px;
  padding: 22px 22px 20px;
}

.promo-date {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 10px;
  border-radius: 4px;
  background: rgba(37, 99, 235, .72);
  color: #fff;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -.02em;
  white-space: nowrap;
}

.promo-card-in b {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.25;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .45);
}

.promo-card-in span {
  color: rgba(255, 255, 255, .92);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .45);
}

.promo-prize {
  margin-top: auto;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.03em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .45);
}

.promo-empty {
  margin: 48px 0 0;
  color: #c9c6d8;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

.promo-tabs:has(+ .promo-subtabs:not([hidden])) {
  margin-bottom: 12px;
}

.promo-subtabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 0 28px;
}

.promo-subtabs[hidden],
.promo-grid[hidden],
.promo-detail[hidden],
.ed-panel[hidden] {
  display: none !important;
}

.promo-subtab {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(139, 92, 246, .42);
  border-radius: 8px;
  background: #0d0c18;
  color: #d8d4ee;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.02em;
  transition: background .18s ease, box-shadow .18s ease, color .18s ease, filter .18s ease;
}

.promo-subtab:hover,
.promo-subtab:focus-visible {
  filter: brightness(1.12);
}

.promo-subtab.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(180deg, #b56bff 0%, #6d28d9 100%);
  box-shadow: 0 6px 16px rgba(139, 92, 246, .32);
}

.promo-detail {
  max-width: 1080px;
  margin: 0 auto;
  color: #fff;
  font-size: 16px;
  line-height: 1.8;
}

.promo-detail p {
  margin: 0 0 10px;
  color: #f3f4ff;
}

.ed-hero {
  margin: 0 0 28px;
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, .38);
  border-radius: 14px;
  background: #060714;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .38), 0 0 0 1px rgba(139, 92, 246, .12);
}

.ed-hero img {
  width: 100%;
  height: auto;
}

.ed-lead {
  color: #fff;
  font-weight: 600;
}

.ed-title {
  margin: 28px 0 14px;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.3;
  text-shadow: 0 0 10px rgba(196, 181, 253, .55), 0 0 24px rgba(139, 92, 246, .38);
}

.ed-sub {
  margin: 28px 0 14px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.02em;
  text-shadow: 0 0 10px rgba(167, 139, 250, .4);
}

.ed-bullets,
.ed-note ul,
.ed-days {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.ed-bullets li,
.ed-note li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 16px;
}

.ed-bullets li::before,
.ed-note li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 5px;
  height: 5px;
  background: #fff;
}

.ed-note ul ul {
  margin: 8px 0 0;
}

.ed-note ul ul li::before {
  width: 4px;
  height: 4px;
  background: #c4b5fd;
}

.ed-days {
  margin: 0 0 8px;
}

.ed-days li {
  margin: 0 0 16px;
}

.ed-days b {
  display: block;
  font-size: 16px;
}

.ed-days span {
  display: block;
  margin-top: 4px;
  color: #e7e5f5;
  font-weight: 500;
}

.ed-note {
  margin: 28px 0;
  padding: 22px 24px 18px;
  border: 1px solid #7c5cff;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(18, 16, 36, .96), rgba(10, 10, 22, .96));
  box-shadow: 0 0 0 1px rgba(124, 92, 255, .16), 0 0 22px rgba(124, 92, 255, .28);
}

.ed-note h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
}

.ed-note h3 i {
  position: relative;
  width: 18px;
  height: 16px;
  flex: 0 0 18px;
}

.ed-note h3 i::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.ed-note h3 i::after {
  content: "!";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  color: #0b0c1b;
  font-size: 11px;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
}

.ed-note.is-warn {
  text-align: center;
}

.ed-note.is-warn h3 {
  justify-content: center;
  margin-bottom: 8px;
  font-size: 22px;
}

.ed-note.is-warn p {
  margin: 0;
  font-weight: 600;
}

.ed-spec {
  display: grid;
  gap: 12px;
}

.ed-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0;
}

.ed-row span {
  flex: 0 0 auto;
  color: #fff;
  font-weight: 500;
}

.ed-row i {
  flex: 1 1 auto;
  min-width: 24px;
  border-bottom: 1px dotted rgba(148, 187, 255, .42);
  transform: translateY(-5px);
}

.ed-row b {
  flex: 0 0 auto;
  color: #fff;
  font-weight: 800;
  letter-spacing: -.02em;
}

.ed-hint {
  margin: -4px 0 0;
  color: #c9c6d8;
  font-size: 13px;
  text-align: right;
}

.ed-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 48px;
  margin-top: 12px;
}


.site-foot {
  position: relative;
  z-index: 4;
  margin-top: 8px;
  padding: 0 70px 28px;
  background: #070716;
  border-top: 1px solid rgba(140, 44, 240, .28);
}

.foot-pay {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 72px;
}

.foot-pay-btn {
  flex: 0 0 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: none;
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.foot-pay-view {
  overflow: hidden;
  min-width: 0;
  flex: 1;
}

.foot-pay-track {
  display: flex;
  align-items: center;
  gap: 46px;
  width: max-content;
  color: #fff;
  will-change: transform;
}

.pay-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  min-width: 118px;
  height: 44px;
  color: #fff;
  opacity: .94;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .03em;
  white-space: nowrap;
}

.pay-logo svg {
  display: block;
  flex: 0 0 auto;
  fill: currentColor;
}

.pay-logo.is-pago {
  gap: 0;
  font-style: italic;
  font-weight: 900;
  letter-spacing: .04em;
}
.pay-logo.is-pago b {
  padding: 3px 7px 2px;
  border: 1.6px solid #fff;
  border-radius: 2px;
}
.pay-logo.is-pago em {
  margin-left: 4px;
  font-style: italic;
}

.pay-logo.is-safe {
  font-family: Arial, sans-serif;
  font-style: italic;
  font-weight: 800;
  letter-spacing: -.02em;
}

.pay-logo.is-ripple {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
}
.pay-logo.is-ripple svg { width: 22px; height: 22px; }

.pay-logo.is-eth {
  flex-direction: column;
  gap: 1px;
  font-weight: 500;
}
.pay-logo.is-eth svg { width: 18px; height: 18px; }
.pay-logo.is-eth em { font-size: 10px; letter-spacing: .08em; }

.pay-logo.is-btc {
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
}
.pay-logo.is-btc svg { width: 22px; height: 22px; }

.pay-logo.is-mc {
  position: relative;
  gap: 0;
  font-size: 11px;
  letter-spacing: .01em;
}
.pay-logo.is-mc i {
  width: 18px;
  height: 18px;
  border: 1.6px solid #fff;
  border-radius: 50%;
}
.pay-logo.is-mc i + i { margin-left: -7px; }
.pay-logo.is-mc em {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 8px;
  font-weight: 800;
}

.pay-logo.is-skrill {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.pay-logo.is-visa {
  font-style: italic;
  font-weight: 900;
  letter-spacing: .18em;
}

.pay-logo.is-bank {
  flex-direction: column;
  gap: 2px;
}
.pay-logo.is-bank svg { width: 22px; height: 22px; }
.pay-logo.is-bank em { font-size: 8px; letter-spacing: .08em; }

.pay-logo.is-astro {
  flex-direction: column;
  gap: 3px;
  font-size: 16px;
}
.pay-logo.is-astro em {
  padding: 0 8px;
  border: 1.4px solid #fff;
  border-radius: 2px;
  font-size: 9px;
  letter-spacing: .08em;
}

.pay-logo.is-directa {
  flex-direction: column;
  gap: 0;
  font-size: 16px;
  font-weight: 800;
}
.pay-logo.is-directa svg { width: 34px; height: 10px; }

.pay-logo.is-much { font-size: 16px; }
.pay-logo.is-much b {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1.5px solid #fff;
  border-radius: 4px;
  font-size: 12px;
}

.pay-logo.is-jeton { font-size: 18px; }
.pay-logo.is-jeton svg { width: 20px; height: 20px; }

.pay-logo.is-voucher {
  position: relative;
  min-width: 128px;
  letter-spacing: .16em;
  font-size: 13px;
}
.pay-logo.is-voucher svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.foot-cols {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px 32px;
  padding: 28px 8px 36px;
}

.foot-col h3 {
  margin: 0 0 14px;
  color: #e879f9;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.02em;
  text-shadow: 0 0 10px rgba(232, 121, 249, .7);
}

.foot-col a {
  display: block;
  margin: 0 0 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.foot-col a:hover {
  color: #e9d5ff;
}

.foot-corp {
  max-width: 1080px;
  margin: 28px auto 16px;
  padding: 0 12px;
  color: #9aa3b8;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.75;
  text-align: center;
}

.foot-legal {
  max-width: 980px;
  margin: 0 auto 28px;
  color: #eceaf6;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.75;
  text-align: center;
}

.foot-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
}

.foot-sns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.foot-sns a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1.5px solid #fff;
  border-radius: 50%;
  color: #fff;
}

.foot-sns svg {
  width: 14px;
  height: 14px;
}

.foot-copy {
  text-align: center;
}

.foot-copy p {
  margin: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.foot-powered {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 6px !important;
  color: #d6d3e8 !important;
  font-size: 12px !important;
  font-weight: 500 !important;
}

.foot-powered img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.foot-powered b {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.foot-meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.foot-marks {
  display: flex;
  align-items: center;
  gap: 18px;
}

.foot-age {
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
}

.foot-mark {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.foot-mark.is-juve,
.foot-mark.is-madrid,
.foot-mark.is-serie {
  width: 34px;
  height: 44px;
}

.foot-seal {
  display: block;
  width: 40px;
  height: 52px;
}

.foot-seal img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}


@media (max-width: 1180px) {
  .topbar {
    z-index: 190;
  }
  body.is-pops .topbar {
    z-index: 40;
  }
  .topbar-inner {
    display: flex;
    grid-template-columns: none;
    gap: 10px 12px;
    padding: 0 12px 0 16px;
  }
  .brand { order: 1; }
  .top-utils {
    display: contents;
  }
  .ticker { order: 2; flex: 1; }
  .top-utils .lang {
    order: 3;
    margin-left: auto;
  }
  .top-utils .util-tg { order: 4; }
  .top-utils .auth.is-login { order: 5; }
  .top-utils .auth.is-join,
  .top-utils .sess { order: 6; }
  .top-utils .util-bypass { order: 7; }
  .nav-toggle {
    order: 8;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .nav-toggle-bars {
    position: relative;
    width: 22px;
    height: 15px;
  }
  .nav-toggle-bars i {
    position: absolute;
    left: 50%;
    height: 2.4px;
    border-radius: 999px;
    background: #c26cff;
    box-shadow: 0 0 7px rgba(194, 108, 255, .9);
    transform: translateX(-50%);
    transition:
      top .34s cubic-bezier(.22, 1, .36, 1),
      width .34s cubic-bezier(.22, 1, .36, 1),
      transform .34s cubic-bezier(.22, 1, .36, 1),
      opacity .2s ease;
  }
  .nav-toggle-bars i:nth-child(1) { top: 0; width: 13px; }
  .nav-toggle-bars i:nth-child(2) { top: 6.3px; width: 22px; }
  .nav-toggle-bars i:nth-child(3) { top: 12.6px; width: 13px; }
  body.is-nav .nav-toggle-bars i:nth-child(1) {
    top: 6.3px;
    width: 22px;
    transform: translateX(-50%) rotate(45deg);
  }
  body.is-nav .nav-toggle-bars i:nth-child(2) {
    opacity: 0;
    transform: translateX(-50%) scaleX(.15);
  }
  body.is-nav .nav-toggle-bars i:nth-child(3) {
    top: 6.3px;
    width: 22px;
    transform: translateX(-50%) rotate(-45deg);
  }
  .nav {
    height: 0;
    overflow: visible;
    border: 0;
    box-shadow: none;
    background: transparent;
  }
  .nav-inner {
    height: 0;
    padding: 0;
  }
  .nav-dim {
    display: block;
    position: fixed;
    top: var(--topbar-h);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 170;
    background: rgba(0, 0, 0, .78);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
  }
  .nav-dim[hidden] { display: block; }
  body.is-nav .nav-dim {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-panel {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--topbar-h);
    left: 0;
    bottom: 0;
    z-index: 180;
    width: min(320px, 86vw);
    overflow: auto;
    background:
      linear-gradient(180deg, rgba(162, 77, 255, .12), transparent 120px),
      #0b0c16;
    box-shadow: 12px 0 40px rgba(0, 0, 0, .45);
    transform: translateX(-105%);
    transition: transform .32s cubic-bezier(.22, .8, .24, 1);
  }
  body.is-nav .nav-panel {
    transform: none;
  }
  .event {
    order: -1;
    width: calc(100% - 28px);
    min-width: 0;
    height: 52px;
    margin: 14px 14px 8px;
    padding: 0 20px 0 14px;
    justify-content: center;
    font-size: 16px;
  }
  .menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: visible;
    padding: 6px 0 28px;
  }
  .menu li {
    width: 100%;
  }
  .menu a {
    width: 100%;
    height: 50px;
    padding: 0 20px;
    justify-content: flex-start;
    gap: 10px;
    border-bottom: 1px solid rgba(140, 44, 240, .16);
    font-size: 15px;
  }
  .menu a:hover,
  .menu a:focus-visible {
    background: rgba(162, 77, 255, .12);
  }
  .ico-broadcast {
    position: static;
    transform: none;
    order: 1;
    flex: 0 0 24px;
    width: 24px;
    height: 15px;
    filter: drop-shadow(0 0 5px rgba(255, 45, 58, .75));
  }
  .new {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    margin-left: 6px;
  }
  body.is-nav {
    overflow: hidden;
  }
}

@media (max-width: 980px) {
  :root {
    --topbar-h: 60px;
    --head-ico: 36px;
    --mfoot-h: calc(100svw * 192 / 988);
  }
  body {
    padding-bottom: calc(var(--mfoot-h) + env(safe-area-inset-bottom, 0px));
  }
  .topbar-inner {
    height: var(--topbar-h);
    padding: 12px 12px 12px 16px;
    align-items: center;
  }
  .shell { width: calc(100% - 24px); }
  .util-bypass { display: none; }
  .ticker { max-width: 360px; }
  .util-tg .util-label { display: none; }
  .brand { line-height: 0; }
  .brand .brand-logo {
    display: block;
    height: var(--head-ico);
  }
  .brand .brand-mark {
    display: none;
  }
  .nav-toggle {
    width: var(--head-ico);
    height: var(--head-ico);
  }
  .tg-mark {
    width: var(--head-ico);
    height: var(--head-ico);
  }
  .lang-toggle,
  .lang-btn,
  .lang-ring {
    display: grid;
    place-items: center;
    width: var(--head-ico);
    height: var(--head-ico);
  }
  .lang-disc {
    width: 26px;
    height: 26px;
  }
  .auth,
  .sess-bal,
  .sess-avatar {
    height: var(--head-ico);
  }
  .auth.is-login,
  .auth.is-join {
    box-shadow:
      0 -3px 8px rgba(90, 80, 255, .32),
      0 3px 8px rgba(90, 80, 255, .32),
      inset 0 6px 8px rgba(67, 90, 224, .16),
      inset 0 -6px 8px rgba(67, 90, 224, .16);
  }
  .auth.is-join {
    box-shadow:
      0 -3px 8px rgba(177, 77, 255, .34),
      0 3px 8px rgba(177, 77, 255, .34),
      inset 0 6px 8px rgba(196, 93, 255, .16),
      inset 0 -6px 8px rgba(196, 93, 255, .16);
  }
  .event { height: 48px; font-size: 15px; }
  .hero { padding: 0 16px 8px; }
  .hot { padding: 8px 10px 20px; }
  .hits { padding: 0 10px 20px; }
  .hits:last-of-type { padding-bottom: 36px; }
  .lobby { padding: 4px 10px 32px; }
  .hits-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hits-grid.is-live { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hits-grid.is-slot { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .hits-grid.is-sports { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero,
  .hot,
  .hits,
  .lobby,
  .site-foot,
  .stage,
  .liveboard,
  .hot-inner,
  .lobby-inner {
    max-width: 100%;
    min-width: 0;
  }
  .hot-bar,
  .hot-tabs {
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
  }
  .lobby-tabs {
    gap: 6px;
    padding: 6px;
  }
  .lobby-tab {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 0;
    min-height: 86px;
    padding: 10px 6px 12px;
    font-size: 13px;
    letter-spacing: -.04em;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    word-break: keep-all;
  }
  .lobby-ico {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
  }
  .prov-row,
  .prov-chip {
    overflow: visible;
  }
  .prov-tag {
    top: -6px;
    right: 2px;
  }
  .site-foot { padding: 0 10px 24px; }
  .prov-bar { padding: 10px 8px; }
  .prov-head {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .prov-tools {
    flex-wrap: nowrap;
    width: 100%;
    gap: 6px;
  }
  .prov-reset {
    flex: 0 0 auto;
    padding: 0 10px;
  }
  .prov-search {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
  }
  .prov-more { flex: 0 0 36px; }
  .prov-all {
    flex-direction: column;
    min-width: 0;
    padding: 4px 2px;
    font-size: 12px;
    line-height: 1.15;
    letter-spacing: -.04em;
  }
  .prov-row.is-casino {
    grid-template-columns: minmax(72px, 1fr) repeat(5, minmax(0, 1fr));
    grid-template-rows: repeat(4, 44px);
  }
  .prov-row.is-slot {
    grid-template-columns: minmax(72px, 1fr) repeat(6, minmax(0, 1fr));
    grid-template-rows: repeat(8, 44px);
  }
  .prov-row.is-slot .prov-all {
    grid-row: 1 / span 8;
  }
  .stage { grid-template-columns: 1fr; }
  .dock { display: none; }
  .to-top {
    top: auto;
    right: 22px;
    bottom: 98px;
    width: 64px;
    height: 64px;
  }
  .hot-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hot-chip-in { padding: 0 12px; font-size: 12px; }
  .hot-chip.is-title .hot-chip-in { font-size: 13px; padding: 0 14px 0 16px; }
  .promo-page { padding: 24px 24px 48px; }
  .site-foot { padding: 0 10px 24px; }
  .foot-cols { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px 18px; }
  .promo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .promo-card-in b, .promo-prize { font-size: 18px; }
  .ed-title { font-size: 24px; }
  .ed-cols { gap: 28px 28px; }
  .modal-form { padding: 18px 18px 22px; }
  .modal-hero-mark { font-size: 28px; }
}

@media (max-width: 680px) {
  .ticker { display: none; }
  .auth {
    min-width: 64px;
    padding: 0 10px;
    font-size: 12px;
  }
  .sess-bal { padding: 0 8px 0 6px; }
  .sess-avatar { width: var(--head-ico); }
  .sess-krw b { font-size: 10px; }
  .topbar-inner { padding: 12px 10px; gap: 8px; }
  .top-utils { gap: 6px; }
  .hero {
    padding: 0 12px 8px;
  }
  .stage {
    grid-template-columns: 1fr;
  }
  .stage-promo { min-height: 0; }
  .stat-box strong { font-size: 22px; }
  .hot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hits-grid.is-live { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hits-grid.is-slot { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hits-grid.is-sports { grid-template-columns: 1fr; }
  .sport-copy { width: 70%; padding: 24px 16px 24px 28px; }
  .sport-copy strong { font-size: 24px; }
  .sport-copy em { font-size: 13px; }
  .lobby-tabs { gap: 5px; padding: 5px; }
  .lobby-tab {
    min-height: 80px;
    padding: 8px 2px 10px;
    font-size: 12px;
    gap: 5px;
  }
  .lobby-ico { width: 30px; height: 30px; flex-basis: 30px; }
  .hot { padding: 8px 8px 16px; }
  .hits { padding: 0 8px 16px; }
  .lobby { padding: 4px 8px 28px; }
  .prov-bar { padding: 10px 6px; }
  .prov-tools { flex-wrap: nowrap; width: 100%; gap: 6px; }
  .prov-reset { flex: 0 0 auto; padding: 0 10px; font-size: 12px; }
  .prov-search { flex: 1 1 auto; width: auto; min-width: 0; }
  .prov-more { flex: 0 0 36px; }
  .prov-chip { width: calc(50% - 8px); }
  .prov-chip.is-slot-more,
  .hits-card.is-slot-grid-more:not(.is-hide) { display: grid; }
  .prov-row.is-casino {
    grid-template-columns: minmax(64px, 1fr) repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(5, 38px);
  }
  .prov-row.is-casino .prov-chip { width: auto; }
  .prov-row.is-slot {
    grid-template-columns: minmax(64px, 1fr) repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(3, 38px);
  }
  .prov-row.is-slot .prov-all { grid-row: 1 / span 3; }
  .prov-row.is-slot .prov-chip { width: auto; }
  .prov-row.is-slot > .prov-chip:nth-child(n+14) { display: none; }
  .prov-bar.is-slot-open .prov-row.is-slot {
    grid-template-rows: repeat(13, 38px);
  }
  .prov-bar.is-slot-open .prov-row.is-slot .prov-all { grid-row: 1 / span 13; }
  .prov-bar.is-slot-open .prov-row.is-slot > .prov-chip:nth-child(n+14) { display: grid; }
  .prov-bar.is-slot-open .prov-chip.is-slot-more { order: 40; }
  .hits-grid.is-slot > .hits-card:nth-child(n+13) { display: none; }
  .hits-grid.is-slot.is-slot-open > .hits-card:nth-child(n+13) { display: block; }
  .hits-grid.is-slot.is-slot-open > .hits-card.is-slot-grid-more { order: 40; }
  .hot-tabs { gap: 6px; overflow: auto; }
  .hot-bar { gap: 6px; overflow: auto; }
  .promo-grid { grid-template-columns: 1fr; }
  .promo-card-in { max-width: 86%; }
  .promo-tabs { gap: 8px; }
  .promo-tab { min-width: 0; flex: 1 1 auto; padding: 0 12px; font-size: 14px; }
  .promo-subtabs { gap: 6px; margin-bottom: 20px; }
  .promo-subtab { flex: 1 1 auto; min-height: 38px; padding: 0 10px; font-size: 13px; }
  .ed-title { font-size: 22px; }
  .ed-note { padding: 16px 14px 12px; }
  .ed-cols { grid-template-columns: 1fr; gap: 22px; }
  .ed-hint { text-align: left; }
  .foot-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .foot-bar { grid-template-columns: 1fr; justify-items: center; gap: 14px; }
  .foot-sns, .foot-meta { justify-content: center; }
  .foot-marks { gap: 12px; flex-wrap: wrap; justify-content: center; }
  .foot-age { font-size: 24px; }
}

.livechat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

body.is-modal .livechat {
  visibility: hidden;
  pointer-events: none;
}

.livechat-pop {
  width: min(408px, calc(100vw - 36px));
  transform-origin: 100% 100%;
}

.livechat-pop[hidden] { display: none; }

.livechat.is-open .livechat-pop {
  display: block;
  animation: livechat-in .28s cubic-bezier(.18,.86,.24,1);
}

.livechat-tools {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 0;
}

.livechat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  margin-left: 14px;
  padding: 0 14px 0 6px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .28);
  transform: translateY(-50%);
}

.livechat-pill img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  background: transparent;
}

.livechat-pill b {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.02em;
  white-space: nowrap;
}

.livechat-x {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-right: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #111;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .22);
  transform: translateY(-50%);
}

.livechat-x svg { width: 16px; height: 16px; }

.livechat-x:hover,
.livechat-x:focus-visible {
  filter: brightness(.94);
}

.livechat-card {
  overflow: hidden;
  border-radius: 26px;
  background: #f3f3f3;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .38);
}

.livechat-hero {
  display: block;
  width: 100%;
  height: 188px;
  object-fit: cover;
  object-position: center;
}

.livechat-copy {
  padding: 18px 22px 22px;
  color: #171717;
  text-align: center;
}

.livechat-copy h3 {
  margin: 0 0 10px;
  font-size: 31px;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.2;
}

.livechat-sub {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 700;
}

.livechat-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.livechat-copy li {
  margin: 4px 0;
  font-size: 19px;
  font-weight: 700;
}

.livechat-warn {
  margin: 14px 0 0;
  color: #3a3a3a;
  font-size: 16px;
  font-weight: 700;
}

.livechat-go {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  margin-top: 14px;
  border-radius: 10px;
  background: linear-gradient(180deg, #9b5cff, #7a3dff);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(122, 61, 255, .28);
}

.livechat-go:hover,
.livechat-go:focus-visible {
  filter: brightness(1.08);
}

.livechat-fab {
  width: 64px;
  height: 64px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .38);
  animation: livechat-fab .7s cubic-bezier(.18,.86,.24,1) both;
}

.livechat-fab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.livechat-fab:hover,
.livechat-fab:focus-visible {
  transform: translateY(-2px) scale(1.04);
}

@keyframes livechat-in {
  from { opacity: 0; transform: translateY(14px) scale(.96); }
  to { opacity: 1; transform: none; }
}

@keyframes livechat-fab {
  from { opacity: 0; transform: translateY(12px) scale(.8); }
}

@media (max-width: 680px) {
  .livechat-copy h3 { font-size: 26px; }
  .livechat-hero { height: 160px; }
}

@media (prefers-reduced-motion: reduce) {
  .livechat.is-open .livechat-pop,
  .livechat-fab {
    animation: none;
  }
}

body.is-pops { overflow: hidden; }

.notice-pops {
  position: fixed;
  inset: 0;
  z-index: 170;
  display: grid;
  place-items: center;
  overflow: auto;
  padding: 28px 20px;
}

.notice-pops[hidden] { display: none !important; }

.notice-pops-dim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(40, 22, 72, .35), transparent 58%),
    rgba(4, 2, 10, .78);
}

.notice-pops-row {
  --pop-w: 383px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 28px;
  width: max-content;
  max-width: min(1400px, calc(100vw - 40px));
}

.notice-pop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: var(--pop-w);
  flex: 0 0 var(--pop-w);
  max-width: 100%;
  min-width: 0;
}

.notice-pop[hidden] { display: none !important; }

.notice-pop-x {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .55));
}

.notice-pop-x svg { width: 22px; height: 22px; }

.notice-pop-x:hover,
.notice-pop-x:focus-visible {
  color: #d7c8ff;
}

.notice-pop-card {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid #7a3dff;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(28, 22, 46, .94) 0%, rgba(10, 8, 18, .98) 100%);
  box-shadow:
    0 0 0 1px rgba(122, 61, 255, .12),
    0 22px 48px rgba(0, 0, 0, .48),
    inset 0 1px 0 rgba(255, 255, 255, .04);
}

.notice-pop-card:hover,
.notice-pop-card:focus-visible {
  border-color: #9b5cff;
  filter: brightness(1.04);
}

.notice-pop-art {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 18%, rgba(122, 61, 255, .2), transparent 56%),
    radial-gradient(ellipse at 80% 90%, rgba(77, 125, 255, .1), transparent 46%),
    linear-gradient(180deg, #1c1730 0%, #0c0a14 100%);
  box-shadow: inset 0 -1px 0 rgba(122, 61, 255, .28);
}

.notice-pop-art img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
}

.notice-pop-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 16px 18px 18px;
  text-align: center;
}

.notice-pop-copy h3,
.notice-pop-copy p {
  overflow: hidden;
  margin: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.notice-pop-copy h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.35;
}

.notice-pop-copy p {
  color: #7ee8ff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.4;
}

.notice-pop-more {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  margin-top: auto;
  border-radius: 8px;
  background: linear-gradient(90deg, #4d7dff 0%, #7a3dff 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(122, 61, 255, .32);
}

.notice-pop-more:hover,
.notice-pop-more:focus-visible {
  filter: brightness(1.08);
}

.notice-pop-today {
  width: 100%;
  height: 38px;
  border: 1px solid rgba(162, 77, 255, .38);
  border-radius: 4px;
  background: rgba(8, 6, 16, .72);
  color: #d7d4e6;
  font-size: 13px;
  font-weight: 700;
}

.notice-pop-today:hover,
.notice-pop-today:focus-visible {
  border-color: #9b5cff;
  color: #fff;
}

@media (max-width: 980px) {
  .notice-pops {
    z-index: 220;
    place-items: center;
    overflow: auto;
    padding: 20px 12px;
  }
  .notice-pops-dim {
    background: rgba(0, 0, 0, .84);
  }
  .notice-pops-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 0;
    width: min(var(--pop-w), 100%);
    max-width: 100%;
  }
  .notice-pop {
    grid-area: 1 / 1;
    width: 100%;
    flex: none;
  }
  .notice-pop:nth-child(1) { z-index: 3; }
  .notice-pop:nth-child(2) { z-index: 2; }
  .notice-pop:nth-child(3) { z-index: 1; }
}

@keyframes mfoot-wash {
  0%, 100% { opacity: .42; transform: translate(-50%, -50%) scale(.88); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}
@keyframes mfoot-sweep {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes mfoot-core {
  0%, 100% { opacity: .5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.22); }
}
@keyframes mfoot-ping {
  0% { opacity: .8; transform: translate(-50%, -50%) scale(.42); }
  72% { opacity: .12; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(2.7); }
}

@media (prefers-reduced-motion: reduce) {
  .notice-pop-more { box-shadow: none; }
  .nav-toggle-bars i { transition: none; }
  .m-foot-fx-wash,
  .m-foot-fx-sweep,
  .m-foot-fx-core,
  .m-foot-fx-ping {
    animation: none;
  }
}

.m-foot {
  display: none;
}

@media (max-width: 980px) {
  .m-foot {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 160;
    height: auto;
    padding: 0 0 env(safe-area-inset-bottom, 0px);
    overflow: visible;
    background: #0a0614;
  }
  .m-foot-art {
    display: block;
    width: 100%;
    height: auto;
    pointer-events: none;
  }
  .m-foot-hit {
    position: absolute;
    inset: 0 0 env(safe-area-inset-bottom, 0px);
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .m-foot-item {
    position: relative;
    min-width: 0;
  }
  .m-foot-item:focus-visible {
    outline: 2px solid #c678ff;
    outline-offset: -4px;
  }
  .m-foot-item.is-event {
    overflow: hidden;
  }
  .m-foot-fx {
    display: block;
    position: absolute;
    inset: 0;
    font-weight: 400;
    pointer-events: none;
  }
  .m-foot-fx-wash {
    position: absolute;
    left: 50%;
    top: 48%;
    width: 92%;
    height: 94%;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(210, 140, 255, .34) 0%, rgba(168, 72, 255, .14) 46%, transparent 74%);
    transform: translate(-50%, -50%) scale(.9);
    animation: mfoot-wash 2.8s ease-in-out infinite;
  }
  .m-foot-fx-sweep {
    position: absolute;
    left: 50%;
    top: 46%;
    width: 78%;
    height: 86%;
    border-radius: 50%;
    background: conic-gradient(from 180deg, transparent 0 62%, rgba(255, 236, 255, .28) 78%, transparent 92%);
    -webkit-mask: radial-gradient(ellipse at center, transparent 40%, #000 56%, #000 72%, transparent 80%);
    mask: radial-gradient(ellipse at center, transparent 40%, #000 56%, #000 72%, transparent 80%);
    transform: translate(-50%, -50%);
    animation: mfoot-sweep 4.6s linear infinite;
  }
  .m-foot-fx-core {
    position: absolute;
    left: 50%;
    top: 36%;
    width: 30px;
    height: 20px;
    border-radius: 50%;
    background: rgba(236, 196, 255, .32);
    box-shadow:
      0 0 10px 3px rgba(194, 108, 255, .5),
      0 0 22px 8px rgba(168, 72, 255, .22);
    transform: translate(-50%, -50%);
    animation: mfoot-core 1.7s ease-in-out infinite;
  }
  .m-foot-fx-ping {
    position: absolute;
    left: 50%;
    top: 36%;
    width: 24px;
    height: 16px;
    border: 1.4px solid rgba(232, 196, 255, .9);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(194, 108, 255, .45);
    transform: translate(-50%, -50%) scale(.45);
    animation: mfoot-ping 2.35s cubic-bezier(.16, .84, .32, 1) infinite;
  }
  .m-foot-fx-ping.is-late {
    animation-delay: 1.15s;
  }
  .m-foot-item span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .livechat {
    right: 14px;
    bottom: calc(var(--mfoot-h) + 12px + env(safe-area-inset-bottom, 0px));
    z-index: 165;
  }
  .livechat-fab {
    width: 56px;
    height: 56px;
  }
  .to-top {
    right: 14px;
    bottom: calc(var(--mfoot-h) + 80px + env(safe-area-inset-bottom, 0px));
    width: 56px;
    height: 56px;
  }
  body.is-pops .m-foot,
  body.is-modal .m-foot {
    z-index: 40;
  }
}

.sg-alert {
  position: fixed;
  top: calc(var(--topbar-h) + 16px);
  left: 50%;
  z-index: 400;
  min-width: min(420px, calc(100vw - 32px));
  max-width: min(520px, calc(100vw - 32px));
  padding: 14px 42px 14px 20px;
  border-radius: 4px;
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .22);
  transform: translateX(-50%) translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.sg-alert.is-on {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.sg-alert::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: 4px 0 0 4px;
}

.sg-alert.is-ok {
  background: #2ecc71;
}

.sg-alert.is-ok::before {
  background: #1e8449;
}

.sg-alert strong {
  display: block;
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.sg-alert p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,.94);
}

.sg-alert-x {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

.sg-alert-x:hover,
.sg-alert-x:focus-visible {
  opacity: .75;
}
