@font-face {
  font-family: "Norse";
  src: url("../fonts/Norse-bold.otf") format("opentype");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "superior-title";
  src: url("../fonts/superior-title.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-body: Arial, Helvetica, sans-serif;
  --font-display: "Norse", "superior-title", serif;
  --font-title: "Norse", "superior-title", serif;

  --black: #0e0e0e;
  --panel: #121212;
  --panel-deep: #080909;
  --panel-soft: #172022;
  --line: rgba(255, 255, 255, .2);
  --line-strong: #91a5aa;
  --muted: #a4a4a4;
  --ice: #acf9ff;
  --ice-strong: #20d7df;
  --cream: #f7f1e4;
  --gold: #eadfbd;

  --site-top-line: #00605f;
  --body-bg: var(--panel);
  --page-bg:
    radial-gradient(circle at 65% 0, rgba(95, 124, 130, .22), transparent 38%),
    linear-gradient(180deg, #141414 0, #0d0e0e 58%, #121212 100%);
  --topbar-bg: linear-gradient(180deg, #090909 0%, #111 60%, #243035 100%);
  --footer-bg:
    radial-gradient(circle at 51% 47%, rgba(87, 134, 139, .14), transparent 34%),
    radial-gradient(circle at 58% 88%, rgba(42, 90, 96, .12), transparent 26%),
    linear-gradient(180deg, #080909 0%, #0b1111 56%, #0e1a1b 100%);

  --texture-sidebar: url("../fonts/sidebar-texture.webp");
  --texture-divider: url("../fonts/divider-big.webp");
  --texture-button-frame: url("../fonts/search-input-default_3x.webp");

  --button-glow: rgba(142, 242, 255, .5);
  --button-gradient:
    radial-gradient(112px 34px at 54% 48%, rgba(46, 230, 239, .74), rgba(25, 119, 129, .54) 37%, transparent 76%),
    linear-gradient(180deg, rgba(13, 21, 23, .94) 0%, rgba(22, 116, 127, .9) 52%, rgba(11, 42, 48, .98) 100%);
  --button-muted-gradient:
    radial-gradient(95px 34px at 54% 46%, rgba(235, 255, 255, .34), rgba(109, 147, 166, .28) 32%, transparent 70%),
    linear-gradient(180deg, rgba(11, 15, 17, .96) 0%, rgba(75, 98, 113, .9) 51%, rgba(23, 32, 40, .98) 100%);
}


* { box-sizing: border-box; }
html, body {
  min-height: 100%;
  margin: 0;
  background: var(--body-bg);
  color: #fff;
  font-family: var(--font-body);
}
button, input { font: inherit; }
a,
a:visited,
a:hover,
a:focus,
a:active {
  color: inherit;
  text-decoration: none;
}
button, a, label, [role="button"], summary { cursor: pointer; }
input, textarea { cursor: text; }

.godz-page {
  min-height: 100vh;
  background: var(--page-bg);
  overflow-x: hidden;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 4px 10px;
  border-top: 4px solid var(--site-top-line);
  border-bottom: 1px solid #979797;
  background: var(--topbar-bg);
  box-shadow: 0 2px 14px rgba(0, 0, 0, .8);
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand > img { width: 94px; height: 40px; object-fit: contain; }
.square-btn, .slide-arrow, .section-title button, .category-nav {
  color: #d7e5e8;
  border: 0;
  background: url('../fonts/icon-button-default.webp') center / 100% 100% no-repeat;
  box-shadow: none;
  transition: filter .16s ease, color .16s ease, background-image .16s ease;
}
.square-btn:hover, .slide-arrow:hover, .section-title button:hover, .category-nav:hover { background-image: url('../fonts/icon-button-hover.webp'); color: #fff; }
.square-btn {
  width: 40px;
  height: 40px;
  border-radius: 0;
  display: inline-grid;
  flex: 0 0 40px;
  place-items: center;
  background-image: url('../fonts/burger.webp');
}
.square-btn:hover { background-image: url('../fonts/burger.webp'); filter: brightness(1.18); }
.sprite-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  color: currentColor;
  display: block;
}
.icon-img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.inline-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 16px;
  border-radius: 50%;
  color: #0b1111;
  background: #f7f1e4;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 1px;
}
.inline-icon::after {
  content: "";
  position: absolute;
  left: 3px;
  bottom: -4px;
  border-width: 5px 4px 0 0;
  border-style: solid;
  border-color: #f7f1e4 transparent transparent transparent;
}
.top-actions { display: flex; align-items: center; gap: 8px; }
.search {
  position: relative;
  width: 300px;
  height: 48px;
  display: block;
  background-color: #080b0d;
  background-image: url('../fonts/search-background.webp');
  background-size: cover;
  clip-path: polygon(6px 0%, calc(100% - 6px) 0%, 100% 6px, 100% 21px, calc(100% - 3px) 50%, 100% 27px, 100% calc(100% - 6px), calc(100% - 6px) 100%, 6px 100%, 0% calc(100% - 6px), 0% 27px, 3px 50%, 0% 21px, 0% 6px);
}
.search::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-style: solid;
  border-width: 17px;
  border-color: transparent;
  border-image: url('../fonts/search-input-default_3x.webp') 139 fill / 17px / 0 stretch;
}
.search input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 14px 20px 14px 44px;
  color: #cfcfcf;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 19.2px;
}
.search:hover { filter: brightness(1.12); }
.search:focus-within { filter: brightness(1.18); }
.search-icon { position: absolute; left: 19px; top: 16px; width: 16px; height: 16px; z-index: 2; opacity: .92; }
.metal-btn {
  position: relative;
  height: 48px;
  width: 114px;
  min-width: 114px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  padding: 0;
  border: 1px solid rgba(188, 205, 211, .62);
  background: transparent;
  box-shadow:
    0 0 11px rgba(199, 223, 231, .16),
    inset 0 0 10px rgba(255,255,255,.055);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 2px 2px rgba(0, 0, 0, .72);
  overflow: visible;
  isolation: isolate;
  transition: filter .18s ease, box-shadow .18s ease;
}
.metal-btn::before {
  content: "";
  position: absolute;
  inset: 3px;
  z-index: -1;
  pointer-events: none;
  clip-path: polygon(9px 0, calc(100% - 9px) 0, 100% 9px, 100% calc(100% - 9px), calc(100% - 9px) 100%, 9px 100%, 0 calc(100% - 9px), 0 9px);
  background:
    radial-gradient(78px 30px at 22% 44%, rgba(208, 238, 248, .2), transparent 72%),
    radial-gradient(86px 33px at 74% 44%, rgba(208, 238, 248, .14), transparent 76%),
    linear-gradient(180deg, rgba(18, 24, 27, .96), rgba(42, 57, 65, .88) 50%, rgba(13, 18, 21, .98));
  box-shadow:
    inset 0 0 0 1px rgba(159, 177, 184, .58),
    inset 0 0 16px rgba(222, 245, 255, .14);
}
.metal-btn span {
  position: relative;
  z-index: 1;
}
.metal-btn.register { width: 130px; min-width: 130px; }
.metal-btn.register {
  border-color: rgba(157, 232, 238, .72);
  background: transparent;
  box-shadow:
    0 0 11px rgba(142, 242, 255, .2),
    inset 0 0 10px rgba(172, 249, 255, .075);
}
.metal-btn.register::before {
  background:
    radial-gradient(98px 34px at 54% 48%, rgba(46, 230, 239, .56), rgba(25, 119, 129, .34) 42%, transparent 78%),
    radial-gradient(90px 36px at 74% 44%, rgba(184, 252, 255, .18), transparent 76%),
    linear-gradient(180deg, rgba(13, 21, 23, .96) 0%, rgba(22, 116, 127, .86) 52%, rgba(11, 42, 48, .98) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(157, 232, 238, .58),
    inset 0 0 18px rgba(172, 249, 255, .26);
}
.metal-btn:hover,
.metal-btn:focus-visible {
  filter: brightness(1.16);
  box-shadow:
    0 0 18px rgba(199, 223, 231, .36),
    inset 0 0 20px rgba(221, 246, 255, .26);
}
.metal-btn.register:hover,
.metal-btn.register:focus-visible {
  filter: brightness(1.18) saturate(1.1);
  box-shadow:
    0 0 20px rgba(142, 242, 255, .55),
    inset 0 0 22px rgba(172, 249, 255, .5);
}

.sidebar {
  position: fixed;
  z-index: 15;
  inset: 74px auto 0 0;
  width: 280px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 12, 13, .78), rgba(15, 22, 23, .72)),
    url('../fonts/sidebar-texture.webp') center top / cover repeat-y;
  border-right: 1px solid #91a5aa;
  box-shadow: 8px 0 28px rgba(0, 0, 0, .6);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  transition: width .22s ease;
}
.sidebar::-webkit-scrollbar { width: 0; height: 0; }
.promo-strip { position: relative; height: 97px; overflow: hidden; cursor: pointer; }
.side-promo-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity .35s ease, transform .35s ease;
  background:
    radial-gradient(70% 98.67% at 30% 98.67%, rgba(40, 104, 112, .7), rgba(24, 70, 76, .7) 30%, rgba(9, 39, 43, .05)),
    linear-gradient(270deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, .8) 62.35%, #000);
}
.side-promo-slide.active { opacity: 1; transform: translateX(0); }
.side-promo-slide img { position: absolute; inset: 0; width: 280px; height: 97px; object-fit: cover; display: block; }
.side-promo-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.8), rgba(0,0,0,.2) 52%, rgba(0,0,0,0));
}
.side-promo-copy {
  position: absolute;
  z-index: 1;
  left: 12px;
  top: 18px;
  width: 132px;
  display: grid;
  gap: 4px;
  font-family: var(--font-body);
  text-transform: uppercase;
  text-shadow: 0 2px 3px #000;
}
.side-promo-copy strong { color: #d5fdff; font-size: 10px; line-height: 12px; font-weight: 700; }
.side-promo-copy span { color: #fff; font-size: 14px; line-height: 16px; font-weight: 700; }
.dots { position: absolute; z-index: 2; bottom: 15px; left: 84px; display: flex; gap: 9px; }
.dots button, .hero-dots button {
  width: 10px;
  height: 10px;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #ffe6a7;
  opacity: .35;
  box-shadow: none;
}
.dots button.active, .hero-dots button.active { opacity: 1; box-shadow: 0 0 7px rgba(255, 226, 164, .8); }
.side-divider { height: 16px; background: url('../fonts/divider-big.webp') center / contain no-repeat; opacity: .65; }
.sidebar nav { padding-bottom: 0; }
.sidebar nav a {
  position: relative;
  height: 44px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 17px;
  color: #f0f0f0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  text-shadow: 1px 1px 1px #000;
  font-size: 14px;
  font-weight: 700;
  transition: color .16s ease, background .16s ease, filter .16s ease;
}
.nav-label { transition: opacity .16s ease, width .16s ease; }
.sidebar nav a.gap-after { margin-bottom: 33px; }
.sidebar nav a.gap-after::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  height: 11px;
  background: url('../fonts/divider-big.webp') center / contain no-repeat;
  opacity: .5;
}
.sidebar nav a.active {
  color: #111;
  background: url('../fonts/sidebar-active-dragon.webp') left center / 100% 100% no-repeat;
  box-shadow: inset 0 0 18px rgba(255, 255, 255, .32);
  text-shadow: none;
}
.sidebar nav a:not(.active):hover,
.sidebar nav a:not(.active):focus-visible {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(172, 249, 255, .08), rgba(255, 255, 255, .03) 55%, transparent),
    url('../fonts/sidebar-texture.webp') center top / cover repeat-y;
  filter: brightness(1.2);
}
.sidebar nav a:not(.active):hover .nav-icon,
.sidebar nav a:not(.active):focus-visible .nav-icon {
  filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(255,255,255,.35));
}
.sidebar nav a.active:hover,
.sidebar nav a.active:focus-visible { filter: brightness(1.08); }
.nav-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  filter: brightness(0) invert(1);
}
.sidebar nav a.active .nav-icon { filter: brightness(0); }
.side-bottom {
  position: sticky;
  bottom: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 62px;
  border-top: 1px solid rgba(255, 255, 255, .2);
  background: linear-gradient(180deg, #0f1617 0%, #394950 50%, #0f1617 100%);
  transition: grid-template-columns .22s ease, height .22s ease;
}
.side-bottom a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: white;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, .12);
  background: transparent;
  font-size: 12px;
}
.side-bottom a span { transition: opacity .16s ease; }
.side-bottom img { width: 16px; height: 16px; object-fit: contain; }
.bottom-chat-icon { width: 16px; height: 16px; }

.content { margin-left: 280px; padding-top: 74px; min-height: 100vh; transition: margin-left .22s ease; }
.sidebar-collapsed .sidebar {
  width: 80px;
}
.sidebar-collapsed .content {
  margin-left: 80px;
}
.sidebar-collapsed .promo-strip,
.sidebar-collapsed .side-divider {
  display: none;
}
.sidebar-collapsed .sidebar nav {
  padding-top: 10px;
}
.sidebar-collapsed .sidebar nav a {
  width: 44px;
  height: 44px;
  margin-left: 17px;
  padding: 0;
  justify-content: center;
  gap: 0;
  border-bottom: 0;
}
.sidebar-collapsed .sidebar nav a.gap-after {
  margin-bottom: 26px;
}
.sidebar-collapsed .sidebar nav a.gap-after::after {
  bottom: -18px;
  left: -17px;
  right: -19px;
}
.sidebar-collapsed .nav-label {
  width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
}
.sidebar-collapsed .nav-icon {
  width: 20px;
  height: 20px;
  flex-basis: 20px;
}
.sidebar-collapsed .side-bottom {
  grid-template-columns: 1fr;
  height: 88px;
}
.sidebar-collapsed .side-bottom a {
  min-height: 44px;
  border-right: 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.sidebar-collapsed .side-bottom a span {
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
}
.mobile-bottom-menu { display: none; }
.hero { position: relative; height: clamp(360px, 27.8vw, 420px); overflow: hidden; background: #141414; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.hero picture, .hero picture img, .hero-video { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero picture img, .hero-video { object-fit: cover; object-position: center top; }
.hero-video { z-index: 1; }
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(270deg, rgba(7, 46, 54, 0) 46%, rgba(22, 18, 14, .55) 67%, rgba(19, 19, 19, .8) 100%),
    linear-gradient(0deg, #141414 0, rgba(0, 0, 0, 0) 29%);
}
.hero-copy { position: absolute; z-index: 3; left: 64px; top: 34px; width: 432px; text-align: center; }
.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ice);
  font-family: "Norse", "superior-title", serif;
  font-size: 19px;
  text-shadow: 0 0 8px rgba(172, 249, 255, .65);
}
.eyebrow span { width: 66px; height: 1px; background: linear-gradient(90deg, transparent, rgba(172, 249, 255, .8), transparent); }
.mobile-hero-title {
  display: block;
  margin: 0 0 14px;
  color: #f5f5f5;
  font-family: var(--font-body);
  font-size: 27px;
  line-height: 1.15;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 2px 5px #000, 0 0 12px rgba(255, 255, 255, .22);
}
.hero-offer {
  margin: 20px 0 0;
  font-size: 38px;
  line-height: 1.05;
  font-weight: 500;
  text-shadow: 0 2px 5px #000;
}
.join {
  position: relative;
  width: 340px;
  height: 207px;
  margin-top: -18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: white;
  font-family: "Norse", serif;
  font-size: 40px;
  line-height: 32px;
  font-weight: 700;
  text-shadow: 0 2px 3px #04343a;
  overflow: visible;
}
.join img { position: absolute; left: 0; top: 0; width: 340px; height: 207px; object-fit: contain; }
.join span {
  position: relative;
  z-index: 1;
  top: -3px;
  display: block;
  pointer-events: none;
}
.slide-arrow {
  position: absolute;
  z-index: 4;
  top: 46%;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #a4a4a4;
  border-radius: 50%;
}
.slide-arrow .sprite-icon { width: 22px; height: 22px; filter: drop-shadow(0 1px 2px #000); }
.slide-arrow.left { left: 10px; }
.slide-arrow.right { right: 10px; }
.hero-dots { position: absolute; z-index: 4; left: 50%; bottom: 34px; display: flex; gap: 9px; }
.banner-decor { position: absolute; z-index: 4; left: 0; bottom: 0; width: 100%; height: 9px; object-fit: cover; opacity: .8; }

.category-shell {
  position: relative;
  height: 70px;
  padding: 8px 44px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background:
    linear-gradient(90deg, rgba(0,0,0,.48), transparent 8%, transparent 92%, rgba(0,0,0,.7)),
    linear-gradient(180deg, rgba(3, 3, 3, .98), rgba(11, 14, 14, .96));
}
.category-shell::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 12px;
  background: url('../fonts/divider-big.webp') center / auto 12px repeat-x;
  opacity: .48;
  pointer-events: none;
}
.category-row {
  height: 54px;
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  scroll-behavior: smooth;
}
.category {
  position: relative;
  flex: 0 0 auto;
  height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  color: #f5f5f5;
  border: 0;
  background: transparent;
  font-family: "Norse", "superior-title", serif;
  font-size: 20px;
  line-height: 1;
  text-shadow: 0 0 5px #000;
  transition: filter .16s ease, color .16s ease;
}
.category::before,
.category::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.category::before {
  z-index: 0;
  inset: 4px 11px;
  border-radius: 999px;
  background:
    radial-gradient(74px 40px at 31% 44%, rgba(214, 236, 241, .2), transparent 73%),
    radial-gradient(96px 42px at 76% 47%, rgba(132, 163, 171, .17), transparent 77%),
    linear-gradient(180deg, rgba(67, 85, 91, .7) 0%, rgba(24, 35, 38, .96) 18%, rgba(12, 17, 18, .98) 56%, rgba(36, 52, 56, .86) 100%),
    url('../fonts/sidebar-texture.webp') center / cover;
  box-shadow:
    inset 0 0 0 2px rgba(145, 174, 181, .72),
    inset 0 0 0 5px rgba(13, 24, 27, .74),
    inset 0 0 24px rgba(181, 223, 232, .18),
    0 0 0 1px rgba(42, 65, 70, .75),
    0 0 18px rgba(0,0,0,.72);
}
.category::after {
  z-index: 1;
  background:
    radial-gradient(circle at 9px 50%, transparent 0 4px, rgba(126, 158, 166, .65) 4px 5px, transparent 5px),
    radial-gradient(circle at calc(100% - 9px) 50%, transparent 0 4px, rgba(126, 158, 166, .65) 4px 5px, transparent 5px),
    linear-gradient(45deg, transparent 0 calc(50% - 5px), rgba(126, 158, 166, .55) calc(50% - 5px) calc(50% - 3px), transparent calc(50% - 3px) calc(50% + 3px), rgba(126, 158, 166, .55) calc(50% + 3px) calc(50% + 5px), transparent calc(50% + 5px)) left 50% / 18px 18px no-repeat,
    linear-gradient(45deg, transparent 0 calc(50% - 5px), rgba(126, 158, 166, .55) calc(50% - 5px) calc(50% - 3px), transparent calc(50% - 3px) calc(50% + 3px), rgba(126, 158, 166, .55) calc(50% + 3px) calc(50% + 5px), transparent calc(50% + 5px)) right 50% / 18px 18px no-repeat;
}
.category img,
.category span {
  position: relative;
  z-index: 2;
}
.category:hover,
.category:focus-visible {
  color: #fff;
  filter: brightness(1.18);
}
.category img { width: 30px; height: 30px; object-fit: contain; }
.category-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 32px;
  height: 32px;
  transform: translateY(-50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #d8e2e4;
  opacity: .94;
}
.category-prev {
  left: 9px;
  box-shadow: 10px 0 22px rgba(0,0,0,.85);
}
.category-next {
  right: 9px;
  box-shadow: -10px 0 22px rgba(0,0,0,.85);
}
.category-nav .sprite-icon { width: 18px; height: 18px; }
.games-block { padding: 0 20px 28px; }
.section-title { display: flex; align-items: center; gap: 10px; height: 58px; color: #fff; }
.section-title h2 { margin: 0 auto 0 0; font-size: 22px; line-height: 1; font-weight: 700; }
.section-title a { color: #bbb; font-size: 14px; text-decoration: none; }
.section-title button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.section-title button .sprite-icon { width: 17px; height: 17px; }
.section-rule {
  flex: 1 1 auto;
  height: 13px;
  margin: 0 12px;
  background: url('../fonts/divider-big.webp') center / auto 13px repeat-x;
  opacity: .48;
}
.rail-controls {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
}
.games-block .section-title {
  gap: 0;
}
.games-block .section-title h2 {
  margin: 0;
  flex: 0 0 auto;
}
.games-block .section-title a {
  flex: 0 0 auto;
  margin-left: 0;
  white-space: nowrap;
}
.games-block .rail-controls {
  margin-left: 8px;
}
.game-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  min-height: 268px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.game-track::-webkit-scrollbar { width: 0; height: 0; }
.game-card {
  position: relative;
  flex: 0 0 163px;
  height: 268px;
}
.games-block.tall .game-track { gap: 60px; min-height: 352px; }
.games-block.tall .game-card { flex-basis: 225px; height: 351px; }
.rank { position: absolute; left: -60px; top: -10px; width: 98px; height: 141px; object-fit: contain; opacity: .82; }
.card-frame {
  position: relative;
  width: 159px;
  height: 238px;
  margin-left: 2px;
  overflow: hidden;
  border: 2px solid #7d8d92;
  border-radius: 5px;
  background: #090909;
  box-shadow: inset 0 0 20px rgba(180, 235, 245, .12), 0 0 12px #000;
}
.games-block.tall .card-frame { width: 220px; height: 331px; }
.card-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.15), transparent 16%, transparent 82%, rgba(0,0,0,.5));
}
.cover { width: 100%; height: 100%; object-fit: cover; }
.hover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(0, 0, 0, .68);
  opacity: 0;
}
.game-card:hover .hover { opacity: 1; }
.hover strong, .hover small { max-width: 132px; text-align: center; }
.hover strong { font-size: 15px; }
.hover .play-link {
  position: relative;
  width: 122px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-style: solid;
  border-width: 8px;
  border-color: transparent;
  border-image: url('../fonts/search-input-default_3x.webp') 139 fill / 8px / 0 stretch;
  color: white;
  background:
    radial-gradient(102px 30px at 54% 48%, rgba(46, 230, 239, .68), rgba(25, 119, 129, .5) 37%, transparent 76%),
    linear-gradient(180deg, rgba(13, 21, 23, .94) 0%, rgba(22, 116, 127, .9) 52%, rgba(11, 42, 48, .98) 100%);
  box-shadow:
    rgba(142, 242, 255, .34) -1px -1px 6px 0,
    rgba(142, 242, 255, .34) 1px 1px 6px 0,
    inset 0 0 14px rgba(172, 249, 255, .32);
  clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 13px;
  font-weight: 700;
  transition: filter .16s ease, box-shadow .16s ease;
}
.hover .play-link:hover,
.hover .play-link:focus-visible {
  filter: brightness(1.18) saturate(1.08);
  box-shadow: 0 0 10px rgba(142, 242, 255, .65), inset 0 0 16px rgba(172, 249, 255, .44);
}
.hover a { color: var(--cream); font-size: 13px; }
.game-card p {
  width: 159px;
  margin: 8px 0 0 2px;
  color: #808080;
  font-size: 12px;
  line-height: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.games-block.tall .game-card p { color: transparent; }
.badge {
  position: absolute;
  z-index: 3;
  left: 7px;
  top: 7px;
  padding: 3px 7px;
  border: 1px solid rgba(172, 249, 255, .65);
  color: white;
  background: linear-gradient(180deg, #499aa5, #113337);
  box-shadow: 0 0 8px rgba(172, 249, 255, .35);
  font-size: 10px;
  font-weight: 700;
}
.more-frame {
  display: grid;
  place-items: center;
  border: 0;
  background: url('../fonts/091-more.webp') center / 100% 100% no-repeat;
}
.more-frame span {
  color: var(--ice);
  font-family: "Norse", "superior-title", serif;
  font-size: 20px;
  text-shadow: 0 0 8px rgba(172, 249, 255, .65), 0 2px 2px #000;
}
.events-section { padding: 0 20px 28px; border-top: 1px solid rgba(255, 255, 255, .05); }
.event-track { display: flex; gap: 12px; overflow: hidden; }
.event-card {
  flex: 0 0 290px;
  min-height: 150px;
  padding: 13px 14px 14px;
  border: 1px solid rgba(125, 141, 146, .85);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(37, 52, 55, .68), rgba(7, 9, 9, .95)),
    url('../fonts/asset-2.webp') center / cover;
  box-shadow: inset 0 0 18px rgba(172, 249, 255, .08), 0 6px 18px rgba(0, 0, 0, .35);
}
.event-league { display: flex; align-items: center; justify-content: space-between; color: var(--ice); font-size: 11px; font-weight: 700; }
.event-league b { color: #aeb8ba; font-weight: 600; }
.event-teams { margin: 17px 0 15px; display: grid; gap: 3px; }
.event-teams strong { color: #f3f3f3; font-size: 15px; }
.event-teams small { color: #848a8c; font-size: 11px; }
.odds { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.odds button {
  height: 40px;
  border: 1px solid rgba(172, 249, 255, .35);
  color: #f8f8f8;
  background: linear-gradient(180deg, #202b2e, #0c0f10);
  font-size: 14px;
  font-weight: 700;
  transition: filter .16s ease, border-color .16s ease, color .16s ease;
}
.odds button:hover,
.odds button:focus-visible {
  color: #fff;
  border-color: rgba(172, 249, 255, .55);
  filter: brightness(1.18);
}
.odds span { display: block; color: #8d999c; font-size: 10px; font-weight: 700; }
.providers-section, .promotions-section { padding: 0 20px 28px; }
.providers-section .section-title {
  height: 46px;
  gap: 0;
}
.providers-section .section-title h2 {
  margin: 0;
}
.providers-section .section-title a {
  margin-left: 0;
  white-space: nowrap;
}
.providers-section .rail-controls {
  margin-left: 8px;
}
.provider-track, .promo-cards { display: flex; gap: 8px; overflow: hidden; scroll-behavior: smooth; }
.provider-card {
  position: relative;
  flex: 0 0 172px;
  height: 63px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #c8d5d7;
  background: url('../fonts/092-providerbg.webp') center / 100% 100% no-repeat;
  filter: drop-shadow(0 5px 10px rgba(0,0,0,.35));
}
.provider-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 46%, rgba(0,0,0,.34));
}
.provider-card img { width: 96px; height: 30px; object-fit: contain; position: relative; z-index: 1; }
.provider-card span { position: relative; z-index: 1; font-family: var(--font-body); font-size: 12px; line-height: 14px; color: #a4a4a4; }

.betting-section {
  padding: 0 20px 30px;
}
.betting-title h2 {
  color: #f5f5f5;
}
.betting-track {
  display: flex;
  gap: 12px;
  overflow: hidden;
  scroll-behavior: smooth;
}
.betting-card {
  position: relative;
  flex: 0 0 164px;
  height: 226px;
  overflow: hidden;
  color: #f7f1e4;
  border: 2px solid rgba(126, 141, 146, .9);
  border-radius: 4px;
  background: #0a0b0b;
  box-shadow:
    inset 0 0 24px rgba(172, 249, 255, .08),
    inset 0 -24px 42px rgba(219, 168, 82, .14),
    0 8px 20px rgba(0,0,0,.48);
  text-align: center;
  transition: filter .16s ease, border-color .16s ease, transform .16s ease;
}
.betting-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), transparent 14%, transparent 68%, rgba(0,0,0,.42)),
    linear-gradient(180deg, transparent 62%, rgba(10, 8, 5, .18) 76%, rgba(51, 40, 27, .72) 100%);
  pointer-events: none;
}
.betting-card::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(230, 210, 156, .2);
  pointer-events: none;
}
.betting-card:hover,
.betting-card:focus-visible {
  filter: brightness(1.14);
  border-color: rgba(172, 249, 255, .72);
  transform: translateY(-1px);
}
.betting-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.betting-card > span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 15px;
  z-index: 2;
  font-family: "Norse", "superior-title", serif;
  font-size: 17px;
  line-height: 1;
  text-shadow: 0 2px 3px #000;
}
.promo-cards { gap: 18px; }
.promo-card {
  flex: 0 0 390px;
  overflow: hidden;
  border: 1px solid #5d6d72;
  border-radius: 5px;
  background: #101313;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .4);
}
.promo-card img { width: 100%; height: 202px; object-fit: cover; display: block; }
.promo-card div { min-height: 168px; padding: 15px 17px 18px; }
.promo-card span { color: var(--ice); font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.promo-card h3 { margin: 8px 0 7px; font-family: "Norse", "superior-title", serif; font-size: 25px; line-height: 1.05; }
.promo-card p { margin: 0 0 14px; color: #c8c8c8; font-size: 14px; }
.promo-card .cta-button, .custom-copy .cta-button {
  position: relative;
  height: 38px;
  min-width: 130px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-style: solid;
  border-width: 8px;
  border-color: transparent;
  border-image: url('../fonts/search-input-default_3x.webp') 139 fill / 8px / 0 stretch;
  color: white;
  background:
    radial-gradient(112px 32px at 54% 48%, rgba(46, 230, 239, .68), rgba(25, 119, 129, .52) 37%, transparent 76%),
    linear-gradient(180deg, rgba(13, 21, 23, .94) 0%, rgba(22, 116, 127, .9) 52%, rgba(11, 42, 48, .98) 100%);
  box-shadow:
    rgba(142, 242, 255, .38) -1px -1px 7px 0,
    rgba(142, 242, 255, .38) 1px 1px 7px 0,
    inset 0 0 16px rgba(172, 249, 255, .34);
  clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 14px;
  transition: filter .16s ease, box-shadow .16s ease;
}
.promo-card .cta-button:hover,
.promo-card .cta-button:focus-visible,
.custom-copy .cta-button:hover,
.custom-copy .cta-button:focus-visible {
  filter: brightness(1.18) saturate(1.08);
  box-shadow:
    rgba(142, 242, 255, .7) -1px -1px 9px 0,
    rgba(142, 242, 255, .7) 1px 1px 9px 0,
    inset 0 0 20px rgba(172, 249, 255, .48);
}
.promo-card a { margin-left: 16px; color: #cfcfcf; font-size: 13px; text-decoration: none; }
.custom-banner { padding: 0 20px 28px; }
.custom-frame {
  position: relative;
  height: 268px;
  overflow: hidden;
  background: url('../fonts/093-customborder.webp') center / 100% 100% no-repeat;
}
.custom-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 50%, rgba(172, 249, 255, .16), transparent 30%),
    linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .2) 42%, rgba(0, 0, 0, .68));
  z-index: 1;
}
.custom-bg { position: absolute; inset: 10px; width: calc(100% - 20px); height: calc(100% - 20px); object-fit: cover; }
.custom-copy {
  position: absolute;
  z-index: 2;
  left: 58px;
  top: 54px;
  max-width: 420px;
  text-align: center;
}
.custom-copy h2 {
  margin: 0;
  color: var(--ice);
  font-family: "Norse", "superior-title", serif;
  font-size: 42px;
  line-height: .95;
  text-shadow: 0 0 12px rgba(172, 249, 255, .55), 0 3px 4px #000;
}
.custom-copy p { margin: 12px 0 18px; color: #f2f2f2; font-size: 18px; text-shadow: 0 2px 3px #000; }
.custom-banner.fomo .custom-frame { height: 240px; background-image: url('../fonts/094-fomoborder.webp'); }
.rise-banner {
  position: relative;
  height: 210px;
  margin: 0 20px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px 0 76px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 8, 10, .68), rgba(0, 0, 0, .06) 46%, rgba(0, 0, 0, .32)),
    url('../fonts/rise-warrior.jpg') center / cover no-repeat;
  border: 1px solid rgba(125, 141, 146, .9);
  box-shadow:
    0 -8px 18px rgba(255, 255, 255, .08),
    0 8px 18px rgba(255, 255, 255, .08),
    inset 0 0 20px rgba(172, 249, 255, .08);
}
.rise-banner::before,
.rise-banner::after {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  height: 9px;
  background: url('../fonts/asset-6.webp') center / cover no-repeat;
  opacity: .58;
}
.rise-banner::before { top: -3px; }
.rise-banner::after { bottom: -3px; transform: scaleY(-1); }
.rise-banner h2 {
  margin: 0 0 4px;
  font-family: var(--font-body);
  font-size: 24px;
  line-height: 29px;
  font-weight: 600;
  text-shadow: 0 2px 3px #000;
}
.rise-banner p {
  margin: 0;
  font-size: 24px;
  line-height: 29px;
  font-weight: 600;
  text-shadow: 0 2px 3px #000;
}
.rise-banner .cta-button {
  position: relative;
  min-width: 150px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-style: solid;
  border-width: 8px;
  border-color: transparent;
  border-image: url('../fonts/search-input-default_3x.webp') 139 fill / 8px / 0 stretch;
  color: white;
  background:
    radial-gradient(128px 36px at 54% 48%, rgba(46, 230, 239, .72), rgba(25, 119, 129, .54) 38%, transparent 77%),
    linear-gradient(180deg, rgba(13, 21, 23, .94) 0%, rgba(22, 116, 127, .9) 52%, rgba(11, 42, 48, .98) 100%);
  box-shadow:
    rgba(142, 242, 255, .42) -1px -1px 8px 0,
    rgba(142, 242, 255, .42) 1px 1px 8px 0,
    inset 0 0 18px rgba(172, 249, 255, .38);
  clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
  transition: filter .16s ease, box-shadow .16s ease;
}
.rise-banner .cta-button:hover,
.rise-banner .cta-button:focus-visible {
  filter: brightness(1.18) saturate(1.08);
  box-shadow: 0 0 14px rgba(142, 242, 255, .7), inset 0 0 22px rgba(172, 249, 255, .48);
}
.about-block {
  max-width: 760px;
  margin: 0 auto 26px;
  padding: 0 16px;
  color: #f1f1f1;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.24;
  font-weight: 500;
}
.about-text {
  position: relative;
  max-height: 108px;
  overflow: hidden;
  transition: max-height .25s ease;
}
.about-block.expanded .about-text { max-height: 620px; }
.about-text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 54px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0), #121212 88%);
}
.about-block.expanded .about-text::after { opacity: 0; }
.about-block h2,
.about-block h3 {
  margin: 0 0 15px;
  color: #f5f5f5;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}
.about-block h3 { margin-top: 18px; }
.about-block p { margin: 0 0 14px; }
.about-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 13px;
  padding: 0;
  border: 0;
  color: #f1f1f1;
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 18px;
  font-weight: 500;
  outline: 0;
}
.about-toggle .hide-label { display: none; }
.about-toggle[aria-expanded="true"] .show-label { display: none; }
.about-toggle[aria-expanded="true"] .hide-label { display: inline; }
.toggle-chevron {
  width: 11px;
  height: 11px;
  margin-left: 3px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  filter: drop-shadow(0 0 5px rgba(255,255,255,.28));
}
.toggle-chevron.up {
  transform: translateY(3px) rotate(225deg);
}
.about-toggle:hover,
.about-toggle:focus-visible { color: #fff; text-shadow: 0 0 7px rgba(255,255,255,.35); }
.text-updated-field {
  width: 100%;
  min-height: 34px;
  margin-top: 16px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9fa7a9;
  border: 1px solid rgba(145, 165, 170, .42);
  background:
    linear-gradient(180deg, rgba(18, 24, 25, .82), rgba(7, 9, 10, .94)),
    url('../fonts/sidebar-texture.webp') center / cover;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.035),
    inset 0 0 14px rgba(172,249,255,.045);
  font-size: 13px;
  line-height: 16px;
}
.text-updated-field span {
  color: #777f81;
}
.text-updated-field time {
  color: #d6d6d6;
  font-weight: 600;
}
.payment-methods {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
  padding: 15px 34px 14px;
  margin: 0;
  background:
    radial-gradient(55% 115% at 50% 0%, rgba(74, 101, 107, .16), transparent 58%),
    linear-gradient(180deg, rgba(12, 17, 18, .96), rgba(7, 9, 10, .98));
  border-top: 1px solid rgba(145, 165, 170, .22);
  border-bottom: 1px solid rgba(145, 165, 170, .18);
  box-shadow:
    inset 0 1px 18px rgba(255,255,255,.035),
    inset 0 -1px 20px rgba(0,0,0,.75);
}
.payment-method {
  min-width: 0;
  text-align: center;
}
.payment-method-card {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1px;
  border: 1px solid rgba(125, 141, 146, .54);
  border-radius: 4px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(32, 43, 45, .82), rgba(9, 11, 12, .96)),
    url('../fonts/sidebar-texture.webp') center / cover;
  box-shadow:
    inset 0 0 18px rgba(172,249,255,.055),
    0 4px 12px rgba(0,0,0,.35);
  overflow: hidden;
}
.payment-method-card img {
  display: block;
  width: 86%;
  max-width: 154px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,.65));
}
.payment-method p {
  margin: 7px 0 0;
  color: #8f9799;
  font-size: 13px;
  line-height: 16px;
  font-weight: 600;
}
.bitcoin .payment-method-card img { width: 84%; height: 50px; }
.interac-online .payment-method-card img { width: 80%; height: 50px; }
.mastercard-large .payment-method-card img { width: 78%; height: 52px; }
.neteller .payment-method-card img { width: 82%; height: 46px; }
.skrill .payment-method-card img { width: 72%; height: 50px; }
.visa-large .payment-method-card img { width: 70%; height: 50px; }
.bottom-cats { margin-top: 6px; border-top-color: rgba(255, 255, 255, .16); }
.footer {
  min-height: 0;
  padding: 34px 20px 22px;
  color: #bfc5c7;
  background:
    radial-gradient(circle at 51% 47%, rgba(87, 134, 139, .14), transparent 34%),
    radial-gradient(circle at 58% 88%, rgba(42, 90, 96, .12), transparent 26%),
    linear-gradient(180deg, #080909 0%, #0b1111 56%, #0e1a1b 100%);
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(145, 165, 170, .32);
  box-shadow: inset 0 1px 20px rgba(255,255,255,.04);
}
.footer-actions {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-bottom: 42px;
}
.footer-actions a {
  position: relative;
  width: 178px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0;
  color: #f7f1e4;
  border: 1px solid rgba(188, 205, 211, .62);
  background: transparent;
  box-shadow:
    0 0 11px rgba(199, 223, 231, .16),
    inset 0 0 10px rgba(255,255,255,.055);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 2px 2px rgba(0,0,0,.72);
  overflow: visible;
  isolation: isolate;
  transition: filter .16s ease, box-shadow .16s ease;
}
.footer-actions a::before {
  content: "";
  position: absolute;
  pointer-events: none;
}
.footer-actions a::before {
  inset: 4px;
  z-index: -1;
  clip-path: polygon(9px 0, calc(100% - 9px) 0, 100% 9px, 100% calc(100% - 9px), calc(100% - 9px) 100%, 9px 100%, 0 calc(100% - 9px), 0 9px);
  background:
    radial-gradient(78px 30px at 22% 44%, rgba(208, 238, 248, .2), transparent 72%),
    radial-gradient(86px 33px at 74% 44%, rgba(208, 238, 248, .14), transparent 76%),
    linear-gradient(180deg, rgba(18, 24, 27, .96), rgba(42, 57, 65, .88) 50%, rgba(13, 18, 21, .98));
  box-shadow:
    inset 0 0 0 1px rgba(159, 177, 184, .58),
    inset 0 0 16px rgba(222, 245, 255, .14);
}
.footer-actions img,
.footer-actions .sprite-icon,
.footer-actions span {
  position: relative;
  z-index: 1;
}
.footer-actions img,
.footer-actions .sprite-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  object-fit: contain;
}
.footer-actions .sprite-icon {
  color: #f7f1e4;
}
.footer-actions a:hover,
.footer-actions a:focus-visible {
  filter: brightness(1.16);
  box-shadow:
    0 0 18px rgba(199, 223, 231, .36),
    inset 0 0 18px rgba(255,255,255,.12);
}
.footer-grid {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr .98fr .98fr .9fr 1.45fr .95fr;
  gap: clamp(18px, 2.6vw, 52px);
  align-items: start;
}
.footer-group {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}
.footer-col h3 {
  margin: 0 0 6px;
  color: #eadfbd;
  font-size: 16px;
  line-height: 19px;
  font-weight: 500;
}
.footer-col a {
  color: #898989;
  text-decoration: none;
  font-size: 13px;
  line-height: 16px;
  font-weight: 500;
  transition: color .16s ease, text-shadow .16s ease;
}
.footer-col a:hover,
.footer-col a:focus-visible {
  color: #f1f1f1;
  text-shadow: 0 0 8px rgba(172, 249, 255, .35);
}
.aware-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: #d2d2d2;
  font-size: 18px;
  font-weight: 700;
  margin: 24px 0 16px;
}
.age-circle {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #d2d2d2;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
}
.copyright {
  margin: 0 auto;
  color: #d2d2d2;
  text-align: center;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
}
.language-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 72px;
  background: rgba(5, 6, 8, .72);
  backdrop-filter: blur(2px);
}
.language-backdrop[hidden] {
  display: none !important;
}
.language-modal {
  position: relative;
  width: min(760px, calc(100vw - 42px));
  max-height: calc(100vh - 110px);
  padding: 10px 44px 42px;
  overflow-y: auto;
  color: #f3f3f3;
  background:
    linear-gradient(180deg, rgba(26, 29, 30, .92), rgba(12, 13, 14, .96)),
    url('../fonts/sidebar-texture.webp') center top / cover;
  border: 8px solid rgba(180, 180, 184, .72);
  box-shadow:
    0 24px 60px rgba(0,0,0,.65),
    inset 0 0 0 1px rgba(255,255,255,.14),
    inset 0 0 44px rgba(0,0,0,.58);
}
.language-header {
  position: sticky;
  top: -10px;
  z-index: 1;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 -30px 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(0,0,0,.18)),
    url('../fonts/sidebar-texture.webp') center / cover;
  border: 1px solid rgba(130, 142, 146, .45);
  box-shadow: inset 0 0 22px rgba(0,0,0,.42);
}
.language-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -13px;
  height: 18px;
  background: url('../fonts/divider-big.webp') center / contain no-repeat;
  opacity: .85;
}
.language-header h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}
.language-close {
  position: absolute;
  z-index: 2;
  top: 26px;
  right: 24px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: #cfcfcf;
  background: rgba(18, 20, 21, .74);
  font-size: 35px;
  line-height: 30px;
  font-weight: 300;
  transition: color .16s ease, filter .16s ease;
}
.language-close:hover,
.language-close:focus-visible {
  color: #fff;
  filter: brightness(1.25);
}
.language-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}
.language-option {
  height: 58px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 18px;
  color: #f1f1f1;
  border: 1px solid rgba(114, 124, 128, .5);
  background:
    linear-gradient(180deg, rgba(20, 23, 24, .82), rgba(9, 10, 11, .92)),
    url('../fonts/sidebar-texture.webp') center / cover;
  box-shadow:
    inset 0 0 0 2px rgba(0,0,0,.35),
    inset 0 0 15px rgba(255,255,255,.03);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 19px;
  text-align: left;
  transition: border-color .16s ease, filter .16s ease, box-shadow .16s ease;
}
.language-option.active {
  border-color: rgba(216, 178, 92, .92);
  box-shadow:
    inset 0 0 0 2px rgba(0,0,0,.36),
    inset 0 0 18px rgba(216, 178, 92, .08),
    0 0 0 1px rgba(216, 178, 92, .42);
}
.language-option:hover,
.language-option:focus-visible {
  border-color: rgba(172, 249, 255, .58);
  filter: brightness(1.18);
}
.language-flag {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 34px;
  overflow: hidden;
  font-size: 29px;
  line-height: 1;
}

@media (max-width: 900px) {
  .topbar { height: 55px; }
  .square-btn { display: none; }
  .brand { gap: 0; }
  .brand > img { width: 88px; height: 38px; }
  .search { display: none; }
  .metal-btn {
    width: 112px;
    min-width: 112px;
    height: 42px;
    font-size: 13px;
  }
  .metal-btn.register {
    width: 128px;
    min-width: 128px;
  }
  .sidebar { display: none; }
  .content {
    margin-left: 0;
    padding-top: 55px;
    padding-bottom: 72px;
  }
  .hero { height: 448px; }
  .hero-video { display: none; }
  .hero-copy { left: 8px; right: 8px; top: 175px; width: auto; }
  .mobile-hero-title {
    position: absolute;
    left: 50%;
    top: -122px;
    display: block;
    width: min(360px, calc(100vw - 48px));
    margin: 0;
    transform: translateX(-50%);
    color: #f5f5f5;
    font-family: var(--font-body);
    font-size: 28px;
    line-height: 1.15;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 5px #000, 0 0 12px rgba(255, 255, 255, .22);
    pointer-events: none;
  }
  .hero-offer { font-size: 32px; }
  .mobile-bottom-menu {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    height: 58px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-top: 1px solid rgba(160, 180, 185, .5);
    background:
      linear-gradient(180deg, rgba(11, 15, 16, .94) 0%, rgba(50, 63, 68, .9) 51%, rgba(12, 17, 18, .98) 100%),
      url('../fonts/sidebar-texture.webp') center / cover;
    box-shadow: 0 -3px 18px rgba(0,0,0,.65), inset 0 1px rgba(255,255,255,.08);
  }
  .mobile-bottom-menu a {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #f2f2f2;
    border-right: 1px solid rgba(255,255,255,.12);
    font-size: 10px;
    line-height: 1;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 2px 2px rgba(0,0,0,.8);
    transition: filter .16s ease, background .16s ease;
  }
  .mobile-bottom-menu a:last-child { border-right: 0; }
  .mobile-bottom-menu a:hover,
  .mobile-bottom-menu a:focus-visible {
    filter: brightness(1.18);
    background: rgba(172, 249, 255, .08);
  }
  .mobile-bottom-icon {
    width: 20px;
    height: 20px;
    color: #fff;
    filter: brightness(0) invert(1);
  }
  .category-row { padding-left: 8px; }
  .games-block, .providers-section, .promotions-section, .custom-banner, .events-section, .betting-section { padding-inline: 12px 20px; }
  .games-block {
    padding-top: 0;
    padding-bottom: 22px;
  }
  .section-title {
    height: 50px;
    gap: 0;
  }
  .section-title h2 {
    font-size: 20px;
    white-space: nowrap;
  }
  .section-rule {
    min-width: 42px;
    margin: 0 8px;
  }
  .section-title a {
    font-size: 12px;
    white-space: nowrap;
  }
  .rail-controls {
    gap: 5px;
    margin-left: 6px;
  }
  .section-title button {
    width: 28px;
    height: 28px;
  }
  .game-track {
    gap: 16px;
    min-height: 190px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 10px 10px 0;
    scroll-padding-right: 16px;
  }
  .game-card,
  .games-block.tall .game-card {
    flex: 0 0 112px;
    height: 180px;
  }
  .games-block.tall .game-track {
    gap: 16px;
    min-height: 190px;
  }
  .rank { display: none; }
  .card-frame,
  .games-block.tall .card-frame {
    width: 112px;
    height: 168px;
    margin-left: 0;
  }
  .hover {
    gap: 5px;
    padding: 8px;
  }
  .hover strong,
  .hover small {
    max-width: 92px;
  }
  .hover strong {
    font-size: 12px;
    line-height: 14px;
  }
  .hover small {
    font-size: 10px;
    line-height: 12px;
  }
  .hover .play-link {
    width: 86px;
    height: 30px;
    border-width: 7px;
    font-size: 11px;
    line-height: 11px;
  }
  .hover a {
    font-size: 11px;
    line-height: 11px;
  }
  .game-card p {
    width: 112px;
    margin-top: 7px;
    color: #808080;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .games-block.tall .game-card p {
    color: #808080;
  }
  .promo-card { flex-basis: 300px; }
  .promo-card img { height: 156px; }
  .providers-section {
    padding-bottom: 22px;
  }
  .providers-section .section-title {
    height: 50px;
  }
  .provider-track {
    overflow-x: auto;
    padding: 0 10px 10px 0;
    scroll-padding-right: 16px;
  }
  .provider-card {
    flex-basis: 172px;
    height: 63px;
  }
  .betting-section {
    padding-bottom: 22px;
  }
  .betting-track {
    gap: 16px;
    overflow-x: auto;
    padding: 0 10px 10px 0;
    scroll-padding-right: 16px;
  }
  .betting-card {
    flex-basis: 118px;
    height: 162px;
  }
  .betting-card > span {
    left: 7px;
    right: 7px;
    bottom: 9px;
    font-size: 13px;
  }
  .event-card { flex-basis: 260px; }
  .custom-frame { height: 210px; }
  .custom-bg { inset: 7px; width: calc(100% - 14px); height: calc(100% - 14px); }
  .custom-copy {
    left: 18px;
    right: 18px;
    top: 38px;
    max-width: 300px;
    text-align: left;
  }
  .custom-copy h2 { font-size: 28px; }
  .custom-copy p { font-size: 14px; line-height: 1.25; }
  .custom-copy .cta-button {
    min-width: 142px;
    max-width: 190px;
    height: 42px;
    padding-inline: 14px;
    font-size: 16px;
    line-height: 16px;
  }
  .rise-banner {
    height: 210px;
    margin: 0 20px 52px;
    display: block;
    padding: 0;
  }
  .rise-banner > div {
    position: absolute;
    z-index: 2;
    left: 18px;
    right: 18px;
    top: 38px;
    max-width: 300px;
  }
  .rise-banner h2,
  .rise-banner p {
    font-size: 26px;
    line-height: 1.15;
  }
  .rise-banner .cta-button {
    position: absolute;
    z-index: 2;
    left: 18px;
    top: 116px;
    min-width: 142px;
    max-width: 190px;
    height: 42px;
    padding-inline: 14px;
    font-size: 16px;
    line-height: 16px;
  }
  .payment-methods {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 14px;
    padding: 18px 22px 20px;
  }
  .payment-method-card {
    height: 64px;
  }
  .payment-method-card img {
    max-width: 96px;
    height: 42px;
  }
  .payment-method p {
    margin-top: 8px;
    font-size: 12px;
    line-height: 14px;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .footer {
    padding: 22px 18px 20px;
  }
  .footer-actions { flex-wrap: wrap; }
  .footer-grid {
    display: block;
    max-width: 640px;
    margin: 0 auto 22px;
  }
  .footer-group {
    display: contents;
  }
  .footer-col {
    display: block;
    border-bottom: 1px solid rgba(145, 165, 170, .16);
  }
  .footer-col h3 {
    position: relative;
    margin: 0;
    padding: 14px 34px 14px 0;
    color: #eadfbd;
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
  }
  .footer-col h3::after {
    content: "";
    position: absolute;
    right: 4px;
    top: 50%;
    width: 12px;
    height: 12px;
    border-right: 4px solid #f4f1e9;
    border-bottom: 4px solid #f4f1e9;
    transform: translateY(-68%) rotate(45deg);
    filter: drop-shadow(0 1px 2px rgba(0,0,0,.7));
  }
  .footer-col a {
    display: none;
  }
  .about-block {
    width: auto;
    max-width: none;
    margin: 0 8px 22px 16px;
    padding: 0;
    font-size: 14px;
    line-height: 1.32;
  }
  .about-block h2,
  .about-block h3 {
    font-size: 18px;
    line-height: 1.22;
  }
  .about-text {
    max-height: 128px;
  }
  .about-block.expanded .about-text {
    max-height: 820px;
  }
  .text-updated-field {
    padding-inline: 16px;
  }
}

/* ============================================================
   Panel-driven content: SEO tables and the FAQ accordion.
   The source homepage had neither, so these are styled here
   with the same tokens as the rest of the template.
   ============================================================ */

/* ---------- Tables inside the SEO text ---------- */
.about-text table {
  width: 100%;
  margin: 20px 0 24px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 15px;
  line-height: 1.55;
  background: var(--panel-deep);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.about-text table th,
.about-text table td {
  padding: 13px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
/* CKEditor often ships a header row of <td><strong>, not <th> — cover both. */
.about-text table th,
.about-text table thead td,
.about-text table tr:first-child td:has(strong) {
  background: linear-gradient(180deg, #1b2426 0%, #141b1c 100%);
  color: var(--gold);
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.about-text table tbody tr:nth-child(even) { background: rgba(255, 255, 255, .022); }
.about-text table tbody tr:hover { background: rgba(172, 249, 255, .05); }
.about-text table tbody tr:last-child td { border-bottom: 0; }
.about-text table td:first-child {
  width: 32%;
  color: var(--cream);
  font-weight: 600;
}
.about-text table a { color: var(--ice); }

/* A wide table must scroll inside itself rather than stretch the page. */
@media (max-width: 720px) {
  .about-text table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .about-text table td:first-child { width: auto; min-width: 140px; }
}

/* ---------- FAQ accordion ---------- */
.faq-block { margin: 30px 0 40px; }
.faq-list { display: grid; gap: 10px; }

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, #141b1c 0%, #101414 100%);
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item[open] { border-color: var(--line-strong); }

/* summary is a list-item by default — that is where the stray ▶ came from. */
.faq-question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { content: ''; }
.faq-question:hover h3 { color: var(--ice); }
.faq-question h3 {
  flex: 1 1 auto;
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
  transition: color .2s ease;
}
.faq-question::after {
  content: '';
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-right: 2px solid var(--ice);
  border-bottom: 2px solid var(--ice);
  transform: rotate(45deg);
  transition: transform .22s ease, margin-top .22s ease;
}
.faq-item[open] .faq-question::after { transform: rotate(-135deg); margin-top: 4px; }

.faq-answer {
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.faq-answer p { margin: 0; }

@media (max-width: 620px) {
  .faq-question { padding: 14px 16px; gap: 12px; }
  .faq-question h3 { font-size: 15px; }
  .faq-answer { padding: 0 16px 16px; font-size: 14px; }
}
