/* ============================================================
   ROOT VARIABLES
   ============================================================ */
:root {
  --bg-primary:    #070a07;
  --bg-secondary:  #0b0f0b;
  --bg-card:       #111811;
  --bg-card-alt:   #182218;

  --green:         #22c55e;
  --green-dark:    #16a34a;
  --green-light:   #4ade80;

  --text:          #edfaef;
  --text-muted:    #8aab8e;
  --text-dark:     #4d6b52;

  --border:        #1a2c1a;
  --border-green:  rgba(34, 197, 94, 0.28);

  --radius:        10px;
  --radius-lg:     18px;
  --shadow:        0 4px 24px rgba(0,0,0,0.55);

  --font-head:     'Oswald', sans-serif;
  --font-body:     'Open Sans', sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--text);
}

h2 {
  font-size: clamp(22px, 3.5vw, 38px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 34px;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: filter 0.18s, transform 0.18s;
}
.btn:hover { filter: brightness(1.12); transform: translateY(-2px); }

.btn--green {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #050f07;
  font-weight: 700;
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header,
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 10, 7, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  font-family: var(--font-head);
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}
.logo span { color: var(--green); }

/* NAV */
.nav,
.nav__list {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__list {
  list-style: none;
}

.nav__link {
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.nav__link:hover { color: var(--green); background: rgba(34,197,94,0.08); }

.nav__btn {
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--green);
  color: #050f07;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--radius);
  transition: filter 0.15s;
}
.nav__btn:hover { filter: brightness(1.1); }

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger__line {
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.burger span {
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* MOBILE NAV */
@media (max-width: 820px) {
  .burger { display: flex; }

  #nav,
  .nav {
    display: none;
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--bg-primary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 99;
  }
  #nav.is-open,
  .nav.is-open { display: flex; }

  .nav__list {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .nav__link { font-size: 20px; }
  .nav__btn   { font-size: 18px; padding: 12px 32px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,10,7,0.90) 0%, rgba(7,10,7,0.55) 60%, rgba(7,10,7,0.20) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero__label,
.hero__badge {
  display: inline-block;
  background: var(--border-green);
  border: 1px solid var(--green);
  color: var(--green);
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.hero__bonus-badge {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: linear-gradient(135deg, rgba(34,197,94,0.15), rgba(34,197,94,0.05));
  border: 1px solid var(--border-green);
  border-radius: var(--radius);
  padding: 18px 24px;
  width: fit-content;
  margin-bottom: 28px;
}

.hero__bonus-amount {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.hero__bonus-label {
  font-size: 13px;
  color: var(--text-muted);
}

.hero__title {
  font-size: clamp(28px, 5vw, 56px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  line-height: 1.1;
}

.hero__title span { color: var(--green); }

.hero__desc {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero__actions,
.hero__btns { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 48px;
  align-items: center;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 22px;
  color: var(--text-muted);
  font-size: 13px;
}

.hero__image-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero__image {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* ============================================================
   SLOTS SECTION
   ============================================================ */
.slots-section {
  padding: 42px 0 36px;
  background: var(--bg-secondary);
}

.slots-section__title {
  text-align: center;
  margin-bottom: 28px;
  font-size: clamp(20px, 3vw, 32px);
  color: var(--green);
}

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

.slot-item {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
  transition: transform 0.18s, border-color 0.18s;
}
.slot-item:hover {
  transform: translateY(-4px);
  border-color: var(--border-green);
}

.slot-item__img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}

@media (max-width: 960px) {
  .slots-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 700px) {
  .slots-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
  .slot-item__img { height: 100px; }
}

/* ============================================================
   SECTION LABEL
   ============================================================ */
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid var(--border-green);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}

/* ============================================================
   ART SECTIONS
   ============================================================ */
.art-section {
  padding: 20px 0;
  background: var(--bg-primary);
}

.art-section--alt {
  background: var(--bg-secondary);
}

.art-section__inner {
  gap: 60px;
  align-items: center;
}

.art-section__inner--img-right .art-section__img  { order: 2; }
.art-section__inner--img-right .art-section__body { order: 1; }
.art-section__inner--img-left  .art-section__img  { order: 1; }
.art-section__inner--img-left  .art-section__body { order: 2; }

.art-section__img img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
  object-fit: cover;
  max-height: 460px;
}

.art-section__body .section-label { margin-bottom: 12px; }

.art-section__body h2 { margin-bottom: 18px; }

.art-section__body p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.art-section__body ul {
  list-style: none;
  padding: 0;
  margin: 14px 0;
  display: grid;
  gap: 10px;
}

.art-section__body li {
  position: relative;
  padding-left: 22px;
  color: var(--text-muted);
  line-height: 1.7;
}

.art-section__body li::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.14);
}

/* H3 subsections inside art-section */
.art-section__body h3 {
  color: var(--green);
  padding-left: 14px;
  border-left: 3px solid var(--green);
  text-transform: uppercase;
  font-size: clamp(15px, 2vw, 20px);
  margin-top: 24px;
  margin-bottom: 10px;
}

@media (max-width: 820px) {
  .art-section__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .art-section__inner--img-right .art-section__img,
  .art-section__inner--img-left  .art-section__img { order: 0; }
}

/* ============================================================
   TRUST GRID
   ============================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
}

.trust-card__icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.trust-card__value {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--green);
  margin-bottom: 4px;
}

.trust-card__label {
  font-size: 13px;
  color: var(--text-muted);
}

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

/* ============================================================
   CONTENT LIST (ul)
   ============================================================ */
.content-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 16px;
}

.content-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-size: 15px;
}

.content-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 12px;
  top: 3px;
}

/* ORDERED LIST */
.content-list--num {
  list-style: none;
  padding: 0;
  margin: 12px 0 16px;
  counter-reset: num-list;
}

.content-list--num li {
  position: relative;
  padding-left: 36px;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-size: 15px;
  counter-increment: num-list;
}

.content-list--num li::before {
  content: counter(num-list);
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: var(--green);
  color: #050f07;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 24px;
  text-align: center;
}

/* ============================================================
   BONUS CARDS
   ============================================================ */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: border-color 0.2s;
}
.bonus-card:hover { border-color: var(--border-green); }

.bonus-card__icon  { font-size: 36px; margin-bottom: 12px; }
.bonus-card__title {
  font-family: var(--font-head);
  font-size: 18px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}
.bonus-card__text { font-size: 14px; color: var(--text-muted); }

@media (max-width: 700px) {
  .bonus-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   DATA TABLE
   ============================================================ */
.table-wrap {
  overflow-x: auto;
  margin: 20px 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.data-table th {
  background: var(--bg-card-alt);
  color: var(--green);
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.data-table td {
  padding: 11px 16px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

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

.data-table tr:hover td { background: rgba(34,197,94,0.04); }

/* ============================================================
   PROVIDERS GRID
   ============================================================ */
.providers__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.provider-tag {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--radius);
  transition: border-color 0.15s, color 0.15s;
}
.provider-tag:hover { border-color: var(--border-green); color: var(--green); }

/* ============================================================
   STEPS LIST
   ============================================================ */
.steps__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 28px;
  list-style: none;
  counter-reset: steps;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  counter-increment: steps;
  position: relative;
}

.step::before {
  content: counter(steps);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--green);
  color: #050f07;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 14px;
}

.step__title {
  font-family: var(--font-head);
  font-size: 16px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}
.step__text { font-size: 14px; color: var(--text-muted); }

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

/* ============================================================
   SAFETY GRID
   ============================================================ */
.safety__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.safety-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
}

.safety-card__icon  { font-size: 28px; margin-bottom: 10px; }
.safety-card__title {
  font-family: var(--font-head);
  font-size: 16px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px;
}
.safety-card__text  { font-size: 14px; color: var(--text-muted); }

@media (max-width: 700px) {
  .safety__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   VIP LEVELS
   ============================================================ */
.vip__levels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.vip-level {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 18px;
  text-align: center;
  transition: border-color 0.2s;
}
.vip-level:hover { border-color: var(--border-green); }

.vip-level__badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.vip-level__badge--bronze  { background: rgba(176,112,56,0.15); color: #b07038; border: 1px solid rgba(176,112,56,0.3); }
.vip-level__badge--silver  { background: rgba(150,160,175,0.15); color: #96a0af; border: 1px solid rgba(150,160,175,0.3); }
.vip-level__badge--gold    { background: rgba(34,197,94,0.12); color: var(--green); border: 1px solid var(--border-green); }
.vip-level__badge--diamond { background: rgba(99,220,230,0.12); color: #63dce6; border: 1px solid rgba(99,220,230,0.3); }

.vip-level__title {
  font-family: var(--font-head);
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--text);
}
.vip-level__perks { font-size: 13px; color: var(--text-muted); line-height: 1.8; }

@media (max-width: 820px) {
  .vip__levels { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1fr; gap: 28px; }
  .hero__btns .btn { width: 100%; }
}
@media (max-width: 460px) {
  .vip__levels { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  padding: 72px 0;
  background: var(--bg-secondary);
}

.faq-section__head {
  text-align: center;
  margin-bottom: 40px;
}
.faq-section__head h2 { margin-bottom: 10px; }
.faq-section__head p  { color: var(--text-muted); max-width: 560px; margin: 0 auto; }

.faq__intro {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.7;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.is-open { border-color: var(--border-green); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-size: clamp(15px, 2vw, 18px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.15s;
}
.faq-question:hover { color: var(--green); }

.faq-question__title {
  margin: 0;
  font: inherit;
}

.faq-question__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 18px;
  line-height: 1;
  transition: background 0.15s;
}
.faq-item.is-open .faq-question__icon { background: var(--green); color: #050f07; }

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 48px 0 28px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  margin-bottom: 32px;
}

.footer__brand .logo { margin-bottom: 10px; }

.footer__desc {
  font-size: 13px;
  color: var(--text-dark);
  max-width: 420px;
  line-height: 1.6;
}

.footer__nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: flex-end;
}

.footer__nav a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.15s;
}
.footer__nav a:hover { color: var(--green); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  font-size: 12px;
  color: var(--text-dark);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}

@media (max-width: 600px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__nav ul { justify-content: flex-start; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center  { text-align: center; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.color-green { color: var(--green); }
