/* =========================
   CSS RESET (browser styles ignored)
   ========================= */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button, input, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

button, input, textarea, select {
  background: none;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
}

ol, ul { list-style: none; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }

/* =========================
   THEME
   ========================= */
:root{
  --bg: #ffffff;
  --bg-2: #fbfaf7;
  --card: #ffffff;
  --text: #14120f;
  --muted: #6a645c;
  --line: rgba(20, 18, 15, 0.12);

  --primary: #f59e0b;   /* amber/gold */
  --primary-2: #fb7185; /* rose */

  --shadow: 0 12px 34px rgba(17, 14, 9, 0.10);
  --radius: 18px;

  --container: 1120px;
}

body{
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}


/* =========================
   UTIL
   ========================= */
.container{
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.muted{ color: var(--muted); }
.tiny{ font-size: 12px; }

.section{
  padding: 64px 0;
}

.section--alt{
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.section__head h2{
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: -0.02em;
}

.lead{
  font-size: 16px;
  color: var(--muted);
  margin-top: 10px;
}

.badges{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.badge{
  font-size: 12px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(25, 195, 125, 0.06);
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--card);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}

.btn:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn--primary{
  background: linear-gradient(180deg, var(--primary), var(--primary-2));
  border-color: transparent;
  color: #062014;
  font-weight: 700;
}

.btn--ghost{
  background: transparent;
}

.btn--small{
  padding: 9px 10px;
  border-radius: 10px;
  font-size: 13px;
}

/* =========================
   TOPBAR
   ========================= */
.topbar{
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}

.topbar__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}

.topbar__text{ font-size: 13px; color: var(--muted); }
.topbar__link{
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

/* =========================
   HEADER
   ========================= */
.header{
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

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

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand__mark{
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 8px 20px rgba(25,195,125,0.30);
}

.brand__text{ font-size: 16px; }
.brand__dot{ color: var(--primary); }

.nav{
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-weight: 600;
}

.nav a:hover{ color: var(--text); }

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

.nav__burger{
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav__burger span{
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 10px;
  opacity: 0.8;
}

.mobile{
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding: 10px 16px 16px;
}

.mobile a{
  display: block;
  padding: 12px 0;
  color: var(--muted);
  font-weight: 700;
}

.mobile__cta{
  margin-top: 8px;
}

/* =========================
   HERO
   ========================= */
.hero{
  padding: 42px 0 28px;
}

.hero__grid{
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 18px;
}

.hero__content h1{
  font-size: clamp(28px, 4.2vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.hero__cta{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 14px;
}

/* Featured */
.featured{
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.featured__left{
  padding: 18px;
  display: grid;
  gap: 10px;
}

.featured__label{
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.featured__title{
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.featured__media{
  border-left: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(25,195,125,0.08), rgba(16,185,129,0.02));
  padding: 12px;
  display: grid;
  gap: 6px;
  align-content: start;
}

.featured__media img{
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
}

.featured__media figcaption{
  font-size: 12px;
  color: var(--muted);
}

.codebox{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px dashed rgba(16,24,40,0.25);
  background: rgba(25,195,125,0.06);
  border-radius: 14px;
  width: fit-content;
}

.codebox--row{
  width: 100%;
  justify-content: space-between;
}

.codebox__code{
  font-weight: 900;
  letter-spacing: 0.08em;
}

/* Side card */
.hero__side .sidecard{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  gap: 12px;
}

.sidecard__title{
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.checklist{
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
}

.checklist li{
  position: relative;
  padding-left: 22px;
}

.checklist li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 8px 18px rgba(25,195,125,0.28);
}

.sidecard__figure img{
  border-radius: 14px;
  border: 1px solid var(--line);
}

.sidecard__figure figcaption{
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
}

/* =========================
   GRID CARDS
   ========================= */
.grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.card{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
}

.card__media{
  aspect-ratio: 16 / 9;
  background: linear-gradient(180deg, rgba(25,195,125,0.10), rgba(16,185,129,0.02));
  border-bottom: 1px solid var(--line);

  /* додати/залишити */
  overflow: hidden;              /* щоб img не виходив за межі */
  border-radius: var(--radius) var(--radius) 0 0; /* щоб картинка повторювала форму картки */
}

.card__media img{
  width: 100%;
  height: 100%;
  display: block;                /* прибирає зайві "щілини" */
  object-fit: cover;             /* всі картинки під один розмір */
  object-position: center;        /* центр */
}

.card__body{
  padding: 14px;
  display: grid;
  gap: 10px;
}

.card__body h3{
  font-weight: 900;
  letter-spacing: -0.02em;
}

.card__offer{
  color: var(--muted);
  font-size: 13px;
}

/* Notice */
.notice{
  margin-top: 16px;
  border: 1px solid var(--line);
  background: rgba(25,195,125,0.06);
  border-radius: var(--radius);
  padding: 14px;
  color: var(--muted);
}

/* =========================
   STEPS
   ========================= */
.steps{
  display: grid;
  gap: 12px;
}

.step{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 16px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
}

.step__num{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: rgba(25,195,125,0.12);
  border: 1px solid rgba(25,195,125,0.25);
}

.step__body{
  display: grid;
  gap: 6px;
}

.step__body h3{
  font-weight: 900;
  letter-spacing: -0.02em;
}

.inline-figure{
  margin-top: 8px;
  display: grid;
  gap: 6px;
}

.inline-figure img{
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
}

.inline-figure figcaption{
  font-size: 12px;
  color: var(--muted);
}

/* =========================
   BONUSES split
   ========================= */
.split{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  align-items: start;
}

.panel{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  gap: 14px;
}

.panel h3{
  font-size: 18px;
  font-weight: 900;
}

.bullets{
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
}

.mini-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mini{
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.7);
  border-radius: 14px;
  padding: 12px;
  display: grid;
  gap: 6px;
}

.mini__title{
  font-weight: 900;
  font-size: 13px;
}

.mini__text{
  color: var(--muted);
  font-size: 13px;
}

.panel--media{
  padding: 12px;
}

.big-figure{
  display: grid;
  gap: 6px;
}

.big-figure img{
  border-radius: 14px;
  border: 1px solid var(--line);
}

.big-figure figcaption{
  font-size: 12px;
  color: var(--muted);
}

.panel__cta{
  border-top: 1px solid var(--line);
  padding-top: 12px;
  display: grid;
  gap: 10px;
}

/* =========================
   ACCORDION
   ========================= */
.accordion{
  display: grid;
  gap: 10px;
}

.acc{
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 900;
}

.acc__icon{
  width: 32px;
  height: 32px;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 900;
}

.acc__panel{
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--card);
  padding: 12px 16px 16px;
  color: var(--muted);
  margin-top: -10px;
}

/* =========================
   FOOTER
   ========================= */
.footer{
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding: 30px 0;
}

.footer__inner{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
}

.footer__links{
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

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

.brand--footer{
  margin-bottom: 8px;
}

/* =========================
   TOAST
   ========================= */
.toast{
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 14px;
  padding: 10px 14px;
  font-weight: 800;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1024px){
  .grid{ grid-template-columns: repeat(2, 1fr); }
  .hero__grid{ grid-template-columns: 1fr; }
  .featured{ grid-template-columns: 1fr; }
  .featured__media{ border-left: 0; border-top: 1px solid var(--line); }
  .split{ grid-template-columns: 1fr; }
}

@media (max-width: 760px){
  .nav{ display: none; }
  .nav__burger{ display: inline-flex; }
  .header__actions .btn--ghost{ display: none; }
  .mini-grid{ grid-template-columns: 1fr; }
}
/* =========================
   PROMO SLIDER
   ========================= */
.promo-slider{
  display: grid;
  gap: 12px;
}

.promo-slider__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.promo-slider__controls{
  display: flex;
  gap: 10px;
}

.promo-slider__viewport{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  box-shadow: var(--shadow);
  overflow: hidden;

  /* keyboard focus */
  outline: none;
}

.promo-slider__viewport:focus-visible{
  box-shadow: 0 0 0 4px rgba(25,195,125,0.18), var(--shadow);
}

.promo-slider__track{
  display: flex;
  gap: 14px;
  padding: 14px;

  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;

  /* nicer feel */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* firefox */
}

.promo-slider__track::-webkit-scrollbar{
  display: none; /* chrome */
}

.promo-slide{
  flex: 0 0 calc((100% - 28px) / 3); /* 3 slides on desktop */
  min-width: 280px;
  scroll-snap-align: start;
}

.promo-slider__dots{
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-bottom: 2px;
}

.promo-dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  opacity: 0.9;
  transition: transform .15s ease, background .15s ease, opacity .15s ease;
}

.promo-dot[aria-current="true"]{
  background: rgba(25,195,125,0.9);
  border-color: transparent;
  transform: scale(1.1);
}

@media (max-width: 1024px){
  .promo-slide{
    flex: 0 0 calc((100% - 14px) / 2); /* 2 slides */
  }
}

@media (max-width: 640px){
  .promo-slide{
    flex: 0 0 86%; /* 1 big slide on mobile */
  }
}
.hero,
#codes{
  position: relative;
}

.hero::before,
#codes::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at top left,
      rgba(59,130,246,0.12),
      transparent 60%
    ),
    radial-gradient(circle at bottom right,
      rgba(6,182,212,0.10),
      transparent 60%
    );
}


/* --- Added sections (Rewards / Payments / Fairness / 2026 table) --- */
.two-col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 900px){
  .two-col{ grid-template-columns: 1fr; }
}

.table-wrap{
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  overflow: auto;
}
.table{
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.table th,
.table td{
  padding: 14px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.table thead th{
  position: sticky;
  top: 0;
  background: linear-gradient(135deg, rgba(28,34,54,.95), rgba(20,26,42,.95));
  backdrop-filter: blur(6px);
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #cfd6ff;
  z-index: 2;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.table tbody tr:hover{
  background: rgba(255,255,255,0.03);
}
.table__actions{
  width: 150px;
  white-space: nowrap;
}
.table__code{
  display: flex;
  align-items: center;
  gap: 10px;
}
.table__code strong{
  font-size: 15px;
}
