@media (min-width: 761px) {
  @font-face {
    font-family: "Proxima Nova";
    src: url("fonts/ProximaNova-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: "Proxima Nova";
    src: url("fonts/ProximaNova-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: "Proxima Nova";
    src: url("fonts/ProximaNova-Extrabld.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: "Proxima Nova";
    src: url("fonts/ProximaNova-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
  }
}

:root {
  --bg: #111217;
  --panel: #15161d;
  --panel-2: #1a1b23;
  --panel-3: #252632;
  --muted: rgba(255, 255, 255, 0.62);
  --line: rgba(255, 255, 255, 0.08);
  --gold: #ff9416;
  --gold-2: #fecb0a;
  --green: #98ff16;
  --text: #ffffff;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

@media (min-width: 761px) {
  body {
    font-family: "Proxima Nova", Arial, Helvetica, sans-serif;
  }
}

body::selection {
  background: rgba(255, 148, 22, 0.35);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #111217;
}

::-webkit-scrollbar-thumb {
  background: #3c3e51;
  border-radius: 6px;
}

.site-shell {
  display: flex;
  min-height: 100vh;
  background: var(--bg);
}

.sidebar {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 256px;
  height: 100vh;
  flex: 0 0 256px;
  overflow-y: auto;
  border-right: 1px solid var(--line);
  background: #1a1b23;
}

.sidebar-top {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 64px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
}

.menu-toggle,
.icon-button,
.mobile-menu {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #252632;
  color: #c9cad9;
}

.mode-tabs {
  display: flex;
  flex: 1;
  gap: 2px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #111217;
}

.mode-tabs span {
  flex: 1;
  min-width: 0;
  padding: 7px 10px;
  border-radius: 999px;
  color: #a7a8b7;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.mode-tabs span:first-child {
  background: #353846;
  color: #fecb0a;
}

.sidebar-content {
  padding: 16px 12px 28px;
}

.search-box {
  position: relative;
  margin-bottom: 12px;
}

.search-box input {
  width: 100%;
  height: 42px;
  padding: 0 14px 0 36px;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
  background: #252632;
  color: var(--text);
}

.search-box svg {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #7b7e91;
}

.side-actions {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 10px 16px;
  border: 0;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.18s ease, filter 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover,
.icon-button:hover,
.menu-toggle:hover {
  filter: brightness(1.08);
}

.btn:focus-visible,
.icon-button:focus-visible,
.menu-toggle:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn-gold {
  background: linear-gradient(90deg, #fecd0a 0%, #d75619 42%, #feca0a 74%, #fe8a0a 100%);
  color: #1c1d24;
  box-shadow: 0 0 16px rgba(255, 148, 22, 0.24);
}

.btn-dark {
  background: #252632;
  color: #f3f3fa;
  border: 1px solid var(--line);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.side-section {
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.side-link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 9px 10px;
  border-radius: 6px;
  color: #b4b6c7;
  font-size: 14px;
  font-weight: 700;
}

.side-link:hover,
.side-link.is-active {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.side-icon {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: linear-gradient(135deg, rgba(255, 203, 10, 0.95), rgba(215, 86, 25, 0.95));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.tournament-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #252632;
  color: #d8d9e5;
  font-size: 13px;
}

.timer {
  padding: 3px 6px;
  border: 1px solid rgba(152, 255, 22, 0.24);
  border-radius: 4px;
  color: var(--green);
  background: rgba(152, 255, 22, 0.08);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.app {
  flex: 1;
  min-width: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(37, 38, 50, 0.96);
  backdrop-filter: blur(12px);
}

.logo {
  display: inline-flex;
  align-items: center;
  width: 128px;
  height: 42px;
}

.logo img {
  width: 128px;
  height: auto;
}

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

.mobile-menu {
  display: none;
}

.page-wrap {
  width: min(1600px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0 42px;
}

.hero {
  position: relative;
  min-height: 386px;
  overflow: hidden;
  border: 1px solid rgba(255, 148, 22, 0.2);
  border-radius: 12px;
  background: #15161d;
  box-shadow: var(--shadow);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(17, 18, 23, 0.98) 0%, rgba(17, 18, 23, 0.66) 36%, rgba(17, 18, 23, 0.2) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 370px minmax(0, 1fr);
  align-items: center;
  gap: 44px;
  min-height: 386px;
  padding: 32px;
}

.deposit-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(31, 33, 42, 0.94);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

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

.field,
.currency-select {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #15161d;
}

.field span {
  margin-right: 8px;
  color: #a8aabb;
}

.field input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: #ffffff;
  font-weight: 800;
}

.currency-select {
  justify-content: space-between;
  color: #ffffff;
  font-weight: 800;
}

.currency-select img {
  width: 20px;
  height: 20px;
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.amount-grid button {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #2f303f;
  color: #d7d8e6;
  font-weight: 700;
}

.amount-grid button:hover {
  background: #3a3c4d;
}

.payment-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 26px;
}

.payment-strip img {
  width: auto;
  max-width: 54px;
  height: 22px;
  object-fit: contain;
}

.terms-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  min-height: 32px;
  padding: 0 6px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.hero-copy h1 {
  max-width: 680px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(36px, 5.1vw, 72px);
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.58);
}

.hero-copy p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 800;
}

.hero-dots {
  position: absolute;
  z-index: 2;
  bottom: 15px;
  left: 50%;
  display: flex;
  gap: 0;
  transform: translateX(-50%);
}

.hero-dots button {
  position: relative;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
}

.hero-dots button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  content: "";
  background: #3c3e51;
  transform: translate(-50%, -50%);
}

.hero-dots button.is-active {
  width: 32px;
  background: transparent;
}

.hero-dots button.is-active::after {
  width: 32px;
  background: var(--gold);
}

.live-panel,
.content-panel,
.bets-table,
.footer-contact,
.legal-card,
.not-found-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(31, 33, 42, 0.68);
}

.live-panel {
  margin-top: 24px;
  padding: 14px;
}

.panel-tabs {
  display: flex;
  gap: 24px;
  padding: 0 0 11px;
  border-bottom: 1px solid var(--line);
  color: #73768a;
  font-size: 14px;
  font-weight: 800;
}

.panel-tabs span:first-child {
  color: var(--gold);
}

.wins-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-top: 14px;
  scrollbar-width: none;
}

.wins-row::-webkit-scrollbar,
.game-scroll::-webkit-scrollbar,
.provider-scroll::-webkit-scrollbar,
.category-nav::-webkit-scrollbar {
  display: none;
}

.win-card {
  display: flex;
  flex: 0 0 158px;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #15161d;
}

.win-card img {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
}

.win-card .win-user,
.win-card span,
.win-card small {
  display: block;
  line-height: 1.25;
}

.win-card .win-user {
  color: #e4e5ef;
  font-size: 12px;
  font-weight: 700;
}

.win-card span {
  color: #00e676;
  font-size: 12px;
  font-weight: 900;
}

.win-card small {
  color: #818497;
  font-size: 10px;
}

.toc {
  margin: 24px 0 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(21, 22, 29, 0.85);
}

.toc summary {
  padding: 14px 16px;
  color: #ffffff;
  font-weight: 900;
  cursor: pointer;
}

.toc nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 16px;
}

.toc a {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #cfd0db;
  font-size: 13px;
  font-weight: 700;
}

.category-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  margin: 18px 0 28px;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.category-nav a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #1f212a;
  color: #d6d7e2;
  font-size: 14px;
  font-weight: 800;
}

.category-nav a:first-child {
  background: var(--gold);
  color: #1c1d24;
}

.section-block {
  margin-top: 32px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 9px;
}

.section-title h2 {
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
}

.title-mark {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: linear-gradient(135deg, #fecd0a, #d75619);
}

.show-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 2px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.game-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.game-card {
  position: relative;
  flex: 0 0 158px;
  min-height: 270px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #252632;
  scroll-snap-align: start;
}

.game-cover {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #2f303f;
}

.game-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.game-card:hover .game-cover img {
  transform: scale(1.05);
}

.game-cover::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 44%, rgba(0, 0, 0, 0.75));
  opacity: 0.9;
}

.play-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.84);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.play-mark::after {
  position: absolute;
  top: 50%;
  left: 53%;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #1c1d24;
  content: "";
  transform: translate(-50%, -50%);
}

.game-card:hover .play-mark {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.game-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 3;
  padding: 3px 7px;
  border-radius: 4px;
  background: linear-gradient(90deg, #fecd0a, #fe8a0a);
  color: #1c1d24;
  font-size: 10px;
  font-weight: 900;
}

.game-meta {
  display: flex;
  min-height: 88px;
  flex-direction: column;
  padding: 9px;
}

.game-meta h3 {
  display: -webkit-box;
  min-height: 32px;
  margin: 0;
  overflow: hidden;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  line-height: 16px;
  text-transform: uppercase;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.game-meta p {
  margin: 4px 0 8px;
  overflow: hidden;
  color: #b8bac9;
  font-size: 11px;
  font-weight: 700;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.game-actions {
  display: grid;
  gap: 6px;
  margin-top: auto;
}

.game-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 7px 8px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 900;
}

.game-actions a:first-child {
  background: var(--gold);
  color: #1c1d24;
}

.game-actions a:last-child {
  border: 1px solid rgba(255, 148, 22, 0.45);
  color: var(--gold);
}

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

.promo-card {
  position: relative;
  min-height: 212px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #252632;
}

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

.promo-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(17, 18, 23, 0.82), rgba(17, 18, 23, 0.24));
}

.promo-content {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  min-height: 212px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px;
}

.promo-content span {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.45);
  color: #dedfeb;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-content h3 {
  width: min(80%, 260px);
  margin: 10px 0 auto;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.65);
}

.provider-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.provider-card {
  display: flex;
  flex: 0 0 195px;
  align-items: center;
  justify-content: center;
  width: 195px;
  height: 88px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #15161d;
  transition: transform 0.2s ease, background 0.2s ease;
}

.provider-card:hover {
  transform: translateY(-4px);
  background: #252632;
}

.provider-card img {
  max-width: 160px;
  max-height: 52px;
  object-fit: contain;
}

.provider-card span {
  color: #c8cad8;
  font-weight: 900;
  text-align: center;
}

.bets-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.bets-controls button,
.bets-controls span {
  min-height: 36px;
  padding: 9px 13px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #9b9daf;
  font-size: 13px;
  font-weight: 800;
}

.bets-controls button:first-child {
  background: var(--gold);
  color: #1c1d24;
}

.bets-controls span {
  margin-left: auto;
  border: 1px solid var(--line);
  background: #1f212a;
  color: #d9dae5;
}

.bets-table {
  overflow-x: auto;
}

.bets-table table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  white-space: nowrap;
}

.bets-table th,
.bets-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  text-align: right;
}

.bets-table th {
  background: #1a1b23;
  color: #777a8f;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.bets-table td {
  color: #d9dae5;
  font-size: 14px;
  font-weight: 700;
}

.bets-table th:first-child,
.bets-table td:first-child,
.bets-table th:nth-child(2),
.bets-table td:nth-child(2) {
  text-align: left;
}

.bets-table td:nth-child(2) {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bets-table td:nth-child(2) img {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  object-fit: cover;
}

.bets-table td:last-child {
  color: #00e676;
  font-weight: 900;
}

.content-panel {
  margin-top: 36px;
  padding: clamp(18px, 3vw, 32px);
}

.content-panel h2 {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 900;
}

.content-panel h3 {
  margin: 24px 0 8px;
  font-size: 20px;
  font-weight: 900;
}

.content-panel p,
.content-panel li,
.legal-card p,
.legal-card li,
.not-found-card p {
  color: #c6c8d6;
  font-size: 16px;
  line-height: 1.65;
}

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

.content-panel ul,
.legal-card ul {
  padding-left: 20px;
}

.review-content > h2:first-child {
  font-size: clamp(30px, 4vw, 44px);
}

.review-content h2:not(:first-child) {
  margin-top: 34px;
  padding-top: 6px;
}

.review-content h3 {
  color: #f5f5f8;
}

.review-content strong {
  color: #ffffff;
}

.review-content code {
  padding: 2px 5px;
  border-radius: 4px;
  background: #252632;
  color: var(--gold-2);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
}

.table-wrap {
  overflow-x: auto;
  margin: 16px 0 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.review-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.review-table th,
.review-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.review-table th {
  background: #20222c;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.review-table td {
  color: #c6c8d6;
  font-size: 14px;
  line-height: 1.55;
}

.review-table tr:last-child td {
  border-bottom: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #14151b;
}

.footer-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 40px 0 54px;
  text-align: center;
}

.footer-contact {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 20px;
  text-align: left;
}

.footer-contact h2 {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 900;
}

.footer-contact p {
  margin: 0;
  color: #c4c6d3;
  line-height: 1.55;
}

.footer-nav,
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: #d9dae4;
  font-size: 14px;
  font-weight: 800;
}

.age-badge {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 24px auto 0;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 900;
}

.footer-payments img {
  width: auto;
  height: 34px;
  max-width: 110px;
  object-fit: contain;
}

.copyright {
  margin-top: 22px;
  color: #8e91a5;
  font-size: 13px;
  line-height: 1.7;
}

.copyright a,
.breadcrumb a {
  display: inline-flex;
  align-items: center;
  min-width: 32px;
  min-height: 32px;
}

.legal-main,
.not-found-main {
  width: min(960px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 48px;
}

.breadcrumb {
  margin-bottom: 18px;
  color: #9295a7;
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.legal-card,
.not-found-card {
  padding: clamp(22px, 4vw, 42px);
}

.legal-card h1,
.not-found-card h1 {
  margin: 0 0 14px;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1;
}

.legal-card h2 {
  margin: 28px 0 10px;
  font-size: 22px;
  font-weight: 900;
}

.support-button,
.back-to-top {
  position: fixed;
  z-index: 120;
  right: 22px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
}

.support-button {
  bottom: 88px;
  width: 54px;
  height: 54px;
  background: var(--gold);
  color: #1c1d24;
  font-weight: 900;
}

.back-to-top {
  bottom: 22px;
  width: 44px;
  height: 44px;
  background: #252632;
  color: #ffffff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu .bar,
.menu-toggle .bar {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-menu .bar + .bar,
.menu-toggle .bar + .bar {
  margin-top: 4px;
}

@media (max-width: 1180px) {
  .promo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .sidebar {
    position: fixed;
    left: 0;
    transform: translateX(-102%);
    transition: transform 0.22s ease;
  }

  .sidebar.is-open {
    transform: translateX(0);
  }

  .mobile-menu {
    display: inline-grid;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .deposit-card {
    max-width: 390px;
  }

  .content-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 0 14px;
    gap: 8px;
  }

  .mobile-menu {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
  }

  .logo {
    width: 96px;
    flex: 0 1 96px;
  }

  .logo img {
    width: 96px;
  }

  .header-actions {
    flex: 0 0 auto;
    gap: 4px;
  }

  .header-actions .icon-button {
    display: none;
  }

  .header-actions .btn-dark {
    display: none;
  }

  .header-actions .btn {
    min-height: 34px;
    padding: 8px 9px;
    font-size: 12px;
  }

  .page-wrap,
  .footer-inner,
  .legal-main,
  .not-found-main {
    width: min(100% - 24px, 100%);
  }

  .hero {
    min-height: 620px;
  }

  .hero-inner {
    min-height: 620px;
    padding: 18px;
  }

  .deposit-card,
  .hero-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: 30px;
    line-height: 1.05;
  }

  .deposit-row {
    grid-template-columns: 1fr;
  }

  .amount-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .game-card {
    flex-basis: 138px;
  }

  .footer-contact {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact .btn {
    justify-self: center;
  }
}

@media (max-width: 380px) {
  .hero-copy h1 {
    font-size: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
