/* ==========================================================================
   DC Bet — components (neon gaming card system)
   ========================================================================== */

@property --dc-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes dc-spin {
  to {
    --dc-angle: 360deg;
  }
}

@keyframes dc-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(232, 184, 75, .5), 0 0 22px rgba(232, 184, 75, .22);
  }

  50% {
    box-shadow: 0 0 0 1px rgba(232, 184, 75, .85), 0 0 34px rgba(232, 184, 75, .42);
  }
}

@keyframes dc-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes dc-blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .25;
  }
}

@keyframes dc-rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ------------------------------------------------------------- buttons -- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  padding: 0 22px;
  border-radius: var(--r-pill);
  font-family: 'Sora', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: transform .16s var(--ease), box-shadow .2s var(--ease),
    background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}

.btn:active {
  transform: translateY(1px) scale(.99);
}

.btn--gold {
  background: var(--grad-gold);
  color: #0a0a0c;
  box-shadow: 0 6px 20px rgba(232, 184, 75, .26);
}

.btn--gold:hover {
  color: #0a0a0c;
  box-shadow: 0 8px 30px rgba(232, 184, 75, .46);
  transform: translateY(-1px);
}

.btn--ghost {
  background: var(--surface);
  border-color: var(--line);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: rgba(232, 184, 75, .6);
  color: var(--gold);
  box-shadow: 0 0 20px rgba(232, 184, 75, .16);
}

.btn--line {
  background: transparent;
  border-color: rgba(232, 184, 75, .55);
  color: var(--gold);
}

.btn--line:hover {
  background: rgba(232, 184, 75, .1);
  color: var(--gold-2);
}

.btn--sm {
  height: 34px;
  padding: 0 16px;
  font-size: 12.5px;
}

.btn--lg {
  height: 50px;
  padding: 0 30px;
  font-size: 15px;
}

.btn--block {
  width: 100%;
}

.btn[disabled] {
  opacity: .45;
  pointer-events: none;
}

/* ------------------------------------------------------- section header -- */
.sec {
  margin-top: 34px;
}

.sec__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.sec__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.sec__title svg {
  color: var(--gold);
}

.sec__count {
  font-size: 12px;
  color: var(--muted-2);
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

.sec__tools {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 7px;
}

.sec__all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 32px;
  padding: 0 14px;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid var(--line);
  color: #cfcbc3;
  font-size: 12.5px;
  font-weight: 600;
}

.sec__all:hover {
  border-color: rgba(232, 184, 75, .6);
  color: var(--gold);
}

.rail__nav {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  color: #cfcbc3;
  transition: all .18s var(--ease);
}

.rail__nav:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 16px rgba(232, 184, 75, .25);
}

.rail__nav[disabled] {
  opacity: .3;
  pointer-events: none;
}

/* ----------------------------------------------------------- game rail -- */
.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 6 * 12px) / 7);
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.rail::-webkit-scrollbar {
  display: none;
}

.rail > * {
  scroll-snap-align: start;
}

.grid-games {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
  gap: 14px;
}

/* ----------------------------------------------------------- game card -- */
.gcard {
  position: relative;
  border-radius: var(--r-md);
  background: var(--surface);
  isolation: isolate;
  transition: transform .22s var(--ease);
}

.gcard::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: calc(var(--r-md) + 2px);
  background: conic-gradient(from var(--dc-angle),
      rgba(232, 184, 75, 0) 0deg,
      rgba(232, 184, 75, .95) 70deg,
      rgba(247, 214, 126, .3) 140deg,
      rgba(232, 184, 75, 0) 220deg,
      rgba(232, 184, 75, 0) 360deg);
  opacity: 0;
  z-index: -1;
  transition: opacity .25s var(--ease);
}

.gcard:hover {
  transform: translateY(-5px);
}

.gcard:hover::before,
.gcard:focus-within::before {
  opacity: 1;
  animation: dc-spin 2.6s linear infinite;
}

.gcard__media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #101015;
}

.gcard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease), filter .3s var(--ease);
}

.gcard:hover .gcard__img {
  transform: scale(1.07);
  filter: brightness(.5) saturate(1.1);
}

.gcard__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 10px;
  justify-items: center;
  opacity: 0;
  transition: opacity .25s var(--ease);
  background: radial-gradient(circle at 50% 45%, rgba(232, 184, 75, .16), rgba(6, 6, 8, .72) 72%);
}

.gcard:hover .gcard__overlay,
.gcard:focus-within .gcard__overlay {
  opacity: 1;
}

.gcard__play {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--grad-gold);
  color: #0a0a0c;
  box-shadow: 0 0 0 5px rgba(232, 184, 75, .16), 0 8px 24px rgba(0, 0, 0, .5);
  transform: scale(.8);
  transition: transform .25s var(--ease);
}

.gcard:hover .gcard__play {
  transform: scale(1);
}

.gcard__demo {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-2);
  border-bottom: 1px dashed rgba(247, 214, 126, .5);
  padding-bottom: 2px;
}

.gcard__fav {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(8, 8, 10, .62);
  backdrop-filter: blur(6px);
  color: #cfcbc3;
  opacity: 0;
  transform: translateY(-4px);
  transition: all .22s var(--ease);
  z-index: 3;
}

.gcard:hover .gcard__fav,
.gcard__fav.is-on {
  opacity: 1;
  transform: none;
}

.gcard__fav:hover {
  color: var(--gold);
}

.gcard__fav.is-on {
  color: #ff5d73;
}

.gcard__tags {
  position: absolute;
  top: 7px;
  left: 7px;
  display: flex;
  gap: 5px;
  z-index: 3;
}

.tag {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 5px;
  color: #0a0a0c;
  font-family: 'Sora', sans-serif;
}

.tag--new {
  background: linear-gradient(120deg, #6ef0a5, #21b968);
}

.tag--hot {
  background: linear-gradient(120deg, #ffb36b, #ff5f39);
}

.tag--top {
  background: var(--grad-gold);
}

.tag--buy {
  background: linear-gradient(120deg, #d6b3ff, #8a4dff);
  color: #fff;
}

.tag--live {
  background: linear-gradient(120deg, #ff8080, #e02020);
  color: #fff;
}

.gcard__body {
  padding: 9px 4px 2px;
}

.gcard__name {
  font-size: 12.5px;
  font-weight: 600;
  color: #e9e6e0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.gcard__meta {
  font-size: 10.5px;
  color: var(--muted-2);
  letter-spacing: .04em;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* --------------------------------------------------------------- hero -- */
.hero {
  position: relative;
  margin-top: 20px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line-soft);
}

.hero__track {
  display: flex;
  transition: transform .6s var(--ease);
}

.hero__slide {
  position: relative;
  flex: 0 0 100%;
  min-height: clamp(240px, 30vw, 360px);
  display: flex;
  align-items: center;
}

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

.hero__slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 6, 8, .95) 6%, rgba(6, 6, 8, .72) 44%, rgba(6, 6, 8, .1) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(22px, 3.4vw, 48px);
  max-width: 560px;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 5px 12px;
  border: 1px solid rgba(232, 184, 75, .4);
  border-radius: var(--r-pill);
  margin-bottom: 14px;
  background: rgba(232, 184, 75, .07);
}

.hero__title {
  font-size: clamp(24px, 3.3vw, 40px);
  margin-bottom: 10px;
  text-shadow: 0 3px 24px rgba(0, 0, 0, .7);
}

.hero__title em {
  font-style: normal;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__text {
  font-size: 14.5px;
  color: #cdc9c2;
  max-width: 44ch;
  margin-bottom: 20px;
}

.hero__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero__dots {
  position: absolute;
  left: clamp(22px, 3.4vw, 48px);
  bottom: 18px;
  display: flex;
  gap: 7px;
  z-index: 3;
}

.hero__dots button {
  width: 22px;
  height: 4px;
  border-radius: 3px;
  background: rgba(255, 255, 255, .26);
  transition: background .2s var(--ease), width .2s var(--ease);
}

.hero__dots button.is-on {
  width: 34px;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold-glow);
}

.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(10, 10, 12, .6);
  border: 1px solid var(--line);
  color: #fff;
  z-index: 4;
  backdrop-filter: blur(6px);
}

.hero__arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero__arrow--prev {
  left: 14px;
}

.hero__arrow--next {
  right: 14px;
}

/* --------------------------------------------------------- wins ticker -- */
.ticker {
  margin-top: 26px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  background: var(--surface);
  overflow: hidden;
  position: relative;
}

.ticker__label {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  background: linear-gradient(90deg, #15161b 72%, rgba(21, 22, 27, 0));
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-right: 34px;
}

.ticker__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--win);
  animation: dc-blink 1.6s infinite;
}

.ticker__viewport {
  overflow: hidden;
  padding: 10px 0;
}

.ticker__track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: dc-marquee 52s linear infinite;
}

.ticker:hover .ticker__track {
  animation-play-state: paused;
}

.win-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 14px 6px 6px;
  border-radius: var(--r-pill);
  background: var(--surface-2);
  border: 1px solid var(--line);
  white-space: nowrap;
}

.win-chip img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.win-chip__game {
  font-size: 12px;
  color: #d5d1ca;
  max-width: 130px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.win-chip__user {
  font-size: 10.5px;
  color: var(--muted-2);
}

.win-chip__amt {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  color: var(--win);
}

/* ------------------------------------------------------- provider strip -- */
.provs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
}

.prov {
  display: grid;
  place-items: center;
  gap: 6px;
  height: 74px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  transition: all .2s var(--ease);
}

.prov:hover {
  border-color: rgba(232, 184, 75, .5);
  box-shadow: 0 0 22px rgba(232, 184, 75, .12);
  transform: translateY(-3px);
}

.prov__name {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #d9d5ce;
  letter-spacing: .02em;
}

.prov__count {
  font-size: 10.5px;
  color: var(--muted-2);
}

/* ------------------------------------------------------- bonus banners -- */
.bonuses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}

.bcard {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  min-height: 208px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .22s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}

.bcard:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 184, 75, .45);
  box-shadow: 0 0 34px rgba(232, 184, 75, .16);
}

.bcard__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .85;
}

.bcard::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 6, 8, .25) 0%, rgba(6, 6, 8, .92) 76%);
}

.bcard__body {
  position: relative;
  z-index: 2;
  padding: 18px;
}

.bcard__kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.bcard__title {
  font-family: 'Sora', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.2;
}

.bcard__sub {
  font-size: 12.5px;
  color: #b9b5ae;
  margin-bottom: 14px;
}

/* ---------------------------------------------------------- bet tables -- */
.tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-pill);
  width: fit-content;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tabs button {
  height: 36px;
  padding: 0 20px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  transition: all .2s var(--ease);
}

.tabs button.is-on {
  background: var(--grad-gold);
  color: #0a0a0c;
  box-shadow: 0 4px 16px rgba(232, 184, 75, .28);
}

.tabs button:not(.is-on):hover {
  color: var(--gold);
}

.btable {
  margin-top: 12px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface);
}

.btable table {
  min-width: 620px;
}

.btable__scroll {
  overflow-x: auto;
}

.btable th {
  text-align: left;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 600;
  padding: 13px 16px;
  background: #101116;
  border-bottom: 1px solid var(--line-soft);
}

.btable td {
  padding: 11px 16px;
  font-size: 13px;
  color: #d3cfc8;
  border-bottom: 1px solid rgba(42, 45, 54, .5);
}

.btable tbody tr:last-child td {
  border-bottom: 0;
}

.btable tbody tr {
  transition: background .18s var(--ease);
}

.btable tbody tr:hover {
  background: rgba(232, 184, 75, .045);
}

.btable tbody tr.is-fresh {
  animation: dc-rise .5s var(--ease);
}

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

.btable__game img {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  object-fit: cover;
}

.btable__profit {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--win);
  text-align: right;
}

.btable__profit--loss {
  color: #ff6b6b;
}

.btable th:last-child,
.btable td:last-child {
  text-align: right;
}

/* -------------------------------------------------------------- modals -- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(4, 4, 6, .78);
  backdrop-filter: blur(7px);
}

.modal.is-open {
  display: flex;
}

.modal__box {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  background: var(--grad-surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .7), var(--shadow-gold);
  padding: 26px;
  animation: dc-rise .28s var(--ease);
}

.modal__box--wide {
  max-width: 620px;
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--muted);
}

.modal__close:hover {
  color: var(--gold);
  background: var(--surface-3);
}

.modal__title {
  font-size: 22px;
  margin-bottom: 4px;
}

.modal__sub {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 20px;
}

.modal__foot {
  margin-top: 18px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

.steps {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}

.steps span {
  flex: 1;
  height: 3px;
  border-radius: 3px;
  background: var(--surface-3);
  transition: background .3s var(--ease);
}

.steps span.is-on {
  background: var(--grad-gold);
}

/* --------------------------------------------------------------- forms -- */
.field {
  margin-bottom: 14px;
}

.field > label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  background: #101116;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--text);
  font-size: 14px;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}

.field textarea {
  height: auto;
  min-height: 118px;
  padding: 12px 14px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(232, 184, 75, .7);
  box-shadow: 0 0 0 3px rgba(232, 184, 75, .12);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #55565f;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239a9aa5' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.field__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field__err {
  display: block;
  font-size: 12px;
  color: #ff6b6b;
  margin-top: 5px;
  min-height: 0;
}

.field.has-error input,
.field.has-error select {
  border-color: #ff6b6b;
}

.field__hint {
  font-size: 11.5px;
  color: var(--muted-2);
  margin-top: 5px;
}

.pwbar {
  display: flex;
  gap: 4px;
  margin-top: 7px;
}

.pwbar i {
  flex: 1;
  height: 3px;
  border-radius: 3px;
  background: var(--surface-3);
  transition: background .25s var(--ease);
}

.pwbar.lv1 i:nth-child(1) {
  background: #ff6b6b;
}

.pwbar.lv2 i:nth-child(-n+2) {
  background: #ffb020;
}

.pwbar.lv3 i:nth-child(-n+3) {
  background: #ffd35c;
}

.pwbar.lv4 i {
  background: var(--win);
}

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12.5px;
  color: #b6b3ba;
  margin-bottom: 11px;
  cursor: pointer;
  line-height: 1.5;
}

.check input {
  appearance: none;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #101116;
  display: grid;
  place-items: center;
  transition: all .18s var(--ease);
}

.check input:checked {
  background: var(--grad-gold);
  border-color: var(--gold);
}

.check input:checked::after {
  content: '';
  width: 10px;
  height: 5px;
  border-left: 2px solid #0a0a0c;
  border-bottom: 2px solid #0a0a0c;
  transform: rotate(-45deg) translate(1px, -1px);
}

.formmsg {
  padding: 11px 14px;
  border-radius: var(--r-sm);
  font-size: 13px;
  margin-bottom: 14px;
  display: none;
}

.formmsg.is-on {
  display: block;
}

.formmsg--err {
  background: rgba(255, 107, 107, .1);
  border: 1px solid rgba(255, 107, 107, .35);
  color: #ff9a9a;
}

.formmsg--ok {
  background: rgba(63, 211, 122, .1);
  border: 1px solid rgba(63, 211, 122, .35);
  color: #7fe3a8;
}

/* --------------------------------------------------------------- search -- */
.srch {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: none;
  background: rgba(4, 4, 6, .9);
  backdrop-filter: blur(10px);
  padding: 74px 18px 18px;
  overflow-y: auto;
}

.srch.is-open {
  display: block;
}

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

.srch__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 58px;
  padding: 0 18px;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid rgba(232, 184, 75, .4);
  box-shadow: 0 0 34px rgba(232, 184, 75, .14);
}

.srch__bar input {
  flex: 1;
  background: none;
  border: 0;
  outline: none;
  font-size: 16px;
}

.srch__hint {
  margin: 16px 0 10px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* ------------------------------------------------------------ notices -- */
.agegate,
.cookiebar {
  position: fixed;
  z-index: 220;
}

.agegate {
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(3, 3, 5, .93);
  backdrop-filter: blur(9px);
}

.agegate.is-open {
  display: flex;
}

.agegate__box {
  max-width: 420px;
  text-align: center;
  padding: 34px 28px;
  background: var(--grad-surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-gold);
}

.agegate__box img {
  width: 74px;
  margin: 0 auto 16px;
}

.cookiebar {
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: none;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 940px;
  margin: 0 auto;
  padding: 16px 20px;
  background: rgba(21, 22, 27, .97);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-2);
  font-size: 13px;
  color: #c4c0b9;
}

.cookiebar.is-open {
  display: flex;
}

.cookiebar__btns {
  margin-left: auto;
  display: flex;
  gap: 8px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 240;
  display: grid;
  gap: 8px;
}

.toast__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: var(--r-md);
  background: var(--surface-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
  font-size: 13.5px;
  animation: dc-rise .3s var(--ease);
  max-width: 330px;
}

.toast__item--ok {
  border-color: rgba(63, 211, 122, .45);
}

.toast__item--err {
  border-color: rgba(255, 107, 107, .45);
}

/* ------------------------------------------------------------ misc bits -- */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  font-size: 12.5px;
  color: var(--muted-2);
  padding: 18px 0 4px;
}

.crumbs a {
  color: var(--muted);
}

.crumbs a:hover {
  color: var(--gold);
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: clamp(18px, 2.4vw, 30px);
}

.panel + .panel {
  margin-top: 16px;
}

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

.chip {
  height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 15px;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid var(--line);
  color: #c4c0b9;
  font-size: 12.5px;
  font-weight: 500;
  transition: all .18s var(--ease);
}

.chip:hover {
  border-color: rgba(232, 184, 75, .55);
  color: var(--gold);
}

.chip.is-on {
  background: rgba(232, 184, 75, .13);
  border-color: var(--gold);
  color: var(--gold);
}

.acc {
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface);
}

.acc + .acc {
  margin-top: 10px;
}

.acc__head {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 14.5px;
  color: #e6e2dc;
}

.acc__head:hover {
  color: var(--gold);
}

.acc__head .chev {
  margin-left: auto;
  transition: transform .24s var(--ease);
  color: var(--muted);
}

.acc__head[aria-expanded="true"] .chev {
  transform: rotate(180deg);
  color: var(--gold);
}

.acc__body {
  padding: 0 18px 18px;
  font-size: 14px;
  color: #bdb9b2;
}

.acc__head[aria-expanded="false"] + .acc__body {
  display: none;
}

.empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}

.empty svg {
  margin: 0 auto 14px;
  color: var(--line);
}

.loadmore {
  display: grid;
  place-items: center;
  margin-top: 26px;
}

@media (max-width: 1280px) {
  .rail {
    grid-auto-columns: calc((100% - 5 * 12px) / 6);
  }
}

@media (max-width: 1024px) {
  .rail {
    grid-auto-columns: 150px;
  }
}

@media (max-width: 640px) {
  .grid-games {
    grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
    gap: 10px;
  }

  .rail {
    grid-auto-columns: 134px;
    gap: 10px;
  }

  .modal__box {
    padding: 22px 18px;
  }

  .cookiebar {
    font-size: 12.5px;
  }

  .cookiebar__btns {
    margin-left: 0;
    width: 100%;
  }

  .cookiebar__btns .btn {
    flex: 1;
  }

  .hero__arrow {
    display: none;
  }

  .hero__slide {
    min-height: 300px;
  }

  .hero__content {
    padding: 20px 18px 40px;
  }

  .hero__dots {
    left: 18px;
    bottom: 14px;
  }

  .hero__cta .btn {
    height: 42px;
    padding: 0 18px;
    font-size: 13px;
  }

  .sec__head {
    flex-wrap: wrap;
  }

  .ticker__label {
    position: static;
    background: none;
    padding: 12px 14px 0;
  }

  .ticker__viewport {
    padding-top: 8px;
  }
}
