:root {
  --bg: #111111;
  --bg-alt: #1c1c1c;
  --panel: #252525;
  --panel-soft: #2e2e2e;
  --panel-border: #3b3b3b;
  --text: #ffffff;
  --muted: #c7c7c7;
  --muted-soft: #8f8f8f;
  --accent: #f5bd36;
  --accent-strong: #ffca46;
  --danger: #ff6b6b;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --shell-width: min(1984px, calc(100vw - 32px));
  --transition: 180ms ease;
}

@font-face {
  font-family: "Melbet Sans";
  src: url("./fonts/roboto-variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Melbet Condensed";
  src: url("./fonts/roboto-condensed-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Melbet Condensed";
  src: url("./fonts/roboto-condensed-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Melbet Sans", system-ui, sans-serif;
  min-height: 100vh;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-shell {
  width: var(--shell-width);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 12px;
  background: var(--accent);
  color: #111;
  padding: 8px 12px;
  border-radius: 999px;
  z-index: 100;
}

.skip-link:focus {
  top: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.header-utility {
  background: #222222;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-utility__inner,
.header-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-utility__inner {
  min-height: 52px;
}

.header-utility__group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.utility-chip,
.utility-ghost,
.utility-banner,
.os-chip,
.utility-value,
.utility-square,
.circle-icon,
.nav-icon-button,
.scratch-link {
  transition: background-color var(--transition), color var(--transition), border-color var(--transition), opacity var(--transition), transform var(--transition);
}

.utility-chip,
.os-chip,
.utility-banner,
.utility-value,
.utility-ghost,
.utility-square {
  border-radius: 12px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid transparent;
  white-space: nowrap;
}

.utility-chip {
  background: #343434;
  color: #efefef;
  font-size: 14px;
}

.utility-chip:hover,
.utility-ghost:hover,
.utility-square:hover,
.os-chip:hover {
  background: #414141;
}

.utility-ghost {
  background: #3a3a3a;
  color: #ffffff;
  font-size: 15px;
}

.utility-value {
  background: #303030;
  color: var(--accent-strong);
  font-weight: 700;
}

.utility-value__icon svg,
.utility-square svg,
.os-chip__icon svg,
.nav-icon-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.os-chip {
  background: var(--accent);
  color: #1b1b1b;
  font-weight: 700;
}

.utility-banner {
  background: var(--accent);
  color: #1b1b1b;
  font-weight: 700;
}

.utility-square {
  width: 40px;
  justify-content: center;
  padding: 0;
  background: #2d2d2d;
  color: #f7f7f7;
}

.circle-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #2a2a2a;
}

.circle-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.circle-icon:hover {
  transform: translateY(-1px);
}

.circle-icon--light {
  background: #f4f4f4;
}

.header-nav {
  background: linear-gradient(180deg, #f4bd37 0%, #f5b72c 100%);
  color: #222;
}

.header-nav__inner {
  min-height: 54px;
}

.site-logo {
  position: relative;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px 0 28px;
  background: #1b1b1b;
  color: #fff;
  direction: ltr;
  clip-path: polygon(11% 0, 100% 0, 100% 100%, 0 100%);
}

.site-logo::before {
  content: "";
  width: 24px;
  height: 16px;
  flex: 0 0 24px;
  background: url("./images/flag-eg.svg") center/contain no-repeat;
}

.site-logo img {
  width: 150px;
  height: auto;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.main-navigation::-webkit-scrollbar,
.carousel__viewport::-webkit-scrollbar {
  display: none;
}

.main-navigation a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 4px;
  font-family: "Melbet Condensed", sans-serif;
  font-size: clamp(0.92rem, 0.82rem + 0.18vw, 1.08rem);
  font-weight: 700;
  white-space: nowrap;
}

.main-navigation a::after {
  content: "";
  border-inline-start: 4px solid transparent;
  border-inline-end: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.66;
}

.header-nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-icon-button {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #1f1f1f;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.scratch-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Melbet Condensed", sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.scratch-link img {
  width: 32px;
  height: 32px;
}

.button,
.nav-arrow,
.accordion-toggle {
  border: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.button--accent {
  background: var(--accent);
  color: #111;
}

.button--accent:hover,
.button--accent:focus-visible {
  background: #ffcb49;
}

.button--subtle {
  background: #3b3b3b;
  color: #f1f1f1;
}

.button--subtle:hover,
.button--subtle:focus-visible {
  background: #474747;
}

.button--compact {
  min-height: 42px;
  padding: 0 20px;
}

.section-block {
  padding: 18px 0;
}

.section-block--dense {
  padding-top: 8px;
}

.hero-section {
  padding: 14px 0 10px;
}

.hero-slider {
  position: relative;
  background: #181818;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-slider__viewport {
  position: relative;
  min-height: 282px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 420ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.22) 34%, rgba(0, 0, 0, 0.76) 68%, rgba(0, 0, 0, 0.92) 100%);
}

.hero-slide__content {
  width: min(36%, 560px);
  padding-inline: clamp(24px, 3vw, 52px);
  text-align: right;
}

.hero-slide__content h1,
.hero-slide__content h2 {
  margin: 0 0 12px;
  font-family: "Melbet Condensed", sans-serif;
  font-size: clamp(2rem, 1.58rem + 1.4vw, 3.15rem);
  line-height: 0.98;
}

.hero-slide__content p {
  margin: 0 0 20px;
  color: #ececec;
  font-size: clamp(0.92rem, 0.84rem + 0.24vw, 1.14rem);
  line-height: 1.55;
}

.hero-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 38px;
  height: 50px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 26, 26, 0.84);
  color: #e7e7e7;
  transform: translateY(-50%);
}

.hero-slider__arrow svg,
.nav-arrow svg,
.accordion-toggle svg,
.back-to-top svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.hero-slider__arrow:hover,
.nav-arrow:hover,
.back-to-top:hover {
  background: rgba(245, 189, 54, 0.18);
  color: var(--accent);
}

.hero-slider__arrow--prev {
  left: 20px;
}

.hero-slider__arrow--next {
  right: 20px;
}

.hero-slider__dots {
  position: absolute;
  inset-inline: 0;
  bottom: 16px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero-slider__dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  border: 0;
  padding: 0;
}

.hero-slider__dots button.is-active {
  width: 28px;
  background: #ffe57e;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  direction: ltr;
}

.category-card {
  position: relative;
  display: block;
  min-height: 114px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #222;
  direction: rtl;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.78), rgba(15, 15, 15, 0.08));
}

.category-card span {
  position: absolute;
  inset-inline: 16px;
  bottom: 18px;
  z-index: 1;
  font-family: "Melbet Condensed", sans-serif;
  font-size: clamp(1.06rem, 0.94rem + 0.24vw, 1.46rem);
  font-weight: 700;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.section-heading__title-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.section-heading__controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-heading h2 {
  margin: 0;
  font-family: "Melbet Condensed", sans-serif;
  font-size: clamp(1.58rem, 1.28rem + 0.42vw, 2.28rem);
  letter-spacing: -0.01em;
}

.fast-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  color: var(--muted);
  min-width: 0;
}

.fast-filter button {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 8px 0;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  font-size: 0.88rem;
}

.fast-filter button.is-active {
  color: #fff;
  border-color: var(--accent);
}

.game-grid {
  display: grid;
  gap: 12px;
}

.game-grid--featured {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.game-card {
  background: var(--panel);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-width: 0;
}

.game-card[hidden] {
  display: none;
}

.game-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.game-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.game-card:hover .game-card__media img {
  transform: scale(1.04);
}

.game-card__footer {
  display: grid;
  gap: 10px;
  padding: 11px 13px 13px;
  background: linear-gradient(180deg, rgba(58, 58, 58, 0.95) 0%, #2e2e2e 100%);
}

.game-card__footer h3 {
  margin: 0;
  font-size: clamp(1rem, 0.82rem + 0.28vw, 1.42rem);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.game-card__footer--slot,
.game-card__footer--live {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.game-card__footer--slot h3,
.game-card__footer--live h3 {
  grid-column: 2;
}

.game-card__footer--live span {
  color: var(--muted);
  font-size: 0.88rem;
}

.game-card__footer--live h3 {
  text-align: start;
}

.game-tag {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
}

.game-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 91, 91, 0.95);
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
}

.game-badge--dark {
  background: rgba(63, 72, 85, 0.88);
  color: #f2f2f2;
}

.favorite-button {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: #d6d6d6;
  font-size: 1.3rem;
  padding: 0;
}

.favorite-button:hover {
  color: var(--accent);
  border-color: rgba(245, 189, 54, 0.45);
}

.nav-arrow {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #2a2a2a;
  color: #f6f6f6;
  padding: 0;
}

.top-events-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 3.3fr) minmax(260px, 1fr);
  gap: 0;
  min-height: 318px;
  background: linear-gradient(180deg, #1f1f1f 0%, #1a1a1a 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.top-events-panel__visual {
  background:
    linear-gradient(90deg, rgba(14, 14, 14, 0.12) 0%, rgba(14, 14, 14, 0.18) 100%),
    url("./images/top-events-bg.webp") center/cover no-repeat;
}

.carousel {
  position: relative;
}

.carousel__viewport {
  overflow-x: auto;
  scrollbar-width: none;
}

.carousel__track {
  display: flex;
  gap: 14px;
  direction: ltr;
}

.carousel__track--events {
  padding: 30px 16px 18px;
}

.event-card {
  width: min(390px, calc(100vw - 124px));
  flex: 0 0 auto;
  background: rgba(42, 42, 42, 0.96);
  border-radius: 18px;
  padding: 12px;
  direction: rtl;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.event-card header,
.event-card__teams,
.event-card__odds {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.event-card header {
  color: #f1f1f1;
  margin-bottom: 16px;
  gap: 12px;
  font-size: 0.88rem;
}

.event-card__teams {
  align-items: flex-start;
  margin-bottom: 14px;
}

.event-card__teams strong,
.event-card__teams span {
  display: block;
}

.event-card__teams strong {
  margin-bottom: 10px;
  font-size: 1.24rem;
}

.event-card__teams span {
  color: var(--muted);
  font-size: 0.92rem;
}

.event-card__logos {
  display: grid;
  gap: 12px;
}

.team-mark {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.team-mark--arsenal {
  background: #c2002f;
}

.team-mark--bournemouth {
  background: linear-gradient(135deg, #000 0 50%, #b50026 50% 100%);
}

.team-mark--roma {
  background: #8a251d;
}

.team-mark--pisa {
  background: #183567;
}

.team-mark--marseille {
  background: #00aef0;
}

.team-mark--metz {
  background: #8e1326;
}

.team-mark--westham {
  background: #7b1b43;
}

.team-mark--wolves {
  background: #d88f00;
}

.event-card p {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.9rem;
}

.event-card__odds {
  gap: 8px;
}

.event-card__odds a {
  flex: 1;
  background: #1d1d1d;
  border-radius: 12px;
  min-height: 44px;
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 8px 10px;
  text-align: center;
  color: #eaeaea;
  font-size: 0.82rem;
}

.event-card__odds strong {
  display: block;
  font-size: 1.02rem;
}

.carousel__track--providers,
.carousel__track--sports,
.carousel__track--partners,
.carousel__track--payments {
  padding-bottom: 10px;
}

.providers-section {
  padding-top: 10px;
}

.providers-heading {
  margin-bottom: 18px;
}

.carousel__track--providers {
  gap: 14px;
  padding-bottom: 0;
}

.provider-card {
  width: 278px;
  min-height: 146px;
  flex: 0 0 auto;
  border-radius: 15px;
  background: #252525;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
  display: grid;
  place-items: center;
  padding: 20px 18px 16px;
  gap: 14px;
}

.provider-card img {
  width: min(100%, 176px);
  height: 52px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.92);
}

.provider-card span {
  color: var(--muted);
  font-family: "Melbet Condensed", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.sport-card {
  width: 180px;
  min-height: 84px;
  flex: 0 0 auto;
  border-radius: var(--radius-md);
  background: #252525;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  padding: 14px;
  direction: rtl;
}

.sport-card h3 {
  margin: 0;
  font-family: "Melbet Condensed", sans-serif;
  font-size: 1.18rem;
}

.sport-icon {
  font-size: 1.72rem;
}

.accordion-list {
  display: grid;
  gap: 14px;
}

.accordion-card {
  background: #232323;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.accordion-toggle {
  width: 100%;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  text-align: right;
  font-family: "Melbet Condensed", sans-serif;
  font-size: clamp(1.18rem, 1.04rem + 0.2vw, 1.54rem);
}

.accordion-card.is-open .accordion-toggle svg {
  transform: rotate(180deg);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.accordion-panel > * {
  overflow: hidden;
}

.accordion-card.is-open .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-panel p,
.accordion-links,
.faq-stack {
  padding: 0 22px 18px;
}

.accordion-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.accordion-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.accordion-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #2d2d2d;
}

.faq-stack {
  display: grid;
  gap: 14px;
}

.faq-stack article {
  padding: 18px;
  border-radius: 14px;
  background: #2b2b2b;
}

.faq-stack h3,
.faq-stack p {
  margin: 0;
}

.faq-stack h3 {
  font-size: 1.16rem;
  margin-bottom: 8px;
}

.faq-stack p {
  color: var(--muted);
  line-height: 1.65;
}

.site-footer {
  padding: 28px 0 40px;
}

.footer-primary {
  background: #232323;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 20px 22px 18px;
}

.footer-main {
  display: grid;
  grid-template-columns: 392px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  direction: ltr;
}

.app-card {
  background: #242424;
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  direction: rtl;
}

.app-card__tabs {
  display: flex;
  background: #262626;
}

.app-card__tabs button {
  flex: 1;
  min-height: 40px;
  border: 0;
  background: transparent;
  color: #d2d2d2;
  font-family: "Melbet Condensed", sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.app-card__tabs button.is-active {
  background: var(--accent);
  color: #121212;
}

.app-card__body {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  align-items: center;
}

.app-card__info {
  display: grid;
  gap: 14px;
}

.app-card__info p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.app-card__body > img {
  width: 124px;
  height: 124px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 26px;
  direction: rtl;
}

.footer-column {
  display: grid;
  gap: 10px;
}

.footer-column h2 {
  margin: 0 0 4px;
  font-family: "Melbet Condensed", sans-serif;
  font-size: 1.42rem;
}

.footer-column a {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.footer-column a:hover,
.footer-nav-inline a:hover,
.legal-copy a:hover {
  color: #fff;
}

.partners-section {
  padding-top: 24px;
}

.partner-card {
  width: 150px;
  min-height: 150px;
  flex: 0 0 auto;
  border-radius: 18px;
  background: #242424;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  padding: 20px;
}

.partner-card img {
  width: auto;
  max-width: 100%;
  max-height: 112px;
  object-fit: contain;
}

.compliance-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-top: 18px;
}

.compliance-tile {
  min-height: 88px;
  border-radius: 14px;
  background: #232323;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: grid;
  place-items: center;
  padding: 18px;
}

.legal-copy {
  display: grid;
  gap: 6px;
  margin-top: 10px;
  padding: 6px 8px 2px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.82rem;
  text-align: center;
}

.legal-copy p {
  margin: 0;
}

.legal-copy a {
  color: #fff;
  text-decoration: underline;
}

.footer-lower {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.footer-contact {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) minmax(320px, 380px);
  gap: 10px;
  direction: ltr;
}

.footer-contact__aside,
.footer-contact__socials,
.footer-contact__support {
  min-height: 78px;
  border-radius: 12px;
  background: #232323;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 14px 18px;
  direction: rtl;
}

.footer-contact__aside {
  display: grid;
  place-items: center;
  font-family: "Melbet Condensed", sans-serif;
  font-size: 2.2rem;
}

.footer-contact__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-contact__socials .circle-icon {
  width: 44px;
  height: 44px;
}

.footer-contact__socials .circle-icon svg {
  width: 22px;
  height: 22px;
}

.footer-contact__support {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-contact__support > div {
  text-align: center;
}

.footer-contact__support strong,
.footer-contact__support span {
  display: block;
}

.footer-contact__support strong {
  color: #fff;
  margin-bottom: 6px;
  font-size: 1rem;
}

.footer-contact__support span {
  color: #c8c8c8;
  font-size: 1.5rem;
}

.footer-contact__support svg {
  width: 52px;
  height: 52px;
  fill: #d8d8d8;
  flex-shrink: 0;
}

.footer-app-bar {
  min-height: 44px;
  border-radius: 12px;
  background: #232323;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: grid;
  place-items: center;
  font-family: "Melbet Condensed", sans-serif;
  font-size: 1.08rem;
}

.payments-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  background: #232323;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 8px 10px;
}

.carousel__track--payments {
  gap: 14px;
  align-items: center;
}

.payment-chip {
  min-width: 88px;
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.payment-chip img {
  width: auto;
  max-width: 76px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 auto;
}

@media (min-width: 1101px) {
  html {
    font-size: 80%;
  }
}

.back-to-top {
  position: fixed;
  inset-inline-start: 24px;
  bottom: 24px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #3a3a3a;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.3);
  transition: opacity var(--transition), transform var(--transition), background-color var(--transition);
  z-index: 25;
}

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

.page-generic {
  background: radial-gradient(circle at top, rgba(245, 189, 54, 0.08), transparent 28%), var(--bg);
}

.legal-header {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(17, 17, 17, 0.92);
  position: sticky;
  top: 0;
  z-index: 24;
  backdrop-filter: blur(10px);
}

.legal-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.legal-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
}

.legal-header nav a {
  padding: 8px 14px;
  border-radius: 999px;
  background: #242424;
}

.legal-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 34px 0 18px;
}

.page-hero__card {
  padding: clamp(28px, 4vw, 52px);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(40, 40, 40, 0.98), rgba(26, 26, 26, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.breadcrumb {
  margin-bottom: 18px;
  color: var(--muted-soft);
}

.breadcrumb ol {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb li + li::before {
  content: "/";
  margin-inline-end: 10px;
  color: var(--muted-soft);
}

.page-hero h1 {
  margin: 0 0 12px;
  font-family: "Melbet Condensed", sans-serif;
  font-size: clamp(2.4rem, 1.9rem + 1vw, 4rem);
  line-height: 1.02;
}

.page-hero p {
  margin: 0;
  max-width: 900px;
  color: #d6d6d6;
  font-size: 1.12rem;
  line-height: 1.8;
}

.toc {
  margin-top: 22px;
  display: grid;
  justify-items: start;
  padding: 16px 18px;
  border-radius: 18px;
  background: #242424;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.toc__toggle {
  width: auto;
  min-height: 38px;
  gap: 10px;
  background: linear-gradient(135deg, rgba(255, 194, 0, 0.14), rgba(255, 194, 0, 0.06));
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 194, 0, 0.18);
  border-radius: 999px;
  font-family: "Melbet Condensed", sans-serif;
  font-size: 0.92rem;
  line-height: 1.2;
}

.toc__toggle svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.toc__panel {
  display: none;
  width: 100%;
  padding-top: 14px;
}

.toc.is-open .toc__panel {
  display: block;
}

.toc__panel ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.content-grid {
  padding: 24px 0 40px;
}

.content-card {
  padding: 28px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: #242424;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.content-card h2 {
  margin: 0 0 16px;
  font-family: "Melbet Condensed", sans-serif;
  font-size: 2.1rem;
}

.content-card p {
  margin: 0 0 14px;
  color: #d9d9d9;
  font-size: 1.07rem;
  line-height: 1.84;
}

.content-card p:last-child,
.content-card ul:last-child,
.content-card ol:last-child {
  margin-bottom: 0;
}

.styled-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.styled-list li {
  position: relative;
  padding: 16px 20px 16px 20px;
  border-radius: 16px;
  background: #2d2d2d;
  color: #dedede;
}

.styled-list li::before {
  content: "";
  position: absolute;
  inset-inline-end: 14px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

.ordered-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: item;
}

.ordered-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 16px;
  background: #2d2d2d;
  counter-increment: item;
}

.ordered-list li::before {
  content: counter(item);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--accent);
  color: #111;
  display: inline-grid;
  place-items: center;
  font-weight: 700;
}

.generic-footer {
  padding: 20px 0 40px;
}

.generic-footer__card {
  padding: 24px;
  border-radius: 18px;
  background: #242424;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

.generic-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  color: var(--muted);
}

.generic-footer__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.generic-footer__badges img {
  height: 54px;
  width: auto;
}

.page-links-bar {
  padding: 14px 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.98), rgba(18, 18, 18, 0.94));
}

.page-links-bar__track {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-links-bar__track a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #252525;
  color: #e4e4e4;
  white-space: nowrap;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.page-links-bar__track a:hover,
.page-links-bar__track a:focus-visible {
  border-color: rgba(255, 194, 0, 0.46);
  color: #fff;
}

.page-links-bar__track a.is-active {
  background: linear-gradient(135deg, #ffd347, var(--accent));
  border-color: transparent;
  color: #111;
  font-weight: 700;
}

.home-guide-card {
  display: grid;
  gap: 24px;
}

.home-guide-card__copy {
  display: grid;
  gap: 16px;
}

.home-guide-card__copy p {
  margin: 0;
}

.home-guide-card__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.home-section-stack {
  display: grid;
  gap: 18px;
}

.page-hero__actions,
.content-actions,
.content-links,
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-hero__actions {
  margin-top: 22px;
}

.content-actions,
.content-links,
.quick-links {
  margin: 18px 0 0;
}

.content-links a,
.quick-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #2d2d2d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.quick-links a {
  background: linear-gradient(135deg, rgba(255, 194, 0, 0.16), rgba(255, 194, 0, 0.06));
}

.content-card h3 {
  margin: 24px 0 12px;
  color: #fff;
  font-family: "Melbet Condensed", sans-serif;
  font-size: 1.52rem;
  line-height: 1.18;
}

.content-card strong {
  color: inherit;
  font-weight: 700;
}

.content-card a {
  color: var(--accent);
}

a.button--accent,
a.button--accent:visited,
a.button--accent:hover,
a.button--accent:focus-visible {
  color: #111;
}

a.button--subtle,
a.button--subtle:visited,
a.button--subtle:hover,
a.button--subtle:focus-visible {
  color: #f1f1f1;
}

.content-card ul,
.content-card ol {
  margin: 0 0 14px;
  padding-inline-start: 22px;
}

.content-card li + li {
  margin-top: 8px;
}

.content-card ul li::marker,
.content-card ol li::marker {
  color: var(--accent);
  font-weight: 700;
}

.content-table-wrap {
  margin-top: 18px;
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.content-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: #262626;
}

.content-table th,
.content-table td {
  padding: 14px 16px;
  text-align: start;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.content-table th {
  background: linear-gradient(135deg, rgba(255, 194, 0, 0.18), rgba(255, 194, 0, 0.08));
  color: #fff;
  font-family: "Melbet Condensed", sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
}

.content-table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.015);
}

.article-image {
  margin: 20px auto 0;
  max-width: min(100%, 760px);
}

.article-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  border: 0;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.article-image figcaption {
  margin-top: 10px;
  color: var(--muted-soft);
  font-size: 0.96rem;
}

.error-layout {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 0;
}

.error-card {
  width: min(720px, calc(100vw - 32px));
  padding: clamp(30px, 5vw, 54px);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(40, 40, 40, 0.98), rgba(24, 24, 24, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  box-shadow: var(--shadow);
}

.error-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(245, 189, 54, 0.12);
  color: var(--accent);
  font-family: "Melbet Condensed", sans-serif;
  font-size: 2.4rem;
}

.error-card h1 {
  margin: 18px 0 10px;
  font-family: "Melbet Condensed", sans-serif;
  font-size: clamp(2.6rem, 2rem + 1vw, 4rem);
}

.error-card p {
  margin: 0 0 24px;
  color: #d5d5d5;
  line-height: 1.8;
}

.error-card__actions {
  justify-content: center;
}

@media (max-width: 1420px) {
  .game-grid--slots,
  .game-grid--live {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

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

  .footer-contact {
    grid-template-columns: 140px minmax(0, 1fr);
  }

  .footer-contact__support {
    grid-column: span 2;
  }
}

@media (max-width: 1180px) {
  .header-utility__inner,
  .header-nav__inner,
  .section-heading,
  .section-heading__title-group {
    flex-wrap: wrap;
  }

  .hero-slider__viewport {
    min-height: 290px;
  }

  .hero-slide__overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.84) 100%);
    align-items: flex-end;
  }

  .hero-slide__content {
    width: 100%;
    padding-bottom: 74px;
  }

  .category-grid,
  .game-grid--featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .game-grid--slots,
  .game-grid--live {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .top-events-panel {
    grid-template-columns: 1fr;
  }

  .top-events-panel__visual {
    min-height: 230px;
  }

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

  .payments-row {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }

  .legal-header__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .legal-header nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .legal-header nav::-webkit-scrollbar {
    display: none;
  }

  .legal-header nav a {
    white-space: nowrap;
  }

  .page-hero {
    padding: 28px 0 16px;
  }

  .page-hero__card,
  .content-card,
  .generic-footer__card {
    padding: 24px;
  }

  .page-hero p {
    font-size: 1.04rem;
  }

  .content-card h2 {
    font-size: 1.9rem;
  }

  .generic-footer__badges img {
    max-width: min(100%, 220px);
    height: auto;
  }
}

@media (max-width: 760px) {
  :root {
    --shell-width: calc(100vw - 20px);
  }

  .header-utility__group {
    width: 100%;
  }

  .main-navigation {
    width: 100%;
    order: 3;
  }

  .header-nav__actions {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-slider__viewport {
    min-height: 240px;
  }

  .hero-slide__content h1,
  .hero-slide__content h2 {
    font-size: 2.2rem;
  }

  .hero-slider__arrow {
    width: 40px;
    height: 48px;
  }

  .category-grid,
  .game-grid--featured,
  .game-grid--slots,
  .game-grid--live {
    grid-template-columns: 1fr;
  }

  .section-heading__title-group,
  .section-heading {
    align-items: flex-start;
  }

  .section-heading__controls {
    width: 100%;
  }

  .page-links-bar {
    padding: 12px 0 14px;
  }

  .page-links-bar__track {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .page-links-bar__track::-webkit-scrollbar {
    display: none;
  }

  .legal-header {
    padding: 12px 0;
  }

  .legal-header__inner {
    gap: 14px;
  }

  .legal-header nav {
    width: 100%;
  }

  .legal-header nav a {
    padding: 8px 12px;
  }

  .page-hero {
    padding: 22px 0 14px;
  }

  .page-hero__card,
  .content-card,
  .generic-footer__card {
    padding: 20px 18px;
    border-radius: 20px;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 1.55rem + 2vw, 2.6rem);
  }

  .page-hero p,
  .content-card p {
    font-size: 1rem;
    line-height: 1.74;
  }

  .toc {
    padding: 14px;
    border-radius: 16px;
  }

  .toc__toggle {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .content-grid {
    padding: 20px 0 30px;
  }

  .content-card h2 {
    font-size: 1.62rem;
    margin-bottom: 14px;
  }

  .styled-list li,
  .ordered-list li {
    padding: 14px 16px;
  }

  .ordered-list li {
    gap: 12px;
    grid-template-columns: 30px 1fr;
  }

  .ordered-list li::before {
    width: 30px;
    height: 30px;
    font-size: 0.92rem;
  }

  .generic-footer__nav {
    gap: 10px;
  }

  .generic-footer__nav a {
    width: 100%;
  }

  .error-card__actions {
    flex-direction: column;
    width: 100%;
  }

  .error-card__actions a {
    width: 100%;
  }

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

  .app-card__body {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .footer-contact__support {
    grid-column: auto;
  }

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

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

  .payments-row > .nav-arrow {
    display: none;
  }

  .back-to-top {
    inset-inline-start: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .content-table {
    min-width: 560px;
  }
}

@media (min-width: 960px) {
  .home-guide-card {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    align-items: center;
  }
}
