*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: var(--color-accent);
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

:root {
  --text-primary: #ffffff;
  --text-link: #ffffff;

  --font-primary: 'Cairo', 'Inter', sans-serif;

  --bg-primary: #02261a;
  --bg-secondary: #013b25;
  --bg-card: #013b25;
  --bg-card-alt: #024a2f;
  --header-bg: #02311f;
  --footer-bg: #02311f;
  --hero-bg: #01140e;

  --color-primary-btn: #6fec42;
  --color-primary-btn-hover: #8af55f;
  --color-primary-btn-text: #011910;
  --color-secondary-btn: #023b25;
  --color-secondary-btn-hover: #035232;

  --color-accent: #6fec42;
  --color-accent-hover: #8af55f;
  --color-accent-alt: #6fec42;
  --color-accent-muted: rgba(111, 236, 66, 0.14);
  --color-accent-border: rgba(111, 236, 66, 0.35);

  --text-link-after: var(--color-accent);

  --color-green-btn: var(--color-primary-btn);
  --color-green-btn-hover: var(--color-primary-btn-hover);
  --color-blue-btn: var(--color-secondary-btn);
  --color-blue-btn-hover: var(--color-secondary-btn-hover);
  --color-white: #fff;
  --color-blue: var(--color-accent);

  --main-accent-bg-color: var(--color-primary-btn);

  --table-bg: #013b25;
  --table-border: rgba(111, 236, 66, 0.25);

  --shadow-primary: rgba(111, 236, 66, 0.35);
  --shadow-primary-strong: rgba(111, 236, 66, 0.45);

  --header-offset: 68px;
}

html,
body {
  height: 100%;
  line-height: 1;
  font-size: 16px;
  color: var(--color-white);
  font-weight: 400;
  font-family: var(--font-primary);
  font-feature-settings: "pnum" on, "lnum" on;
  background: var(--bg-primary);
  position: relative;
}

html {
  scroll-behavior: smooth;
}

/* ---------------------------------------- */

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

._container {
  max-width: 1410px;
  padding: 0px 15px;
  margin: 0 auto;
  box-sizing: content-box;
}




.header {
  background: var(--header-bg);
}

.header__container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.header__body {
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  text-align: center;
  position: relative;
}

@media (max-width: 1243px) {
  .header__body {
    flex-wrap: wrap;
    text-align: center;
  }
  .header__actions {
    align-items: center;
    justify-content: center;
  }
}

.header__logo-img {
  max-height: 34px;
  height: auto;
  width: auto;
  object-fit: contain;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__list {
  display: flex;
  height: 100%;
  list-style: none;
  gap: 16px;
  align-items: center;
}

.header__link {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  height: 100%;
  padding-bottom: 4px;
}

.header__link::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--text-link-after);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 250ms ease-in-out;
}



.header__actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Primary — تنزيل */
.header__app {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 12px;
  background: var(--color-primary-btn);
  color: var(--color-primary-btn-text);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  box-shadow: 0 4px 12px var(--shadow-primary);
  transition: all 0.2s ease;
}

.header__app:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px var(--shadow-primary-strong);
  background: var(--color-primary-btn-hover);
}

.header__app:active {
  transform: translateY(0);
}


/* Secondary — دخول */
.header__login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 12px;
  background: var(--color-secondary-btn);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
}

.header__login:hover {
  background: var(--color-secondary-btn-hover);
}


/* Primary — تسجيل */
.header__sign {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 12px;
  background: var(--color-primary-btn);
  color: var(--color-primary-btn-text);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.2s ease;
}

.header__sign:hover {
  background: var(--color-primary-btn-hover);
}




/* Breadcrumbs */

.breadcrumbs {
  padding: 0.5rem 0;
  background: var(--header-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Убирает чёрную полосу body между fixed-header и крошками */
.header + .breadcrumbs {
  margin-top: calc(-1 * var(--header-offset));
  padding-top: calc(var(--header-offset) + 0.5rem);
}

.breadcrumbs__list {
  list-style: none;
  margin: 0;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
}

.breadcrumbs__item {
  display: inline-flex;
  align-items: center;
}

.breadcrumbs__current,
.breadcrumbs__link {
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}

.breadcrumbs__link:hover {
  color: var(--color-accent);
}

.breadcrumbs__separator {
  color: rgba(255, 255, 255, 0.45);
  user-select: none;
}

.breadcrumbs__current {
  color: var(--color-accent);
  font-weight: 600;
}

/*       Hero        */

.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: var(--hero-bg);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(111, 236, 66, 0.08) 0%, transparent 55%),
    radial-gradient(80% 70% at 0% 20%, rgba(111, 236, 66, 0.04) 0%, transparent 60%);
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
}

.hero__content {
  max-width: 670px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.hero__title {
  font-size: 34px;
  line-height: 1.35;
  font-weight: 700;
}

.hero__text {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
}

.hero__image {
  max-width: 670px;
  width: 100%;
  text-align: center;
}

.hero__img {
  display: block;
  max-width: 600px;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .hero__content {
    max-width: 100%;
  }
  .hero__image {
    display: none;
  }
}

@media (max-width: 500px) {
  .hero__image {
    display: none;
  }
}

/* Hero promo block */
.mp-promocode {
  background: linear-gradient(160deg, var(--bg-card-alt) 0%, var(--bg-card) 55%, var(--bg-primary) 100%);
  border-radius: 12px;
  padding: 24px 18px 22px;
  max-width: 700px;
  box-sizing: border-box;
  color: #ffffff;
  border: 1.25px solid var(--color-accent-border);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.mp-promocode__title {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 14px;
}

.mp-promocode__specs {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  column-gap: 60px;
  list-style: none;
  padding: 0;
  max-width: 430px;
  margin: 0 auto 22px;
  border-bottom: 1px solid var(--color-accent-border);
  padding-bottom: 14px;
}

.mp-promocode__specs-item {
  text-align: center;
}

.mp-promocode .btn--green svg path,
.header__app svg path,
.header__sign svg path,
.columns__download svg path,
.mobile-button__link svg path {
  fill: currentColor;
}

.mp-promocode__specs-value {
  display: block;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 4px;
  direction: ltr;
  color: var(--color-accent);
}

.mp-promocode__specs-name {
  display: block;
  font-size: 11px;
  line-height: 1.3;
  opacity: 0.7;
}

.mp-promocode__buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.mp-promocode .btn--green,
.mp-promocode__link.btn--green,
.mp-promocode a.mp-promocode__link,
.mp-promocode .btn--secondary,
.mp-promocode__link.btn--secondary {
  flex: 1;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
  transition: transform 0.12s ease, background 0.12s ease;
  text-decoration: none;
}

.mp-promocode .btn--green,
.mp-promocode__link.btn--green,
.mp-promocode a.mp-promocode__link.btn--green {
  background: var(--color-primary-btn);
  color: var(--color-primary-btn-text);
}

.mp-promocode .btn--green:hover,
.mp-promocode__link.btn--green:hover {
  background: var(--color-primary-btn-hover);
  transform: scale(0.98);
}

.mp-promocode .btn--secondary,
.mp-promocode__link.btn--secondary {
  background: var(--color-secondary-btn);
  color: #ffffff;
}

.mp-promocode .btn--secondary:hover,
.mp-promocode__link.btn--secondary:hover {
  background: var(--color-secondary-btn-hover);
  transform: scale(0.98);
}

.mp-promocode .btn--green:active,
.mp-promocode__link.btn--green:active,
.mp-promocode .btn--secondary:active,
.mp-promocode__link.btn--secondary:active {
  transform: scale(0.96);
}

.mp-promocode .btn--green svg {
  flex-shrink: 0;
}

.btn--full-width {
  width: 100%;
}

.btn--with-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mp-promocode__description {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
}

.mp-promocode__input {
  margin-top: 4px;
}

.mp-promocode__input-copy-block {
  display: flex;
  align-items: stretch;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-secondary);
  border: 1px solid var(--color-accent-border);
}

.mp-promocode__input-copy-block label {
  flex: 1;
  display: flex;
}

.mp-promocode__input-copy-block input {
  width: 100%;
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  padding: 14px 12px;
  letter-spacing: 1px;
}

.mp-promocode__copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 18px;
  border: none;
  background: var(--color-primary-btn);
  color: var(--color-primary-btn-text);
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.12s ease;
}

.mp-promocode__copy-btn:hover {
  background: var(--color-primary-btn-hover);
}

.mp-promocode__copy-btn svg {
  flex-shrink: 0;
}

.mp-promocode__copy-btn .copied {
  display: none;
}

@media (max-width: 768px) {
  .mp-promocode__buttons {
    flex-direction: column;
    gap: 12px;
  }

  .mp-promocode .btn--green,
  .mp-promocode__link.btn--green,
  .mp-promocode .btn--secondary,
  .mp-promocode__link.btn--secondary,
  .mp-promocode a.mp-promocode__link {
    width: 100%;
    flex: none;
    white-space: normal;
  }
}

@media (max-width: 600px) {
  .mp-promocode {
    padding: 20px 14px 20px;
  }

  .mp-promocode__specs {
    column-gap: 16px;
    padding-bottom: 12px;
    margin-bottom: 18px;
  }

  .mp-promocode__specs-value {
    font-size: 13px;
  }

  .mp-promocode__specs-name {
    font-size: 10px;
  }

  .mp-promocode__description {
    font-size: 12px;
  }

  .mp-promocode .btn--green,
  .mp-promocode__link.btn--green,
  .mp-promocode .btn--secondary,
  .mp-promocode__link.btn--secondary,
  .mp-promocode a.mp-promocode__link {
    font-size: 14px;
    padding: 13px 14px;
  }
}

.block-table {
  width: 100%;
  margin-top: 1rem;
  overflow-x: auto;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--bg-card-alt) 0%, var(--bg-card) 100%);
  border: 1px solid var(--color-accent-border);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.block-table table,
.columns__container > table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  color: #f2f7e8;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
  line-height: 1.5;
}

.block-table table th,
.block-table table td,
.columns__container > table th,
.columns__container > table td {
  border: none;
  padding: 0.95rem 1.15rem;
  vertical-align: middle;
}

.block-table table thead th,
.columns__container > table thead th {
  background: var(--color-accent-muted);
  color: #ffffff;
  font-weight: 800;
  border-bottom: 1px solid var(--color-accent-border);
}

.block-table table thead th:first-child {
  border-top-right-radius: 18px;
}

.block-table table thead th:last-child {
  border-top-left-radius: 18px;
}

.block-table table tbody td,
.columns__container > table tbody td {
  color: #e8eedf;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.block-table table tbody td:first-child {
  width: 28%;
  color: var(--color-accent);
  font-weight: 700;
  white-space: nowrap;
}

.block-table table tbody tr:last-child td,
.columns__container > table tbody tr:last-child td {
  border-bottom: none;
}

.block-table table tbody tr,
.columns__container > table tbody tr {
  transition: background-color 0.24s ease;
}

.block-table table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.025);
}

.block-table table tbody tr:hover,
.columns__container > table tbody tr:hover {
  background: var(--color-accent-muted);
}

/* App specs table */
.app-specs {
  width: 100%;
  margin-top: 1.25rem;
}

.app-specs__table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--color-accent-border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-card);
  font-size: 1rem;
  line-height: 1.5;
}

.app-specs__caption {
  caption-side: top;
  padding: 0 0 0.65rem;
  text-align: right;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
}

.app-specs__table th,
.app-specs__table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: right;
  vertical-align: top;
}

.app-specs__table th {
  width: 38%;
  font-weight: 600;
  color: #c8e88a;
  background: rgba(111, 236, 66, 0.08);
}

.app-specs__table td {
  color: #f2f7e8;
  font-weight: 500;
}

.app-specs__table tbody tr:last-child th,
.app-specs__table tbody tr:last-child td {
  border-bottom: none;
}

@media (max-width: 600px) {
  .app-specs__table th,
  .app-specs__table td {
    padding: 0.75rem 0.85rem;
    font-size: 0.95rem;
  }

  .app-specs__table th {
    width: 42%;
  }
}

.block-table table td.is-positive,
.block-table table td[data-positive="true"],
.columns__container > table td.is-positive,
.columns__container > table td[data-positive="true"] {
  color: var(--color-accent);
  font-weight: 600;
}

@media (max-width: 768px) {
  .block-table {
    border-radius: 14px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
  }

  .columns__container {
    overflow-x: visible;
    overflow-y: visible;
  }

  .block-table table,
  .columns__container > table {
    min-width: 720px;
  }

  .block-table table th,
  .block-table table td,
  .columns__container > table th,
  .columns__container > table td {
    padding: 0.78rem 0.9rem;
    font-size: 0.94rem;
  }

  .block-table table tbody td:first-child {
    width: 30%;
  }
}

/* Footer */

.footer {
  position: relative;
  margin-top: auto;
  padding: 3.5rem 0 0;
  background:
    linear-gradient(180deg, rgba(1, 25, 16, 0.35) 0%, transparent 28%),
    var(--footer-bg);
  border-top: 1px solid rgba(111, 236, 66, 0.18);
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(111, 236, 66, 0.55) 35%,
    rgba(111, 236, 66, 0.9) 50%,
    rgba(111, 236, 66, 0.55) 65%,
    transparent 100%
  );
  pointer-events: none;
}

.footer::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  bottom: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 236, 66, 0.08) 0%, transparent 68%);
  pointer-events: none;
}

.footer__container {
  position: relative;
  z-index: 1;
}

.footer__body {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem 3rem;
  align-items: start;
  padding-bottom: 2.5rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  max-width: 380px;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer__logo:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.footer__logo-img,
.footer__logo .header__logo-img {
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.footer__tagline {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
}

.footer__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--color-primary-btn-text);
  background: var(--color-accent);
  box-shadow: 0 6px 18px rgba(111, 236, 66, 0.25);
}

.footer__age {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
}

.footer__column {
  min-width: 0;
}

.footer__heading {
  position: relative;
  margin: 0 0 1.1rem;
  padding-bottom: 0.7rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: #ffffff;
}

.footer__heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-accent);
}

.footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer__item {
  margin: 0;
}

.footer__link {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  padding: 4px 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer__link:hover {
  color: var(--color-accent);
  text-decoration: none;
  transform: translateX(-3px);
}

html[dir="rtl"] .footer__link:hover {
  transform: translateX(3px);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  padding: 1.15rem 0 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__copy {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}

.footer__secure {
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
}

.footer__socials {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer__social {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 1;
  transition: all 0.3s ease;
}

.footer__social:hover {
  opacity: 0.7;
}

.footer__social img {
  width: 30px;
  height: 30px;
}

@media (max-width: 900px) {
  .footer__body {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 2.5rem;
  }

  .footer__brand {
    grid-column: 1 / -1;
    max-width: none;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .footer__logo-img,
  .footer__logo .header__logo-img {
    max-height: 38px;
  }
}

@media (max-width: 700px) {
  .footer__socials {
    display: none;
  }

  .footer {
    padding: 2.75rem 0 0;
  }
}

@media (max-width: 560px) {
  .footer {
    padding: 2.5rem 0 0;
  }

  .footer__body {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .footer__brand {
    grid-column: auto;
    gap: 0.85rem;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0 1.25rem;
  }

  .footer__link:hover,
  html[dir="rtl"] .footer__link:hover {
    transform: none;
  }
}

.scroll-top {
  position: fixed;
  bottom: 70px;
  right: 15px;
}

@media (max-width: 700px) {
  .scroll-top {
    bottom: 90px;
  }
}

.scroll-top__button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  background-color: var(--main-accent-bg-color);
  color: var(--color-primary-btn-text);
  font-size: 20px;
}

.mobile-button {
  display: none;
  position: fixed;
  bottom: 0;
  left: 8px;
  right: 8px;
  text-align: center;
  padding: 12px 12px;
  border-radius: 16px 16px 0 0;
  width: auto;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(111, 236, 66, 0.2);
  border-bottom: none;
  box-shadow: 0 -6px 28px rgba(0, 0, 0, 0.14);
  align-items: center;
  gap: 12px 10px;
  z-index: 100;
  overflow: hidden;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.mobile-button.is-hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.mobile-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--color-accent),
    var(--color-primary-btn),
    var(--color-accent)
  );
}
.mobile-button a {
  font-weight: 400;
  font-size: 1.2rem;
}
.mobile-button__container {
  padding: 10px 1rem;
}
.mobile-button__control {
  display: block;
  width: 100%;
}

@media (max-width: 700px) {
  .mobile-button {
    display: flex;
  }
}

.mobile-button.v1 .get-image {
  width: 80px;
  height: 40px;
}

.mobile-button.v1 img {
  max-width: 65px;
  max-height: 14px;
}

.mobile-button > .get-image {
  border-radius: 10px;
  background: linear-gradient(145deg, #2a2620, #13100c);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 60px;
  height: 42px;
  border: 1px solid var(--color-accent-border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.mobile-button img {
  max-width: 50px;
  max-height: 12px;
  width: 100%;
  object-fit: contain;
}

.mobile-button__title {
  margin: 0;
  color: #13100c;
  font-size: 15px;
  font-weight: 800;
  line-height: 16px;
  text-align: left;
  letter-spacing: 0.2px;
}

.mobile-button__rating {
  --percent: calc(var(--star-rating) / 5 * 100%);
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1;
  margin-top: 6px;
}

.mobile-button__rating::before {
  content: "★★★★★";
  font-family: Times, serif;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(
    90deg,
    var(--color-accent) var(--percent),
    #828282 var(--percent)
  );
  -webkit-background-clip: text;
}

.mobile-button__rating-counter {
  margin-left: 4px;
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  transform: translateY(-1px);
}

.mobile-button__link {
  position: relative;
  margin: auto;
  border: none;
  text-decoration: none;
  display: flex;
  padding: 12px 22px;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  background: var(--color-primary-btn);
  color: var(--color-primary-btn-text);
  font-size: 14px;
  font-weight: 800;
  line-height: 18px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.2s ease;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 6px 16px var(--shadow-primary-strong), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: mobile-button-pulse 2.4s ease-in-out infinite;
}

.mobile-button__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.65),
    transparent
  );
  transform: skewX(-20deg);
  animation: mobile-button-shine 3s ease-in-out infinite;
}

.mobile-button__link:hover {
  background: var(--color-primary-btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(111, 236, 66, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.mobile-button__link:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px var(--shadow-primary);
}

@keyframes mobile-button-pulse {
  0%, 100% {
    box-shadow: 0 6px 16px var(--shadow-primary-strong), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0 6px 22px rgba(111, 236, 66, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
}

@keyframes mobile-button-shine {
  0% {
    left: -120%;
  }
  60%, 100% {
    left: 140%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-button__link {
    animation: none;
  }
  .mobile-button__link::before {
    animation: none;
  }
}

.mobile-button > .mobile-button__link:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.mobile-button._active > .mobile-button__link:after {
  display: none;
}

.mobile-button__link--show {
  margin-right: -8px;
  transition: none;
  transition: background-color 0.3s ease-in-out;
}

.mobile-button__link--show .close {
  display: none;
}

.mobile-button__link--show._active .close {
  display: flex;
}
.mobile-button__link--show._active {
  background-color: var(--color-accent-muted);
  margin-right: 0;
}

.mobile-button__link--show._active .open {
  display: none;
}

/* PRIVACY PAGE */

.privacy__title {
  margin-top: 2rem;
  font-size: 1.8rem;
  line-height: 2.3rem;
  font-weight: 600;
  color: #ffffff;
}

.privacy__text {
  margin-top: 1rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.privacy__list {
  padding-left: 19px;
  margin-top: 1rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}


.privacy-content {
  padding-top: 1rem;
  padding-bottom: 3rem;
}

.privacy-hero__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  line-height: 1.3;
  font-weight: 800;
  color: #ffffff;
}

.privacy-hero__text {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.8;
}

.privacy-hero__text b {
  color: var(--color-accent);
  font-weight: 700;
}

.privacy__link {
  color: var(--color-blue);
  text-decoration: underline;
}






/* ============================================================ */
/*  FIXED HEADER                                                 */
/* ============================================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header.is-scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

body {
  padding-top: var(--header-offset);
}

html {
  scroll-padding-top: calc(var(--header-offset) + 12px);
}


/* ============================================================ */
/*  INFO STRIP (under hero)                                      */
/* ============================================================ */

.info-strip {
  background: var(--bg-primary);
  border-top: 0;
  border-bottom: 0;
  padding: 14px 0;
}

.info-strip__items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.info-strip__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--color-accent-muted);
  border: 1px solid var(--color-accent-border);
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.info-strip__icon {
  flex: 0 0 auto;
  color: var(--color-accent);
}

@media (max-width: 600px) {
  .info-strip {
    padding: 12px 0;
  }

  .info-strip__items {
    gap: 10px;
  }

  .info-strip__badge {
    min-height: 32px;
    padding: 7px 11px;
    font-size: 13px;
    gap: 6px;
  }

  .info-strip__icon {
    width: 14px;
    height: 14px;
  }
}


/* ============================================================ */
/*  GENERAL TYPOGRAPHY & SPACING IMPROVEMENTS                    */
/* ============================================================ */

/* Better vertical rhythm for section wrappers */
.section-title {
  text-align: center;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  line-height: 1.35;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.columns__container p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 1rem;
}

.columns__container h3 {
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 700;
  color: #ffffff;
  margin: 1.5rem 0 0.75rem;
}

.columns__container ol,
.columns__container ul {
  margin: 0.75rem 0 1rem;
  padding-right: 1.25rem;
  color: #ffffff;
}

.columns__btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 1.5rem;
}


.section-wrapper {
  margin: 3rem 0;
}

/* CTA download button */
.columns__download {
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 12px;
  font-size: 1.1rem;
  padding: 14px 40px;
  font-weight: 700;
  letter-spacing: 0.3px;
  background-color: var(--color-primary-btn);
  color: var(--color-primary-btn-text);
  box-shadow: 0 6px 18px var(--shadow-primary);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.columns__download:hover {
  transform: translateY(-2px);
  background-color: var(--color-primary-btn-hover);
  box-shadow: 0 10px 24px var(--shadow-primary-strong);
  color: var(--color-primary-btn-text);
}

.columns__download:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .header__container {
    padding: 0 12px;
  }

  .header__body {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 7px 0;
  }

  .header__logo {
    flex: 0 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
  }

  .header__logo-img {
    max-height: 36px;
    max-width: 140px;
    width: auto;
  }

  .header__actions {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 7px;
    justify-content: flex-end;
  }

  .header__login {
    display: none;
  }

  .header__app,
  .header__sign {
    flex: 1 1 0;
    min-width: 0;
    max-width: 45%;
    padding: 8px 9px;
    border-radius: 9px;
    font-size: 11px;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
  }

  .header__app {
    box-shadow: 0 3px 10px var(--shadow-primary);
  }

  :root {
    --header-offset: 54px;
  }
}

@media (max-width: 380px) {
  .header__logo-img {
    max-width: 115px;
    max-height: 32px;
  }

  .header__app,
  .header__sign {
    padding: 7px 7px;
    font-size: 10.5px;
  }

  .header__actions {
    gap: 6px;
  }
}

/* Improve section spacing on mobile */
@media (max-width: 768px) {
  .section-wrapper {
    margin: 2.2rem 0;
  }

}

.apk-steps {
  list-style: none;
  margin: 40px auto 0;
  padding: 0;
  counter-reset: apk-step;
  touch-action: pan-y;
  overflow: visible;
}

.apk-step {
  position: relative;
  margin: 0 0 72px;
  padding-top: 28px;
  touch-action: pan-y;
}

.apk-step::before {
  counter-increment: apk-step;
  content: counter(apk-step);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--color-primary-btn-hover), var(--color-primary-btn));
  color: var(--color-primary-btn-text);
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px var(--shadow-primary), 0 0 0 4px var(--bg-primary);
  z-index: 2;
  pointer-events: none;
}

.apk-step:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -48px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 32px;
  background: linear-gradient(180deg, rgba(111, 236, 66, 0.65), rgba(111, 236, 66, 0.08));
  border-radius: 2px;
  pointer-events: none;
}

.apk-step__inner {
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
  background: linear-gradient(155deg, var(--bg-card-alt) 0%, var(--bg-card) 100%);
  border-radius: 16px;
  border: 1px solid var(--color-accent-border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  touch-action: pan-y;
}

@media (hover: hover) and (pointer: fine) {
  .apk-step__inner {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }

  .apk-step__inner:hover {
    transform: translateY(-3px);
    border-color: rgba(111, 236, 66, 0.5);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.42);
  }
}

.apk-step:nth-child(even) .apk-step__inner {
  flex-direction: row;
}

.apk-step__text {
  flex: 1 1 0;
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  text-align: right;
}

.apk-step__text h3 {
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
}

.apk-step__text p {
  margin: 0;
  max-width: 42ch;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.apk-step__image {
  flex: 0 0 38%;
  min-height: 280px;
  padding: 28px 24px;
  background: linear-gradient(
    160deg,
    var(--color-accent-alt) 0%,
    var(--color-accent) 45%,
    #6fa800 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  touch-action: pan-y;
  border-radius: 0 16px 16px 0;
  overflow: hidden;
}

.apk-step:nth-child(even) .apk-step__image {
  border-radius: 16px 0 0 16px;
}

.apk-step__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.25), transparent 55%);
  pointer-events: none;
}

.apk-step__image img {
  position: relative;
  z-index: 1;
  max-width: min(100%, 220px);
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
  -webkit-user-drag: none;
  user-select: none;
  -webkit-touch-callout: none;
  touch-action: pan-y;
  pointer-events: none;
}

@media (max-width: 900px) {
  .apk-step {
    margin-bottom: 56px;
    padding-top: 24px;
  }

  .apk-step::before {
    width: 44px;
    height: 44px;
    font-size: 17px;
  }

  .apk-step:not(:last-child)::after {
    bottom: -40px;
    height: 24px;
  }

  .apk-step__inner,
  .apk-step:nth-child(even) .apk-step__inner {
    flex-direction: column;
  }

  .apk-step__image,
  .apk-step:nth-child(even) .apk-step__image {
    border-radius: 16px 16px 0 0;
  }

  .apk-step__text {
    padding: 28px 22px 24px;
    text-align: center;
    align-items: center;
  }

  .apk-step__text p {
    max-width: none;
  }

  .apk-step__image {
    flex-basis: auto;
    min-height: 0;
    padding: 24px 20px 28px;
  }

  .apk-step__image img {
    max-width: min(72vw, 200px);
  }
}

/* ============================================================ */
/*  LTR HOMEPAGE — WINWIN KENYA (EN)                             */
/* ============================================================ */

body {
  font-family: 'Inter', sans-serif;
  text-align: left;
}

h1, h2, h3,
.section-title,
.hero__title,
.nav-card__title,
.bonus-card__title {
  font-family: 'Poppins', 'Inter', sans-serif;
}

._container--narrow {
  max-width: 880px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.2px;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}

.btn--primary {
  background: var(--color-primary-btn);
  color: var(--color-primary-btn-text);
  box-shadow: 0 6px 18px var(--shadow-primary);
}
.btn--primary:hover {
  background: var(--color-primary-btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px var(--shadow-primary-strong);
}
.btn--primary:active { transform: translateY(0); }

.btn--secondary {
  background: var(--color-secondary-btn);
  color: #ffffff;
}
.btn--secondary:hover {
  background: var(--color-secondary-btn-hover);
  transform: translateY(-2px);
}
.btn--secondary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent-border);
}
.btn--ghost:hover {
  background: var(--color-accent-muted);
  border-color: var(--color-accent);
}

.btn--full { width: 100%; }

.cta-final {
  display: flex;
  justify-content: center;
  padding: 0.25rem 0;
}

.btn--xl {
  padding: 20px 52px;
  font-size: 1.2rem;
  border-radius: 14px;
  min-width: min(100%, 340px);
  box-shadow: 0 8px 28px var(--shadow-primary-strong);
}

.btn--xl:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--shadow-primary-strong);
}

/* ---- Header nav (LTR) ---- */
.header__body {
  flex-wrap: nowrap;
  text-align: left;
  gap: 18px;
}

.main-nav {
  margin-right: auto;
}

.header__list {
  gap: 22px;
}

.header__link {
  font-size: 16px;
  font-weight: 600;
}

.header__link::after {
  left: 0;
  right: auto;
}

.header__link:hover::after,
.header__link.is-active::after {
  transform: scaleX(1);
}

.header__link.is-active {
  color: var(--color-accent);
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0 9px;
  border-radius: 10px;
  background: var(--color-secondary-btn);
  cursor: pointer;
}
.header__burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.header__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.active span:nth-child(2) { opacity: 0; }
.header__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1023px) {
  .header__body {
    flex-wrap: wrap;
  }
  .main-nav {
    order: 3;
    flex-basis: 100%;
    margin-right: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .main-nav.active {
    max-height: 420px;
  }
  .header__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 8px 0 12px;
  }
  .header__list li { width: 100%; }
  .header__link {
    display: block;
    width: 100%;
    padding: 12px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .header__link::after { display: none; }
  .header__link.is-active {
    color: var(--color-accent);
    border-left: 3px solid var(--color-accent);
    padding-left: 12px;
    background: var(--color-accent-muted);
    border-radius: 6px;
  }
  .header__burger { display: flex; }
  .header__actions { margin-left: auto; }
}

/* ---- Sections ---- */
.sec {
  padding: 2.5rem 0;
  background: var(--bg-primary);
}
.sec--alt {
  background: var(--bg-primary);
  border-top: 0;
  border-bottom: 0;
}

.section-title--left {
  text-align: left;
  margin-bottom: 0;
}

.sec__lead {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 1.5rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}
.sec__lead--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 900px;
}

.sec__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.sec__head-link {
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-accent);
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--color-accent-border);
  background: var(--color-accent-muted);
  transition: background 0.2s ease;
}
.sec__head-link:hover { background: var(--color-accent); color: var(--color-primary-btn-text); }

/* ---- Hero actions / stats ---- */

.hero__title {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1.25;
  font-weight: 800;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}
.hero__stats {
  display: flex;
  gap: 34px;
  list-style: none;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero__stat-value {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}
.hero__stat-name {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}
.hero__img {
  border-radius: 18px;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .hero__image { display: block; max-width: 100%; margin-top: 24px; }
  .hero__body { flex-direction: column; }
}
@media (max-width: 520px) {
  .hero__stats { gap: 18px; }
  .hero__stat-value { font-size: 20px; }
  .hero__actions .btn { flex: 1 1 100%; }
}

/* ---- Info strip badges (LTR neutral) ---- */
.info-strip__badge { white-space: nowrap; }

/* ---- Brand navigation cards ---- */
.nav-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.nav-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 22px;
  border-radius: 16px;
  background: linear-gradient(160deg, var(--bg-card-alt) 0%, var(--bg-card) 100%);
  border: 1px solid var(--color-accent-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  color: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.nav-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.nav-card__tag {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  background: var(--color-accent-muted);
  border: 1px solid var(--color-accent-border);
  padding: 5px 12px;
  border-radius: 999px;
}
.nav-card__title {
  font-size: 20px;
  font-weight: 700;
}
.nav-card__text {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  flex-grow: 1;
}
.nav-card__cta {
  align-self: flex-start;
  margin-top: 4px;
  padding: 9px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  background: var(--color-primary-btn);
  color: var(--color-primary-btn-text);
  transition: background 0.2s ease;
}
.nav-card:hover .nav-card__cta { background: var(--color-primary-btn-hover); }

@media (max-width: 900px) {
  .nav-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .nav-cards { grid-template-columns: 1fr; }
}

/* ---- Casino game slider ---- */
.game-slider { margin-top: 2rem; }
.game-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.game-card {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.game-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: var(--color-accent);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4);
}
.game-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 301 / 180;
  object-fit: cover;
}
.game-card__name {
  display: block;
  padding: 10px 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
}

@media (max-width: 1100px) {
  .game-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .game-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .game-grid::-webkit-scrollbar { height: 6px; }
  .game-grid::-webkit-scrollbar-thumb { background: var(--color-accent-border); border-radius: 999px; }
  .game-card {
    flex: 0 0 auto;
    width: 240px;
    scroll-snap-align: start;
  }
}

/* ---- Split (image + text) ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}
.split__media img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid var(--color-accent-border);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
}
.split__content .section-title {
  margin-bottom: 1.1rem;
}
.split__content p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}
.split__content ul {
  margin: 0.25rem 0 0;
  padding-inline-start: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.split__content ul li {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}
.split__content ul li::marker {
  color: var(--color-accent);
}
.split__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.25rem;
}
.split--reverse .split__media { order: 2; }
.split--reverse .split__content { order: 1; }

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 24px; }
  .split--reverse .split__media,
  .split--reverse .split__content { order: 0; }
}

/* ---- Bonus ---- */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.bonus-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--bg-card-alt) 0%, var(--bg-card) 100%);
  border: 1px solid var(--color-accent-border);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.3);
}
.bonus-card__visual {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: rgba(0, 0, 0, 0.25);
}
.bonus-card__visual::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(to top, var(--bg-card) 0%, transparent 100%);
  pointer-events: none;
}
.bonus-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  gap: 12px;
  padding: 22px 24px 24px;
}
.bonus-card__body .btn {
  margin-top: auto;
  padding-top: 4px;
}
.bonus-card__tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--color-accent);
  background: var(--color-accent-muted);
  border: 1px solid var(--color-accent-border);
  padding: 5px 12px;
  border-radius: 999px;
}
.bonus-card__title {
  font-size: 21px;
  font-weight: 700;
  color: #fff;
}
.bonus-card__amount {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.4;
}
.bonus-card__text {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}
.bonus-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 760px) {
  .bonus-grid { grid-template-columns: 1fr; }
}

.bonus-more {
  margin-top: 28px;
  padding: 26px 26px 22px;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.bonus-more__title {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.bonus-more__text {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  max-width: 720px;
  margin-bottom: 16px;
}
.bonus-more__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.bonus-more__list li {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-accent);
  background: var(--color-accent-muted);
  border: 1px solid var(--color-accent-border);
  padding: 8px 14px;
  border-radius: 999px;
}

/* ---- Payments ---- */
.pay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pay-card {
  padding: 24px 22px;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 3px solid var(--color-accent);
}
.pay-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.pay-card__text {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 860px) {
  .pay-grid { grid-template-columns: 1fr; }
}

/* ---- Support ---- */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.support-card {
  padding: 22px 20px;
  border-radius: 14px;
  background: linear-gradient(160deg, var(--bg-card-alt) 0%, var(--bg-card) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.support-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 8px;
}
.support-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 860px) {
  .support-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .support-grid { grid-template-columns: 1fr; }
}

/* ---- FAQ ---- */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.faq__item[open] {
  border-color: var(--color-accent-border);
}
.faq__q {
  list-style: none;
  cursor: pointer;
  padding: 18px 50px 18px 20px;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--color-accent);
  transition: transform 0.2s ease;
}
.faq__item[open] .faq__q::after {
  content: "\2212";
}
.faq__a {
  padding: 0 20px 18px;
}
.faq__a p {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

/* ---- Section spacing on mobile ---- */
@media (max-width: 768px) {
  .sec { padding: 2rem 0; }
  .hero { padding: 2.5rem 0; }
}

/* ============================================================ */
/*  CASINO PAGE COMPONENTS                                       */
/* ============================================================ */

/* ---- Casino highlights ---- */
.highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.highlight-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 22px;
  border-radius: 16px;
  background: linear-gradient(160deg, var(--bg-card-alt) 0%, var(--bg-card) 100%);
  border: 1px solid var(--color-accent-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.highlight-card__value {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  color: var(--color-accent);
}
.highlight-card__title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}
.highlight-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 980px) {
  .highlights { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .highlights { grid-template-columns: 1fr; }
}

/* ---- Category cards ---- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.category-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.category-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.38);
}
.category-card__img {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}
.category-card__body {
  padding: 20px 22px 24px;
}
.category-card__title {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.category-card__text {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 980px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .cat-grid { grid-template-columns: 1fr; }
}

/* ---- 6-column game grid (casino showcase) ---- */
.game-grid--six {
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 1200px) {
  .game-grid--six { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .game-grid--six { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Feature chips (slots section) ---- */
.feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.1rem;
}
.feature-card {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-accent);
  background: var(--color-accent-muted);
  border: 1px solid var(--color-accent-border);
  padding: 9px 16px;
  border-radius: 999px;
}

/* ---- Providers ---- */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.provider-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 20px 18px;
  border-radius: 14px;
  background: linear-gradient(160deg, var(--bg-card-alt) 0%, var(--bg-card) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.provider-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-3px);
}
.provider-card__name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.35;
}

@media (max-width: 760px) {
  .providers-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Single bonus banner ---- */
.bonus-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 28px 30px;
  border-radius: 18px;
  background: linear-gradient(160deg, var(--bg-card-alt) 0%, var(--bg-card) 100%);
  border: 1px solid var(--color-accent-border);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.3);
}
.bonus-banner__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.bonus-banner__img {
  width: 315px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 315 / 250;
  object-fit: cover;
  border-radius: 14px;
}

@media (max-width: 760px) {
  .bonus-banner {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .bonus-banner__img {
    order: -1;
    width: 100%;
  }
}

/* ============================================================ */
/*  BETTING PAGE COMPONENTS                                      */
/* ============================================================ */

/* ---- Bet slip steps ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.step-card {
  position: relative;
  padding: 24px 22px 22px;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-top: 3px solid var(--color-accent);
}
.step-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  border-radius: 50%;
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--color-primary-btn-text);
  background: linear-gradient(145deg, var(--color-primary-btn-hover), var(--color-primary-btn));
  box-shadow: 0 6px 16px var(--shadow-primary);
}
.step-card__title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.step-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 900px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ============================================================ */
/*  LOGIN PAGE COMPONENTS                                        */
/* ============================================================ */

.hero--login {
  padding-bottom: 2.5rem;
}

.access-sec {
  margin-top: -1rem;
  padding-top: 0;
}

.access-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
}

.access-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 26px 26px;
  border-radius: 18px;
  background: linear-gradient(165deg, var(--bg-card-alt) 0%, var(--bg-card) 100%);
  border: 1px solid var(--color-accent-border);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
}

.access-card--login {
  border-top: 4px solid var(--color-accent);
}

.access-card--register {
  border-top: 4px solid rgba(255, 255, 255, 0.35);
}

.access-card__label {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--color-accent);
  background: var(--color-accent-muted);
  border: 1px solid var(--color-accent-border);
  padding: 5px 12px;
  border-radius: 999px;
}

.access-card__title {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.access-card__text {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.access-card__list {
  list-style: none;
  margin: 4px 0 8px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.access-card__list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.access-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-muted);
}

.access-card .btn {
  margin-top: auto;
}

@media (max-width: 768px) {
  .access-panel { grid-template-columns: 1fr; }
}

/* ---- Account area intro + grid ---- */
.account-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
}

.account-intro__text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 12px;
}

.account-intro__media img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--color-accent-border);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.account-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.account-tile {
  padding: 20px 18px;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 3px solid var(--color-accent);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.account-tile:hover {
  border-color: var(--color-accent-border);
  transform: translateY(-2px);
}

.account-tile__title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.account-tile__text {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 980px) {
  .account-intro { grid-template-columns: 1fr; }
  .account-intro__media { order: -1; max-width: 480px; }
  .account-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .account-grid { grid-template-columns: 1fr; }
}

/* ---- Login recovery layout ---- */
.recovery-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.recovery-layout__media img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.recovery-layout__lead {
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 12px 0 24px;
}

.recovery-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.recovery-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 20px 20px 18px;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.recovery-step__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--color-primary-btn-text);
  background: var(--color-primary-btn);
}

.recovery-step__title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.recovery-step__text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 860px) {
  .recovery-layout { grid-template-columns: 1fr; }
  .recovery-layout__media { max-width: 400px; }
}

/* ---- Mobile band (compact) ---- */
.mobile-band {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
}

.mobile-band__media img {
  width: 220px;
  max-width: 100%;
  height: auto;
  border-radius: 14px;
}

.mobile-band__content p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 12px;
}

.mobile-band__content .btn {
  margin-top: 8px;
}

@media (max-width: 700px) {
  .mobile-band {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .mobile-band__media img { width: 100%; max-width: 280px; }
}

/* ---- Account safety ---- */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.safety-item {
  padding: 20px 18px;
  border-radius: 12px;
  background: linear-gradient(160deg, var(--bg-card-alt) 0%, var(--bg-card) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.safety-item__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.safety-item__text {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 760px) {
  .safety-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .safety-grid { grid-template-columns: 1fr; }
}

/* ---- Balance strip ---- */
.balance-strip-sec {
  padding: 2.5rem 0;
  background: linear-gradient(90deg, rgba(111, 236, 66, 0.06), rgba(111, 236, 66, 0.12), rgba(111, 236, 66, 0.06));
  border-top: 1px solid var(--color-accent-border);
  border-bottom: 1px solid var(--color-accent-border);
}

.balance-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.balance-strip__main {
  flex: 1 1 420px;
  max-width: 680px;
}

.balance-strip__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.balance-strip__text {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.balance-strip__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 0 1 auto;
}

.balance-strip__tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  background: var(--color-accent-muted);
  border: 1px solid var(--color-accent-border);
  padding: 8px 14px;
  border-radius: 999px;
}

/* ============================================================ */
/*  APP PAGE COMPONENTS                                          */
/* ============================================================ */

/* ---- App profile hero ---- */
.hero-app {
  padding: 3rem 0 2.5rem;
  background:
    var(--bg-primary),
    radial-gradient(100% 80% at 90% 0%, rgba(111, 236, 66, 0.12) 0%, transparent 55%),
    radial-gradient(70% 60% at 10% 30%, rgba(111, 236, 66, 0.06) 0%, transparent 60%);
}

.hero-app__layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.app-card {
  padding: 28px 28px 26px;
  border-radius: 20px;
  background: linear-gradient(165deg, var(--bg-card-alt) 0%, var(--bg-card) 55%, var(--bg-primary) 100%);
  border: 1px solid var(--color-accent-border);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.35);
}

.app-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.app-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-card__name {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.app-card__tagline {
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.7);
}

.app-card__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 16px;
}

.app-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.app-card__chip {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-accent);
  background: var(--color-accent-muted);
  border: 1px solid var(--color-accent-border);
  padding: 6px 12px;
  border-radius: 999px;
}

.app-card__text {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 12px;
}

.app-card .hero__actions {
  margin-top: 8px;
}

.app-card__note {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}

.hero-app__preview {
  text-align: center;
}

.hero-app__preview img {
  max-width: 100%;
  width: 420px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 900px) {
  .hero-app__layout {
    grid-template-columns: 1fr;
  }
  .hero-app__preview { order: -1; }
  .hero-app__preview img { width: 100%; max-width: 320px; }
}

/* ---- Dashboard strip ---- */
.dash-strip-sec {
  padding: 0 0 2.5rem;
  margin-top: -0.5rem;
}

.dash-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  padding: 18px 16px;
  border-radius: 16px;
  background: var(--header-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.dash-strip__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 2px solid var(--color-accent);
}

.dash-strip__label {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.dash-strip__hint {
  font-size: 11.5px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 980px) {
  .dash-strip { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 520px) {
  .dash-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ---- App vs web compare ---- */
.compare-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.compare-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px 24px;
  border-radius: 18px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-card--app {
  border-top: 4px solid var(--color-accent);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.compare-card--web {
  border-top: 4px solid rgba(255, 255, 255, 0.25);
}

.compare-card__badge {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  background: var(--color-accent-muted);
  border: 1px solid var(--color-accent-border);
  padding: 5px 12px;
  border-radius: 999px;
}

.compare-card__title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.compare-card__text {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.compare-card__list {
  list-style: none;
  margin: 4px 0 10px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.compare-card__list li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
}

.compare-card__list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.compare-card .btn { margin-top: auto; }

@media (max-width: 768px) {
  .compare-panel { grid-template-columns: 1fr; }
}

/* ---- Action dashboard ---- */
.action-dash {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.action-dash__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 14px;
  border-radius: 14px;
  background: linear-gradient(160deg, var(--bg-card-alt) 0%, var(--bg-card) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.action-dash__item:hover {
  border-color: var(--color-accent-border);
  transform: translateY(-2px);
}

.action-dash__icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 800;
  color: var(--color-primary-btn-text);
  background: var(--color-primary-btn);
}

.action-dash__text {
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .action-dash { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .action-dash { grid-template-columns: 1fr; }
}

/* ---- App feature panels (no image) ---- */
.app-feature-panel {
  padding: 28px 28px 26px;
  border-radius: 18px;
  background: linear-gradient(160deg, var(--bg-card-alt) 0%, var(--bg-card) 100%);
  border: 1px solid var(--color-accent-border);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.3);
}

.app-feature-panel .btn {
  margin-top: 20px;
}

.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mini-card {
  padding: 18px 16px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: border-color 0.2s ease;
}

.mini-card:hover {
  border-color: var(--color-accent-border);
}

.mini-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.mini-card__text {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 760px) {
  .mini-cards { grid-template-columns: 1fr; }
}

/* ---- Betting flow grid ---- */
.bet-flow {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bet-flow--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.bet-flow__step {
  display: flex;
  gap: 14px;
  padding: 18px 16px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: border-color 0.2s ease;
}

.bet-flow__step:hover {
  border-color: var(--color-accent-border);
}

.bet-flow__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--color-primary-btn-text);
  background: var(--color-primary-btn);
  box-shadow: 0 4px 14px var(--shadow-primary);
}

.bet-flow__title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.bet-flow__text {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 760px) {
  .bet-flow--grid { grid-template-columns: 1fr; }
  .app-feature-panel { padding: 22px 18px 20px; }
}

/* ---- Login band (compact) ---- */
.login-band {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  padding: 28px 30px;
  border-radius: 18px;
  background: linear-gradient(160deg, var(--bg-card-alt) 0%, var(--bg-card) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.login-band__media img {
  width: 220px;
  max-width: 100%;
  height: auto;
  border-radius: 14px;
}

.login-band__content p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 12px;
}

@media (max-width: 700px) {
  .login-band {
    grid-template-columns: 1fr;
    padding: 22px 20px;
  }
  .login-band__media img { width: 100%; max-width: 260px; }
}

.balance-strip-sec--app {
  padding: 2rem 0;
}

/* ---- App mobile payments (distinct from login balance-strip) ---- */
.app-pay-sec {
  padding: 2.5rem 0;
  background: var(--bg-primary);
  border-top: 0;
  border-bottom: 0;
}

.app-pay {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: start;
  padding: 26px 28px;
  border-radius: 18px;
  background: var(--bg-card);
  border: 1px solid var(--color-accent-border);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

.app-pay__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.app-pay__text {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.app-pay__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-pay__point {
  position: relative;
  padding: 14px 16px 14px 42px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(111, 236, 66, 0.06);
  border: 1px solid rgba(111, 236, 66, 0.15);
}

.app-pay__point::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  font-weight: 800;
  color: var(--color-accent);
}

@media (max-width: 760px) {
  .app-pay {
    grid-template-columns: 1fr;
    padding: 22px 20px;
  }
}

/* ---- Benefit stack (staggered) ---- */
.benefit-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.benefit-stack__item {
  padding: 22px 20px;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.benefit-stack__item:nth-child(2),
.benefit-stack__item:nth-child(5) {
  transform: translateY(8px);
}

.benefit-stack__item:hover {
  border-color: var(--color-accent-border);
  transform: translateY(-2px);
}

.benefit-stack__item:nth-child(2):hover,
.benefit-stack__item:nth-child(5):hover {
  transform: translateY(6px);
}

.benefit-stack__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.benefit-stack__text {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 760px) {
  .benefit-stack { grid-template-columns: 1fr; }
  .benefit-stack__item:nth-child(2),
  .benefit-stack__item:nth-child(5) {
    transform: none;
  }
}

/* ---- Device / updates note ---- */
.device-note {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 8px 0;
}

.device-note__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.device-note__text {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 12px;
}

.device-note__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.device-note__tag {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-accent);
  background: var(--color-accent-muted);
  border: 1px solid var(--color-accent-border);
  padding: 7px 14px;
  border-radius: 999px;
}

/* ============================================================ */
/*  LEGAL / SERVICE PAGES                                        */
/* ============================================================ */

.legal-page {
  padding: 2.5rem 0 4rem;
}

.legal-page__head {
  max-width: 780px;
  margin-bottom: 2.5rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-page__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 10px;
}

.legal-page__updated {
  font-size: 14px;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.legal-page__intro {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
}

.legal-page__body {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.legal-section__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.legal-section__text {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 12px;
}

.legal-section__text:last-child {
  margin-bottom: 0;
}

.legal-section__list {
  margin: 8px 0 12px;
  padding-left: 1.35rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-section__list li {
  margin-bottom: 8px;
}

.legal-section__list li:last-child {
  margin-bottom: 0;
}

.legal-section__link {
  color: var(--color-accent);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.legal-section__link:hover {
  color: var(--color-primary-btn-hover);
}

/* ============================================================ */
/*  SHARED UTILITIES                                             */
/* ============================================================ */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.subsection-title {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.45;
  color: #ffffff;
  margin: 2.5rem 0 1.15rem;
}

.block-gap { margin-top: 2rem; }
.block-gap--sm { margin-top: 1.25rem; }
.block-gap--lg { margin-top: 2.5rem; }

.sec-figure {
  max-width: 980px;
  margin: 2.5rem auto 0;
}

.sec-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
}

.sec-figure figcaption {
  margin-top: 12px;
  font-size: 13.5px;
  line-height: 1.6;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================================ */
/*  RTL ADJUSTMENTS                                              */
/* ============================================================ */

html[dir="rtl"] body,
html[dir="rtl"] input,
html[dir="rtl"] button,
html[dir="rtl"] select,
html[dir="rtl"] textarea,
html[dir="rtl"] .section-title,
html[dir="rtl"] .hero__title,
html[dir="rtl"] .nav-card__title,
html[dir="rtl"] .bonus-card__title,
html[dir="rtl"] .hero__stat-value,
html[dir="rtl"] .highlight-card__value,
html[dir="rtl"] .step-card__num,
html[dir="rtl"] .access-card__title,
html[dir="rtl"] .recovery-step__num,
html[dir="rtl"] .balance-strip__title,
html[dir="rtl"] .app-card__name,
html[dir="rtl"] .app-card__title,
html[dir="rtl"] .bet-flow__num,
html[dir="rtl"] .app-pay__title,
html[dir="rtl"] .device-note__title,
html[dir="rtl"] .legal-page__title,
html[dir="rtl"] .legal-section__title {
  font-family: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
}

html[dir="rtl"] body,
html[dir="rtl"] .header__body,
html[dir="rtl"] .footer__body,
html[dir="rtl"] .footer__brand,
html[dir="rtl"] .footer__bottom,
html[dir="rtl"] .section-title--left,
html[dir="rtl"] .sec__lead--left {
  text-align: right;
}

html[dir="rtl"] .access-card__list li,
html[dir="rtl"] .compare-card__list li {
  padding-left: 0;
  padding-right: 22px;
}

html[dir="rtl"] .access-card__list li::before,
html[dir="rtl"] .compare-card__list li::before {
  left: auto;
  right: 0;
}

html[dir="rtl"] .dash-strip__item {
  border-left: 0;
  border-right: 2px solid var(--color-accent);
}

html[dir="rtl"] .account-tile {
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  border-right: 3px solid var(--color-accent);
}

html[dir="rtl"] .recovery-step {
  padding: 20px 18px 20px 20px;
}

html[dir="rtl"] .app-pay__point {
  padding: 14px 42px 14px 16px;
}

html[dir="rtl"] .app-pay__point::before {
  left: auto;
  right: 16px;
}

@media (max-width: 760px) {
  html[dir="rtl"] .bonus-banner {
    text-align: right;
  }
}

@media (max-width: 700px) {
  html[dir="rtl"] .mobile-band {
    text-align: right;
  }
}

@media (max-width: 768px) {
  html[dir="rtl"] .header__link.is-active {
    border-left: 0;
    border-right: 3px solid var(--color-accent);
    padding-left: 6px;
    padding-right: 12px;
  }
}

/* ---- Promo offers (compact) ---- */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.offer-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 18px;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.offer-card__name {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}

.offer-card__for {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-accent);
}

.offer-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin-top: auto;
}

.promo-code-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
  padding: 28px 28px 26px;
  border-radius: 18px;
  background: linear-gradient(160deg, var(--bg-card-alt) 0%, var(--bg-card) 100%);
  border: 1px solid var(--color-accent-border);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

.promo-code-box__code {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px 20px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px dashed var(--color-accent-border);
  text-align: center;
}

.promo-code-box__label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
}

.promo-code-box__value {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  line-height: 1.2;
}

.promo-code-box__note {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 980px) {
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .offer-grid { grid-template-columns: 1fr; }
  .promo-code-box { grid-template-columns: 1fr; }
}

html[dir="rtl"] .promo-code-box__value {
  letter-spacing: 0.12em;
}