:root {
  color-scheme: dark;
  --bg: #0b0b0d;
  --bg-soft: #121317;
  --panel: #1b1e25;
  --panel-strong: #222731;
  --accent: #f8d648;
  --accent-strong: #f8d648;
  --gold: #f2c346;
  --text: #f7f7f7;
  --muted: #a5acb6;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  --radius: 22px;
  --hero-image: none;
  --font-main: "Outfit", "Segoe UI", "Helvetica Neue", sans-serif;
  --font-display: "Bebas Neue", "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-main);
  color: var(--text);
  background-color: #000000;
}
html {
    scroll-behavior: smooth;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
[id] {
    scroll-margin-top: 90px;
}


.app {
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  padding: 70px 15px 110px;
  position: relative;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 64px;
  padding: 0 15px;
  background: rgba(9, 9, 11, 0.95);
  backdrop-filter: blur(10px);
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.topbar-inner {
  width: min(1000px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
    width: 130px;
    height: 30px;
  /* background: #c23a3a; */
  border-radius: 8px;
}

.brand-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.btn {
  border: 0;
  font-family: var(--font-main);
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn-ghost {
  background: linear-gradient(180deg, #020d0f, #032a20);
  color: var(--text);
  padding: 8px 18px;
  border-radius: 0.625rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.btn-primary {
  background: var(--accent);
  text-decoration: none;
  color: #000000;
  /* box-shadow: 0 14px 30px rgba(234, 59, 59, 0.35); */
}
.btn-primary-no-back{
  background: transparent;
  text-decoration: none;
  color: #fff;
  border: 1px solid #e74143;
}
.contetnt-btn{
  margin: 0 auto; 
  max-width: 300px;
}

.btn-large {
  width: 100%;
  padding: 16px 18px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 600;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeUp 0.6s ease both;
}

.hero-card {
  background: #0f1116;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero-media {
  height: 420px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(7, 6, 6, 0.8) 90%),
    var(--hero-image),
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.12), transparent 55%),
    linear-gradient(140deg, #1a0d0d 0%, #0d1016 55%, #161a22 100%);
  background-size: cover;
  background-position: center;
}
@media (min-width: 760px) {
  .hero-media {
    background-position: unset;
    filter: blur(3px);
  }
}

.hero-info {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: min(95%, 320px);
  padding: 0 10px;
  text-align: center;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 10px;
}

.bonus-amount {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.bonus-sub {
  font-size: 18px;
  margin-bottom: 22px;
  color: #f0d06a;
}

.partner {
  margin-top: 14px;
  font-size: 12px;
  color: #808792;
}

.external {
  opacity: 0.6;
}

.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  bottom: 0;
  height: 90px;
  background: linear-gradient(180deg, #020d0f, #032a20);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0px;
  box-shadow: 0 -10px 35px rgba(0, 0, 0, 0.6);
  z-index: 40;
}

.bottom-nav-inner {
  width: min(430px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  justify-content: center;
}
.nav-item {
  text-decoration: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: #f0f2f4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-family: var(--font-main);
  cursor: pointer;
  justify-self: center;
}

.nav-item img {
  width: 22px;
  height: 22px;
  opacity: 0.8;
}

.nav-item--center {
  width: 68px;
  height: 68px;
  background: var(--accent);
  color: #000000;
  border-radius: 50%;
  gap: 4px;
  /* box-shadow: 0 12px 25px rgba(234, 59, 59, 0.45); */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* margin-top: -26px; */
}

.nav-item--center img {
  width: 24px;
  height: 24px;
  opacity: 1;
}

.drawer {
  position: fixed;
  inset: 0;
  background: rgba(6, 7, 10, 0.65);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 999;
}

.drawer-panel {
  position: absolute;
  right: 0;
  top: 0;
  width: min(78%, 360px);
  height: 100%;
  background: linear-gradient(180deg, #020d0f, #032a20);
  padding: 24px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.drawer-close {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.drawer-scroll {
  flex: 1;
  overflow-y: auto;
  padding-right: 6px;
}

.drawer-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 10px;
  border-radius: 14px;
  text-decoration: none;
  color: #f1f1f2;
  font-weight: 600;
  transition: background 0.2s ease;
}

.drawer-item img {
  width: 20px;
  height: 20px;
  opacity: 0.75;
}

.drawer-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.drawer-cta {
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: auto;
  position: sticky;
  bottom: 0;
  /* background: #2a2f37; */
  padding-top: 8px;
  border-radius: .625rem;
}

.menu-open .drawer {
  opacity: 1;
  pointer-events: auto;
}

.menu-open .drawer-panel {
  transform: translateX(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 760px) {
  .app {
    padding-bottom: 120px;
    max-width: 1000px;
  }
}



.navigation {
  /* margin: 18px 0 26px; */
}

.navigation__toggle {
  width: 100%;
  border: 0;
  background: linear-gradient(180deg, #2a2d35 0%, #262a32 100%);
  color: var(--text);
  padding: 16px 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  max-width: 300px;
}

.navigation__toggle::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid rgba(255, 255, 255, 0.9);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.navigation__title {
  text-align: left;
}

.navigation__panel {
  margin-top: 14px;
  padding: 18px 18px 8px;
  border-radius: 16px;
  background: linear-gradient(180deg, #24272e 0%, #20232b 100%);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 500px;
}

.navigation--collapsed .navigation__panel {
  display: none;
}

.navigation--collapsed .navigation__toggle::after {
  transform: rotate(45deg);
}

.navigation:not(.navigation--collapsed) .navigation__toggle::after {
  transform: rotate(-135deg);
}

.navigation__link {
  color: #cbd1db;
  text-decoration: none;
  font-weight: 500;
  padding: 0px 4px;
}

.navigation__link:hover {
  color: #ffffff;
}

.img-box {
  margin: 20px 0;
  border-radius: 5px;
  overflow: hidden;
  background: #0f1116;
  box-shadow: var(--shadow);
}

.img-box picture,
.img-box img {
  display: block;
  width: 100%;
}

.img-box img {
  height: auto;
}

.promo-code_block {
  margin: 18px 0 26px;
}

.promo-card {
  background: #121212;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.4);
  /* border: 1px solid #222; */
  max-width: 400px;
  margin: 0 auto;

}

.promo-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.promo-card__title {
  font-weight: 600;
  font-size: 16px;
}

.promo-card__sub {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

.promo-card__pill {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 5px;
  background: #e741431a;
  color: #e74143;
  border: 1px solid #e741434d;
}

.promo-card__code {
  position: relative;
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #0e0e0e;
  border: 1px solid #2a2a2a;
  font-family: "Courier New", monospace;
  color: #f1f1f1;
}

.promo-card__code-text {
  letter-spacing: 2px;
  font-size: 1.25rem;
  font-weight: 700;
}

.promo-copy {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.promo-card__status {
  margin-left: auto;
  margin-right: 6px;
  font-size: 17px;
  font-weight: 600;
  /* font-family: var(--font-main); */
  background-color: #0e0e0e;
  color: #e74143;
  display: flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  right: 5px;
  padding: 5px 0;
}

.promo-card__cta {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
}

.promo-card__note {
  margin-top: 10px;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}

.cashback_block {
  margin: 20px 0 28px;
  max-width: 400px;
  margin: 0 auto;
}

.cashback-card {
  background: linear-gradient(180deg, #171717 0%, #111111 100%);
  border-radius: 22px;
  padding: 28px 24px 26px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cashback-card__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 10px;
  border: 1px solid rgba(234, 59, 59, 0.35);
  background: rgba(234, 59, 59, 0.1);
  color: #ff6b6b;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.cashback-card__lead {
  font-size: 18px;
  color: #d9d9d9;
  font-weight: 600;
  margin-bottom: 6px;
}

.cashback-card__value {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.cashback-card__tail {
  font-size: 20px;
  font-weight: 600;
  color: #d9d9d9;
  margin-bottom: 22px;
}

.cashback-card__cta {
  width: 100%;
  padding: 14px 16px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
}

.cashback-card__note {
  margin-top: 16px;
  font-size: 12px;
  color: #8a8f98;
}

 .flex-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 40px;
    @media (min-width: 768px) {
    
        flex-direction: row;
      }
  }

/* ── Table ─────────────────────────────────────────────────────── */
.section-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  color: var(--text);
  font-size: 14px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  margin: 20px 0;
}

.section-table thead tr {
  background: linear-gradient(135deg, #1a2035 0%, #141924 100%);
}

.section-table thead th {
  padding: 14px 18px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: left;
  border-bottom: 2px solid rgba(248, 214, 72, 0.25);
}

.section-table thead th:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.section-table tbody tr {
  background: #0f131c;
  transition: background 0.18s;
}

.section-table tbody tr:nth-child(even) {
  background: #131824;
}

.section-table tbody tr:hover {
  background: #1c2236;
}

.section-table td {
  padding: 13px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.04);
  overflow-wrap: anywhere;
  vertical-align: middle;
  text-align: left;
}

.section-table td:first-child {
  font-weight: 600;
  color: var(--text);
}

.section-table td:last-child,
.section-table th:last-child {
  border-right: none;
}

.section-table tbody tr:last-child td {
  border-bottom: none;
}

/* ── Lists ─────────────────────────────────────────────────────── */
.content ul {
  list-style: none;
  padding: 0;
  margin: 14px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.content ul li {
  position: relative;
  padding: 12px 16px 12px 46px;
  background: linear-gradient(135deg, #131824 0%, #0f1420 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
  transition: border-left-color 0.2s, background 0.2s;
}

.content ul li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Ccircle cx='8' cy='8' r='7.5' stroke='%23f8d648' stroke-width='1.2'/%3E%3Cpath d='M4.5 8l2.5 2.5 4-5' stroke='%23f8d648' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.content ul li:hover {
  background: linear-gradient(135deg, #1a2035 0%, #131824 100%);
  border-left-color: #fff;
}

@media (max-width: 640px) {
  .section-table {
    font-size: 12px;
    border-radius: 10px;
  }
  .section-table thead th,
  .section-table td {
    padding: 10px 12px;
  }
  .section-table thead th {
    font-size: 10px;
    letter-spacing: 0.4px;
  }
  .content ul li {
    padding: 10px 12px 10px 40px;
    font-size: 13px;
  }
}

.contacts {
  max-width: 420px;
  margin: 50px auto 0;
  display: grid;
  gap: 18px;
}

.contacts__title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 600;
}

.contacts__form {
  display: grid;
  gap: 14px;
}

.contacts__label {
  font-weight: 600;
}

.contacts__input,
.contacts__textarea {
  width: 100%;
  border: none;
  border-radius: 16px;
  padding: 12px 16px;
  background: #dcd7d7;
  color: #0b0d14;
  font-family: inherit;
  font-size: 15px;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.2);
}

.contacts__textarea {
  min-height: 140px;
  resize: vertical;
}

.contacts__submit {
  border: none;
  border-radius: 18px;
  padding: 12px 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--accent);
  color: #f8f8f8;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(255, 53, 111, 0.35);
}

.contacts__popup {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 12, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 40;
}

.contacts__popup.is-visible {
  opacity: 1;
  pointer-events: all;
}

.contacts__popup-card {
  background: #1a1f2e;
  border-radius: 18px;
  padding: 22px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  min-width: 220px;
}

.contacts__popup-close {
  margin-top: 14px;
  border: none;
  border-radius: 14px;
  padding: 10px 18px;
  font-weight: 600;
  background: var(--accent);
  color: #0b0d14;
  cursor: pointer;
}

@media (max-width: 640px) {
  .contacts {
    max-width: 100%;
    padding: 0 8px;
    margin: 0 auto;

  }

  .contacts__title {
    font-size: 26px;
  }

  .contacts__input,
  .contacts__textarea {
    border-radius: 14px;
    font-size: 14px;
  }

  .contacts__submit {
    width: 100%;
  }

  .contacts__popup-card {
    width: calc(100% - 32px);
    max-width: 320px;
  }
}


.hero__card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #0b0d14;
  max-height: 500px;
  margin: 20px 0 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.7;
}
.hero__image-reviews {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  display: block;
  opacity: 0.7;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* gap: 10px; */
  text-align: center;
  /* background: rgba(5, 6, 10, 0.4); */
  background-color: rgba(0, 0, 0, 0.8);
  padding: 24px;
  /* min-height: 250px; */
}

.hero__eyebrow {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.hero__headline {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
}


.site-footer {
  /* margin-top: 40px; */
  /* padding: 28px 24px 20px; */
  /* background: linear-gradient(180deg, #1a1f2e 0%, #141a25 100%); */
  border-radius: 18px;
  text-align: center;
  position: relative;
  margin: 40px auto 20px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.site-footer__links a {
  color: var(--text);
  text-decoration: none;
}

.site-footer__links a:hover {
  color: var(--accent);
}

.site-footer__divider {
  height: 1px;
  background: var(--line);
  margin: 20px 0;
}

.site-footer__text {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 auto 12px;
  max-width: 900px;
}

.site-footer__copy {
  color: var(--text);
  font-weight: 600;
}


@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  .site-footer {
    /* padding: 24px 18px 10px; */
  }
}

/* ── Language Switcher ────────────────────────────────────────── */
.lang-switcher {
  position: relative;
}

.lang-switcher__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(180deg, #033325, #247a53);
  border: 0;
  border-radius: 0.625rem;
  padding: 8px 12px;
  color: var(--text);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}

.lang-switcher__btn:active {
  transform: translateY(1px);
}

.lang-switcher__flag {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

.lang-switcher__arrow {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.lang-switcher--open .lang-switcher__arrow {
  transform: rotate(180deg);
}

.lang-switcher__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #1e2129;
  border: 1px solid #3a3f4d;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1000;
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
}

.lang-switcher--open .lang-switcher__dropdown {
  display: block;
}

.lang-switcher__option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  transition: background 0.15s;
  white-space: nowrap;
}

.lang-switcher__option:hover {
  background: #2b2f38;
}

.lang-switcher__option--active {
  background: #2b2f38;
  font-weight: 600;
}

.lang-switcher__option img {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

/* Desktop: show native name, hide short code */
.lang-switcher__mob-code {
  display: none;
}

.lang-switcher__native {
  display: inline;
}

/* Mobile: hide native name, show short code */
@media (max-width: 600px) {
  .lang-switcher__native {
    display: none;
  }
  .lang-switcher__mob-code {
    display: inline;
    font-weight: 600;
    font-size: 13px;
  }
  .lang-switcher__dropdown {
    min-width: 90px;
  }
  .lang-switcher__option {
    padding: 9px 14px;
    gap: 8px;
  }
}