:root {
  /* ===== Base / Neutrals — FAV365 dark navy ===== */
  --color-bg: #0a1322;

  /* тексти */
  --color-text: #ffffff;
  --color-text-strong: #c8c8e0;
  --color-text-muted: #c8c8e0;
  --color-text-dim: rgba(255, 255, 255, 0.55);
  --color-text-subtle: rgba(255, 255, 255, 0.4);
  --color-text-accent: #f51b6e;

  --color-header: #0a1322e6;
  --color-footer: #0d0d1e;
  --color-sidebar-bg: #0d0d1e;

  --color-card-bg: rgba(255, 255, 255, 0.03);
  --color-card-border: rgba(255, 255, 255, 0.07);

  --color-surface: #131325;
  --color-surface-2: #1a1a2e;
  --color-bg-deep: #080810;

  --color-border-soft: rgba(255, 255, 255, 0.07);
  --color-border-softer: rgba(255, 255, 255, 0.04);
  --color-border-strong: rgba(255, 255, 255, 0.13);

  /* ===== Brand (FAV365 hot pink) ===== */
  --color-primary: #f51b6e;
  --color-primary-hover: #d8165f;
  --color-primary-active: #bb1150;
  --color-primary-pressed: #9e0e43;

  /* Secondary — синій акцент */
  --color-secondary: #1e6fff;
  --color-secondary-hover: #155fde;
  --color-secondary-active: #1050be;

  /* Links */
  --color-link: #f51b6e;
  --color-link-hover: #ff4d8a;

  /* Button text */
  --color-btn-text-dark: #ffffff;
  --color-btn-text-light: #ffffff;

  /* Gradients */
  --gradient-btn-primary: linear-gradient(135deg, #c8145a, #f51b6e 70%);
  --gradient-btn-secondary: linear-gradient(135deg, #155fde, #1e6fff 70%);

  /* ===== Hero glow ===== */
  --gradient-hero-left: radial-gradient(circle at top left, rgba(245, 27, 110, 0.16), transparent 55%);
  --gradient-hero-right: radial-gradient(circle at top right, rgba(30, 111, 255, 0.12), transparent 55%);

  /* ===== Sections ===== */
  --color-jackpot-bg1: #131325;
  --color-jackpot-bg2: #080810;
  --color-games-bg: rgba(13, 13, 30, 0.98);
  --color-games-thumb-bg: #131325;

  /* ===== Banner / slider dots ===== */
  --color-banner-bg: #0d0d1e;
  --color-banner-dot: rgba(20, 20, 50, 0.7);
  --color-banner-dot-border: rgba(255, 255, 255, 0.5);
  --color-banner-dot-active: #f51b6e;

  /* ===== Link underline gradient ===== */
  --color-link-underline-from: #c8145a;
  --color-link-underline-to: #f51b6e;

  /* ===== Accessibility ===== */
  --focus-ring: rgba(245, 27, 110, 0.4);
  --color-success: #22c55e;
  --color-error: #ef4444;
  --color-warning: #f51b6e;

  /* ===== Badge ===== */
  --color-badge-live: #e63946;
  --color-badge-fast: #f51b6e;
}

/* ====== RESET / БАЗА ====== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-bg);
  min-height: 100vh;
  position: relative;
  padding-bottom: 60px;
}

/* Посилання, кнопки */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

/* ====== ЛЕЙАУТ ====== */

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px;
}

.content {
  min-height: 60vh;
}

/* ====== КНОПКИ ====== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 15px;
  border: none;
  outline: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  background: var(--gradient-btn-primary);
  color: var(--color-btn-text-dark);
  text-decoration: none;
  transition: 0.2s all;
  white-space: nowrap;
  border: 1px solid #ffffff;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px 2px rgba(108, 108, 108, 0.4);
  background-color: var(--color-btn-text-light);
  color: var(--color-btn-text-dark);
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--color-btn-text-light);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.9);
  color: #ffffff;
  transform: none;
  box-shadow: none;
}

.btn--primary {
  background: var(--color-secondary);
  color: #ffffff;
  border: none;
}

.btn--primary:hover {
  background: var(--color-secondary-hover);
  box-shadow: 0 4px 14px rgba(30, 111, 255, 0.4);
  color: #ffffff;
  transform: translateY(-1px);
}

/* ====== ХЕДЕР ====== */

.header {
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(14px);
  background: var(--color-header);
  border-bottom: 1px solid var(--color-border-soft);
  overflow: visible;
}

.scrolled {
  position: fixed !important;
}

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

/* ЛОГО */

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-img {
  height: 40px;
  width: 100px;
  display: block;
  object-fit: contain;
}

/* КОНТЕЙНЕР МЕНЮ + КНОПОК (десктоп) */

.header-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 24px;
}

.main-nav__list {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav__item a {
  font-size: 14px;
  opacity: 0.84;
  position: relative;
  padding: 4px 0;
}

.main-nav__item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-link-underline-from), var(--color-link-underline-to));
  transition: width 0.18s ease;
}

.main-nav__item a:hover::after,
.main-nav__item a.active::after {
  width: 100%;
}

/* КНОПКИ У ХЕДЕРІ (праворуч) */

.auth {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.auth a {
  font-size: 14px;
}

/* ПЕРЕМИКАЧ МОВИ — DROPDOWN (хедер) */

.lang-dropdown {
  position: relative;
}

.lang-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border-soft);
  border-radius: 10px;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.15s,
    border-color 0.15s;
  white-space: nowrap;
  line-height: 1;
}

.lang-dropdown__toggle:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.15);
}

.lang-dropdown__chevron {
  color: var(--color-text-dim);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.lang-dropdown.is-open .lang-dropdown__chevron {
  transform: rotate(180deg);
}

.lang-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    opacity 0.15s ease,
    transform 0.15s ease;
  z-index: 500;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.lang-dropdown.is-open .lang-dropdown__menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.lang-dropdown__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-dim);
  text-decoration: none;
  transition:
    background 0.12s,
    color 0.12s;
}

.lang-dropdown__item + .lang-dropdown__item {
  border-top: 1px solid var(--color-border-soft);
}

.lang-dropdown__item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text);
  text-decoration: none;
}

.lang-dropdown__item.is-active {
  color: var(--color-primary);
  background: rgba(245, 27, 110, 0.07);
}

.lang-dropdown__flag {
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

/* ПЕРЕМИКАЧ МОВИ — SIDEBAR */

.lang-switcher__flag {
  font-size: 14px;
  line-height: 1;
}

/* БУРГЕР */

.header-burger {
  display: none;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.header-burger span,
.header-burger span::before,
.header-burger span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-text-strong);
  position: relative;
  transition:
    transform 0.18s ease,
    opacity 0.18s ease,
    top 0.18s ease,
    bottom 0.18s ease;
}

.header-burger span::before,
.header-burger span::after {
  content: "";
  position: absolute;
}

.header-burger span::before {
  top: -5px;
}

.header-burger span::after {
  bottom: -5px;
}

.header-burger.active span {
  transform: rotate(45deg);
}

.header-burger.active span::before {
  top: 0;
  transform: rotate(-90deg);
}

.header-burger.active span::after {
  bottom: 0;
  opacity: 0;
}

/* ====== МОБІЛЬНИЙ ХЕДЕР ====== */

@media (max-width: 768px) {
  .header__inner {
    padding: 10px 12px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 8px;
  }

  body {
    padding-bottom: 240px;
  }

  .logo-img {
    height: 40px;
  }

  .header-burger {
    display: inline-flex;
    justify-self: center;
  }

  .auth {
    justify-self: end;
    display: flex;
    flex-direction: row;
    gap: 8px;
  }

  .auth .btn {
    padding-inline: 14px;
    white-space: nowrap;
  }

  .header-menu {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--color-header);
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.2s ease,
      opacity 0.2s ease;
    z-index: 40;
  }

  .header-menu.header-menu--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ====== HERO ====== */

.hero {
  padding: 40px 0 32px;
  background: var(--gradient-hero-left), var(--gradient-hero-right);
}

.hero .container {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 32px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero p {
  font-size: 15px;
  max-width: 520px;
  color: rgba(245, 245, 247, 0.88);
  margin-bottom: 20px;
}

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

.hero-side {
  justify-self: end;
}

.jackpot-widget {
  min-width: 260px;
  max-width: 320px;
  padding: 16px 18px;
  border-radius: 18px;
  background: radial-gradient(circle at top, var(--color-jackpot-bg1), var(--color-jackpot-bg2));
  border: 1px solid var(--color-border-soft);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
}

.jackpot-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.7;
  margin-bottom: 10px;
}

.jackpot-amount {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.jackpot-timer {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 14px;
}

/* ====== СЕКЦІЇ ====== */

section {
  padding: 32px 0;
}

section h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

section p {
  font-size: 14px;
  color: rgba(245, 245, 247, 0.9);
}

/* ====== ПРОМО-КАРТКИ ====== */

.promos .promo-list {
  margin-top: 16px;
  display: grid;
  gap: 16px;
}

.promo-card {
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
}

.promo-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.promo-card p {
  font-size: 14px;
  margin-bottom: 10px;
}

/* ====== ІГРИ / СІТКА ====== */

.games {
  border-top: 1px solid var(--color-border-softer);
}

.games-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.games-header a {
  font-size: 13px;
  opacity: 0.8;
}

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

.game-card {
  background: var(--color-games-bg);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--color-border-softer);
  display: flex;
  flex-direction: column;
  min-height: 190px;
}

.game-thumb {
  position: relative;
  padding-top: 62%;
  overflow: hidden;
  background: var(--color-games-thumb-bg);
}

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

.game-body {
  padding: 10px 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.game-name {
  font-size: 14px;
  font-weight: 600;
}

.game-actions {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}

/* ====== КОНТЕНТНІ СТОРІНКИ ====== */

.page-content {
  padding-bottom: 32px;
  padding-top: 32px;
  margin-top: 0;
}

.page-content h1 {
  font-size: 28px;
  margin-bottom: 14px;
}

.page-content p + p {
  margin-top: 10px;
}

/* ===== ФУТЕР ===== */

html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

.footer {
  flex-shrink: 0;
  background:
    linear-gradient(180deg, rgba(17, 29, 50, 0.62), rgba(10, 19, 34, 0.96)),
    radial-gradient(circle at top left, rgba(108, 181, 255, 0.07), transparent 24%);
  padding: 20px 0;
  margin-top: 40px;
  border-top: 1px solid var(--color-border-soft);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 16px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.footer__inner p {
  font-size: 13px;
  color: var(--color-text-dim);
  margin: 0;
  max-width: 500px;
  line-height: 1.55;
}

.footer__links {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.footer__col {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__col li + li {
  margin-top: 6px;
}

.footer__col a {
  font-size: 13px;
  color: var(--color-text-dim);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__col a:hover {
  color: var(--color-secondary);
  text-decoration: none;
}

@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer__links {
    flex-direction: column;
    gap: 16px;
  }

  .footer__inner p {
    max-width: 100%;
  }
}

/* ====== ОБГОРТКА БАНЕРА ====== */

.banner-carousel-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto 0;
}

/* ===== БАНЕР ===== */

.banner-carousel {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 360px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--color-banner-bg);
}

.banner-carousel__viewport {
  position: absolute;
  inset: 0;
}

.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(12px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
  pointer-events: none;
}

.banner-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.banner-slide__image {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
}

.banner-slide__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-slide__content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  text-align: left;
  margin-left: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.banner-slide__content p {
  color: #efefef;
}

.banner-slide__content h1 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}

.banner-slide__content p {
  font-size: 16px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}

.banner-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.banner-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--color-banner-dot-border);
  background: var(--color-banner-dot);
  cursor: pointer;
  transition: all 0.2s ease;
}

.banner-dot.is-active {
  background: var(--color-banner-dot-active);
  border-color: var(--color-text-strong);
  transform: scale(1.15);
}

.banner-slide__image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.1) 100%);
}

@media (max-width: 600px) {
  .banner-slide__content .btn {
    width: auto;
    max-width: 100%;
    display: inline-flex;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .banner-slide__content .btn {
    width: auto;
    max-width: 100%;
  }
}

.page-text,
.content-box {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--color-text-dim);
  font-size: 16px;
  line-height: 1.65;
}

.content-box > ol li,
.content-box > ul li {
  margin-left: 15px;
}

.page-text h1,
.content-box h1,
.page-text h2,
.content-box h2,
.page-text h3,
.content-box h3 {
  font-weight: 700;
  line-height: 1.25;
  margin: 28px 0 12px;
  color: var(--color-text);
}

.page-text h1,
.content-box h1 {
  font-size: 26px;
  margin-top: 0;
}

.page-text h2,
.content-box h2 {
  font-size: 20px;
  margin-top: 0;
}

.page-text h3,
.content-box h3 {
  font-size: 17px;
}

.page-text p,
.content-box p {
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--color-text-dim);
}

.page-text ul,
.content-box ul {
  list-style: none;
  margin: 10px 0 20px 0;
  padding-left: 0;
}

.page-text ul li,
.content-box ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--color-text-dim);
}

.page-text ul li::before,
.content-box ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

.content-box {
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

/* ====== АДАПТИВ ====== */

@media (max-width: 960px) {
  .hero .container {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-side {
    justify-self: start;
  }

  .main-nav__list {
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .header__inner {
    padding-inline: 12px;
  }

  .logo-img {
    height: 40px;
  }

  .header-menu {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--color-header);
    padding: 0 16px 16px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.2s ease,
      opacity 0.2s ease;
    z-index: 40;
  }

  .header-menu.header-menu--open {
    transform: translateY(16px);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .auth {
    display: flex;
    flex-direction: row;
    gap: 8px;
    width: 100%;
  }

  .auth .btn {
    flex: 1;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .banner-carousel-wrapper {
    padding: 0 12px;
  }

  .banner-carousel {
    width: 100%;
    height: 260px;
    border-radius: 12px;
  }

  .banner-slide__content {
    margin-left: 16px;
    margin-right: 16px;
    max-width: none;
    top: 50%;
    transform: translateY(-50%);
  }

  .banner-slide__content h1 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .banner-slide__content p {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .btn--primary {
    display: inline-block;
    padding: 8px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 26px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero .hero-actions {
    flex-direction: column;
  }

  .game-card {
    min-height: 170px;
  }
}

/* ===== FAQ ===== */

.faq {
  position: relative;
}

.faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(30, 111, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.faq__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
  color: var(--color-text);
  -webkit-text-fill-color: unset;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 auto;
}

.faq__item {
  background: linear-gradient(180deg, rgba(17, 29, 50, 0.96), rgba(10, 19, 34, 0.98));
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-card-border);
  position: relative;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.faq__item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-secondary);
  border-radius: 16px 0 0 16px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.faq__item:hover::after,
.faq__item.open::after {
  opacity: 1;
}

.faq__item:hover {
  border-color: rgba(30, 111, 255, 0.4);
}

.faq__item.open {
  background: linear-gradient(180deg, rgba(17, 29, 50, 0.96), rgba(10, 19, 34, 0.98));
  border-color: rgba(30, 111, 255, 0.55);
  box-shadow: 0 4px 28px rgba(30, 111, 255, 0.12);
}

.faq__question {
  width: 100%;
  padding: 22px 24px 22px 28px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  color: var(--color-text);
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.faq__question:hover {
  background: rgba(30, 111, 255, 0.06);
}

.faq__item.open .faq__question {
  color: var(--color-secondary);
}

.faq__answer {
  overflow: hidden;
  padding: 0 24px 0 28px;
  transition:
    height 0.35s ease,
    padding 0.35s ease;
}

.faq__item.open .faq__answer {
  padding: 0 24px 24px 28px;
}

.faq__answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-dim) !important;
  border-top: 1px solid var(--color-border-soft);
  padding: 16px 0;
  margin: 0;
}

.faq__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(30, 111, 255, 0.1);
  border: 1px solid rgba(30, 111, 255, 0.3);
  position: relative;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.faq__item:hover .faq__icon {
  border-color: rgba(30, 111, 255, 0.55);
  box-shadow: 0 0 8px rgba(30, 111, 255, 0.2);
}

.faq__item.open .faq__icon {
  background: var(--color-secondary);
  border-color: transparent;
  box-shadow: 0 0 14px rgba(30, 111, 255, 0.45);
}

.faq__icon::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-right: 2.5px solid var(--color-secondary);
  border-bottom: 2.5px solid var(--color-secondary);
  top: 50%;
  left: 50%;
  border-radius: 1px;
  transform: translate(-50%, -68%) rotate(45deg);
  transition:
    transform 0.3s ease,
    border-color 0.25s ease;
}

.faq__icon::after {
  display: none;
}

.faq__item.open .faq__icon::before {
  transform: translate(-50%, -32%) rotate(-135deg);
  border-color: #fff;
}

@media (max-width: 900px) {
  .faq__list {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .faq__title {
    font-size: 22px;
  }

  .faq__question {
    padding: 18px 18px 18px 22px;
    font-size: 15px;
  }

  .faq__answer {
    padding: 0 18px 0 22px;
  }

  .faq__item.open .faq__answer {
    padding: 0 18px 20px 22px;
  }

  .faq__answer p {
    font-size: 14px;
  }
}

/* ===== ПОПУЛЯРНІ ІГРИ ===== */

.popular-games {
  padding: 0 16px 20px 16px;
}

.popular-games__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
}

.popular-games__all {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--color-text-dim);
  text-decoration: none;
  transition: color 0.15s ease;
}

.popular-games__all:hover {
  color: var(--color-text);
  text-decoration: none;
}

.popular-games__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.pg-card {
  display: block;
  text-decoration: none;
  border-radius: 14px;
  overflow: hidden;
}

.pg-card__thumb {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  transition:
    transform 0.22s ease,
    filter 0.22s ease;
  background: #131325;
}

.pg-card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pg-card:hover .pg-card__thumb {
  transform: scale(1.04);
  filter: brightness(1.1);
}

.pg-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 7px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
}

.pg-card__badge--hot {
  background: #e53935;
  color: #fff;
}
.pg-card__badge--new {
  background: var(--color-secondary);
  color: #fff;
}
.pg-card__badge--top {
  background: #f59e0b;
  color: #fff;
}

.pg-card__name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 10px 10px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .popular-games__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 600px) {
  .popular-games__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .popular-games__title {
    font-size: 17px;
  }
}

@media (max-width: 400px) {
  .popular-games__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== ВІДГУКИ ===== */

.reviews {
  padding: 32px 0 40px;
}

.reviews__title {
  font-size: 24px;
  margin-bottom: 18px;
  color: var(--color-text-strong);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.review-card {
  position: relative;
  padding: 18px 20px 20px;
  border-radius: 18px;
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.review-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-primary);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  border-color: rgba(1, 255, 0, 0.5);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.review-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.review-card__name {
  font-weight: 700;
  font-size: 15px;
  color: var(--color-text-strong);
}

.review-card__meta {
  font-size: 12px;
  opacity: 0.75;
}

.review-card__text {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(245, 245, 247, 0.94);
}

@media (max-width: 600px) {
  .reviews__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .review-card {
    padding: 16px 16px 18px;
  }

  .review-card__text {
    font-size: 13px;
  }
}

.img-center {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.img-center img {
  max-width: 100%;
  height: auto;
  display: block;
}

.content-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--gradient-btn-primary);
  color: var(--color-btn-text-dark);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.content-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
  text-decoration: none;
}

.content-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.center-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.faq__question > h3 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  flex: 1;
}

table {
  display: block !important;
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  margin-bottom: 30px;
  border: 1px solid var(--color-border-soft);
  border-radius: 10px;
  overflow: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

thead,
tbody {
  display: flex;
  flex-direction: column;
  width: 100%;
}

tr {
  display: flex;
  width: 100%;
}

tr:last-child td {
  border-bottom: none;
}

tr:nth-child(even) td {
  background-color: var(--color-surface-2);
}

table th,
table td {
  display: flex;
  width: 100%;
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border-soft);
  font-size: 14px;
  color: var(--color-text-dim);
  white-space: normal;
  word-wrap: break-word;
  word-break: break-word;
  box-sizing: border-box;
  min-width: 110px;
  background-color: var(--color-surface);
}

table td:last-child {
  color: var(--color-text);
  font-weight: 500;
}

table thead th {
  background-color: var(--color-surface-2);
  color: var(--color-text);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.content-box > a > img {
  margin: 20px auto;
}

.banner-slide__content > .banner-slide__title {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 700;
}

.footer__navigation {
  width: 100%;
  padding: 0 16px;
  margin-bottom: 16px;
}

.footer__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.footer__item {
  padding: 0;
  background: none;
  margin: 0;
}

.footer__item::before {
  display: none;
}

.footer__link {
  font-size: 13px;
  color: var(--color-text-dim);
  text-decoration: none;
  transition: color 0.15s ease;
  white-space: nowrap;
}

.footer__link:hover {
  color: var(--color-secondary);
  text-decoration: none;
}

.footer__bottom {
  width: 100%;
  padding: 0 16px;
  border-top: 1px solid var(--color-border-soft);
  padding-top: 16px;
  margin-top: 8px;
}

.footer__disclaimer {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: 12px;
  color: var(--color-text-subtle);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .footer__list {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer__disclaimer {
    font-size: 11px;
  }
}

/* ==============================================
   SIDEBAR
   ============================================== */

:root {
  --header-height: 64px;
  --sidebar-width: 200px;
  --sidebar-collapsed-width: 64px;
  --sidebar-bg: var(--color-sidebar-bg);
  --sidebar-border: rgba(255, 255, 255, 0.06);
  --sidebar-item-color: #8a93a6;
  --sidebar-item-hover: #ffffff;
  --sidebar-item-active: var(--color-primary);
  --sidebar-item-active-bg: rgba(1, 255, 0, 0.08);
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  height: var(--header-height);
  background: var(--color-header);
  border-bottom: 1px solid var(--color-border-soft);
}

.header__inner {
  height: 100%;
  max-width: 100%;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-burger {
  display: none;
  width: 38px;
  height: 38px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.header-burger:hover {
  background: rgba(255, 255, 255, 0.06);
}

.layout {
  display: flex;
  padding-left: var(--sidebar-width);
  transition: padding-left 0.25s ease;
  flex: 1 0 auto;
  width: 100%;
  height: 100%;
  flex-direction: column;
  background: var(--color-bg);
}

body.sidebar-collapsed .layout {
  padding-left: var(--sidebar-collapsed-width);
}

.layout main {
  flex: 1 0 auto;
}

.sidebar {
  position: fixed;
  top: var(--header-height);
  left: 0;
  bottom: 0;
  width: var(--sidebar-width);
  background: var(--sidebar-bg);
  border-right: 1px solid var(--sidebar-border);
  z-index: 50;
  display: flex;
  flex-direction: column;
  padding: 14px 10px 60px;
  overflow-y: auto;
  overflow-x: hidden;
  transition:
    width 0.25s ease,
    transform 0.25s ease;
}

body.sidebar-collapsed .sidebar {
  width: var(--sidebar-collapsed-width);
}

body.sidebar-collapsed .sidebar__title {
  opacity: 0;
  width: 0;
  overflow: hidden;
  white-space: nowrap;
}

body.sidebar-collapsed .sidebar__link {
  justify-content: center;
  padding: 10px 8px;
}

body.sidebar-collapsed .sidebar__collapse svg {
  transform: rotate(180deg);
}

.sidebar__nav {
  flex: 1;
}

.sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar__item {
  position: relative;
}

.sidebar__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  color: var(--sidebar-item-color);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition:
    background 0.15s ease,
    color 0.15s ease;
  white-space: nowrap;
}

.sidebar__link:hover {
  color: var(--sidebar-item-hover);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
}

.sidebar__item.is-active .sidebar__link {
  color: var(--sidebar-item-active);
  background: var(--sidebar-item-active-bg);
}

.sidebar__item.is-active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--sidebar-item-active);
}

.sidebar__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar__icon svg {
  width: 100%;
  height: 100%;
}

.sidebar__title {
  transition: opacity 0.2s ease;
}

.sidebar__lang {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 16px;
  border-top: 1px solid var(--color-border-soft);
  margin-top: auto;
}

.sidebar__lang .lang-switcher {
  width: 100%;
  justify-content: center;
}

.sidebar__lang-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--color-text-dim);
  text-decoration: none;
  transition:
    color 0.15s,
    background 0.15s;
  line-height: 1;
}

.sidebar__lang-item:hover {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.07);
  text-decoration: none;
}

.sidebar__lang-item.is-active {
  color: #fff;
  background: var(--color-primary);
}

.sidebar__collapse {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 12px;
  height: 34px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--sidebar-border);
  border-radius: 10px;
  color: var(--sidebar-item-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.sidebar__collapse:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--sidebar-item-hover);
}

.sidebar__collapse svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.sidebar__close {
  display: none;
  position: absolute;
  top: 8px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.sidebar__overlay {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 45;
  opacity: 0;
  transition: opacity 0.2s ease;
}

body.sidebar-mobile-open .sidebar__overlay {
  display: block;
  opacity: 1;
}

@media (max-width: 960px) {
  .layout {
    padding-left: 0;
  }

  .sidebar {
    transform: translateX(-100%);
    width: 260px;
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.6);
  }

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

  .sidebar__close {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sidebar__collapse {
    display: none;
  }

  .sidebar__title {
    display: inline-block !important;
    opacity: 1 !important;
    width: auto !important;
  }

  .sidebar__link {
    padding: 12px 14px;
    font-size: 14px;
  }

  .header-burger {
    display: inline-flex;
  }

  body.sidebar-collapsed .layout {
    padding-left: 0;
  }

  body.sidebar-collapsed .sidebar {
    width: 260px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 56px;
  }

  .header__inner {
    padding: 10px 12px;
    gap: 8px;
  }

  .logo-img {
    height: 36px;
  }

  .auth .btn {
    padding: 8px 14px;
    font-size: 13px;
  }
}

/* ==============================================
   LIVE-CASINO
   ============================================== */

.live-casino-section {
  padding: 24px 0 40px;
}

.live-casino-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.live-casino-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.live-casino-header h1 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.live-casino-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.live-casino-tile {
  background: var(--color-surface);
  border-radius: 10px;
  border: 1px solid var(--color-border-softer);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.live-casino-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(1, 255, 0, 0.3);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  text-decoration: none;
}

.live-casino-tile__image {
  position: relative;
  aspect-ratio: 4 / 4;
  overflow: hidden;
  background: radial-gradient(ellipse at top, var(--color-surface-2) 0%, var(--color-bg-deep) 70%);
}

.live-casino-tile__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.3s ease,
    filter 0.2s ease;
}

.live-casino-tile:hover .live-casino-tile__image img {
  transform: scale(1.05);
  filter: blur(2px) brightness(0.55);
}

.live-casino-tile__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  z-index: 3;
}

.live-casino-tile:hover .live-casino-tile__overlay {
  opacity: 1;
}

.live-casino-tile__play {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-btn-text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.55),
    0 0 0 6px rgba(1, 255, 0, 0.18);
  transform: scale(0.85);
  transition: transform 0.2s ease;
}

.live-casino-tile:hover .live-casino-tile__play {
  transform: scale(1);
}

.live-casino-tile__play svg {
  width: 22px;
  height: 22px;
  margin-left: 2px;
}

.live-casino-tile__meta {
  padding: 10px 12px 12px;
  background: var(--color-surface-2);
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-top: 1px solid var(--color-border-softer);
}

.live-casino-tile__provider {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-casino-tile__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-casino-tile__stake {
  font-size: 11px;
  font-weight: 500;
  color: var(--color-text-dim);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-casino-tile__badge {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 2px 7px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: var(--color-badge-live);
  color: #fff;
  border-radius: 3px;
  text-transform: uppercase;
  line-height: 1.3;
  z-index: 2;
}

.live-casino-tile__badge--fast {
  background: var(--color-badge-fast);
  color: var(--color-btn-text-dark);
}

@media (max-width: 1100px) {
  .live-casino-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .live-casino-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .live-casino-tile__provider {
    font-size: 9px;
  }
  .live-casino-tile__name {
    font-size: 12px;
  }
  .live-casino-tile__stake {
    font-size: 10px;
  }
  .live-casino-tile__meta {
    padding: 8px 10px 10px;
  }
}

@media (max-width: 420px) {
  .live-casino-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==============================================
   PROMOTIONS
   ============================================== */

.promotions-section {
  padding: 24px 0 40px;
}

.promotions-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.promotions-header {
  margin-bottom: 20px;
}

.promotions-header h1 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}

.promotions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.promo-banner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.promo-banner__link {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--color-border-soft);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
  background: var(--color-surface);
}

.promo-banner__link:hover {
  transform: translateY(-4px);
  border-color: rgba(1, 255, 0, 0.4);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55);
  text-decoration: none;
}

.promo-banner__image {
  position: relative;
  aspect-ratio: 1920 / 757;
  background: linear-gradient(135deg, var(--color-surface-2), var(--color-bg-deep));
  overflow: hidden;
}

.promo-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.promo-banner__link:hover .promo-banner__image img {
  transform: scale(1.03);
}

.promo-banner__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.15), transparent 60%),
    radial-gradient(circle at 15% 90%, rgba(0, 0, 0, 0.35), transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.promo-banner__svg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.promo-banner__svg svg {
  width: 100%;
  height: 100%;
  display: block;
}

.promo-banner__text {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 55%;
  color: #fff;
  pointer-events: none;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.promo-banner__title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--color-primary);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  margin-bottom: 2px;
}

.promo-banner__sub {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 10px;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.promo-banner__amount {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.promo-banner__extra {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 2px;
  line-height: 1.1;
}

.promo-banner__footer {
  background: var(--color-bg-deep);
  padding: 10px 16px;
  text-align: center;
}

.promo-banner__dates {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  display: inline-block;
  border: 1px solid var(--color-border-soft);
  letter-spacing: 0.02em;
}

.promo-banner__note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  padding: 0 4px;
  line-height: 1.3;
}

@media (max-width: 1100px) {
  .promo-banner__title {
    font-size: 20px;
  }
  .promo-banner__amount {
    font-size: 18px;
  }
  .promo-banner__sub {
    font-size: 13px;
  }
}

@media (max-width: 900px) {
  .promotions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .promotions-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .promo-banner__title {
    font-size: 26px;
  }
  .promo-banner__amount {
    font-size: 20px;
  }
}

.header__right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

/* ====== HERO BANNER (головна) ====== */
.hero-banner {
  position: relative;
  margin: 16px 16px 0;
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
}
.hero-banner__bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}
.hero-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 0, 26, 0.92) 0%, rgba(26, 0, 50, 0.75) 35%, rgba(26, 0, 50, 0.4) 60%, rgba(26, 0, 50, 0.1) 100%);
  z-index: 2;
}
.hero-banner__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 48px 56px;
  display: flex;
  align-items: center;
}
.hero-banner__content {
  max-width: 480px;
}
.hero-banner__title {
  color: #fff;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.hero-banner__subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  margin: 0 0 28px;
}
.hero-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  background: var(--color-secondary);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
  border-radius: 12px;
  transition:
    transform 0.18s,
    box-shadow 0.18s;
  white-space: nowrap;
}
.hero-banner__btn:hover {
  background: var(--color-secondary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30, 111, 255, 0.4);
  text-decoration: none;
}

/* ====== CATEGORY FILTERS (chips під банером) ====== */
.category-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 16px 24px;
  margin: 0;
}

.category-filters__nav,
.category-filters__search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: 999px;
  color: var(--color-text);
  cursor: pointer;
  transition:
    background 0.15s,
    border-color 0.15s;
  padding: 0;
}

.category-filters__nav:hover,
.category-filters__search:hover {
  background: rgba(245, 27, 110, 0.12);
  border-color: rgba(245, 27, 110, 0.5);
  color: var(--color-primary);
}

.category-filters__scroll {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1 1 auto;
  min-width: 0;
}

.category-filters__scroll::-webkit-scrollbar {
  display: none;
}

.category-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  height: 36px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: 999px;
  color: #9eb0ca;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.15s,
    border-color 0.15s,
    color 0.15s;
  flex: 0 0 auto;
  box-sizing: border-box;
}

.category-chip:hover {
  background: rgba(245, 27, 110, 0.1);
  border-color: rgba(245, 27, 110, 0.4);
  color: var(--color-primary);
  text-decoration: none;
}

.category-chip.is-active {
  background: rgba(245, 27, 110, 0.18);
  border-color: rgba(245, 27, 110, 0.6);
  color: var(--color-primary);
}

.category-chip__live {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-badge-live);
  box-shadow: 0 0 6px rgba(230, 57, 70, 0.6);
  flex-shrink: 0;
  display: inline-block;
}

@media (max-width: 768px) {
  .hero-banner {
    margin: 12px 12px 0;
    min-height: 220px;
    border-radius: 14px;
  }
  .hero-banner__inner {
    padding: 28px 24px;
  }
  .hero-banner__title {
    font-size: 26px;
  }
  .hero-banner__subtitle {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .hero-banner__btn {
    padding: 11px 24px;
    font-size: 14px;
  }

  .category-filters {
    padding: 14px 12px 6px;
    gap: 8px;
  }
  .category-filters__nav,
  .category-filters__search {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }
  .category-chip {
    padding: 8px 14px;
    height: 34px;
    font-size: 12px;
  }
}
/* ====== END HERO + CATEGORIES ====== */

/* ==============================================
   PAGE CONTAINER (1440px) + HEADER NAV + ADAPTIVE SIDEBAR
   ============================================== */

/* --- 1440px container: header, main, footer inner blocks --- */
.header__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.content {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.footer__navigation,
.footer__bottom {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Layout: відмовляємось від резерву під фіксований сайдбар --- */
.layout,
body.sidebar-collapsed .layout {
  padding-left: 0;
}

/* --- Sidebar: off-canvas на ВСІХ розмірах, відкривається лише бургером --- */
.sidebar {
  transform: translateX(-100%);
  width: 280px;
  box-shadow: 4px 0 30px rgba(0, 0, 0, 0.6);
}

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

/* Кнопка згортання сайдбару більше не потрібна */
.sidebar__collapse {
  display: none !important;
}

/* Кнопка закриття всередині сайдбару — показуємо завжди */
.sidebar__close {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Заголовки пунктів сайдбару — завжди видимі */
.sidebar__title {
  opacity: 1 !important;
  width: auto !important;
  overflow: visible;
}

.sidebar__link {
  justify-content: flex-start;
  padding: 12px 14px;
}

/* --- Горизонтальне меню в хедері (desktop) --- */
.header-nav {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: center;
}

.header-nav__list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: 100%;
}

.header-nav__list::-webkit-scrollbar {
  display: none;
}

.header-nav__item {
  flex: 0 0 auto;
}

.header-nav__link {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 10px;
  color: var(--color-text-dim);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition:
    color 0.15s ease,
    background 0.15s ease;
}

.header-nav__link:hover {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
}

.header-nav__item.is-active .header-nav__link {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 600;
}

/* --- Адаптивність: ≤960px — горизонтальне меню ховаємо, бургер показуємо --- */
@media (max-width: 960px) {
  .header-nav {
    display: none;
  }

  .header-burger {
    display: inline-flex;
  }

  .lang-dropdown {
    display: none;
  }
}

/* --- ≥961px — бургер ховаємо, нав в хедері видно --- */
@media (min-width: 961px) {
  .header-burger {
    display: none;
  }
}

/* --- Менший паддінг хедеру на середніх ширинах --- */
@media (max-width: 1200px) {
  .header__inner {
    padding-left: 16px;
    padding-right: 16px;
    gap: 12px;
  }
  .header-nav__link {
    padding: 8px 10px;
    font-size: 12px;
  }
}
