/* ============================================================
   RESET
   ============================================================ */
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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body { line-height: 1; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after,
q:before, q:after { content: ''; content: none; }
table { border-collapse: collapse; border-spacing: 0; }
*, *:after, *:before { box-sizing: border-box; }
a { text-decoration: none; }
img { display: block; max-width: 100%; }

/* ============================================================
   CSS VARIABLES — Navy / Amber theme
   ============================================================ */
:root {
  --bg-primary:    #08090e;
  --bg-secondary:  #0d1020;
  --bg-card:       #141826;
  --bg-card-alt:   #1c2240;

  --amber:         #f0b429;
  --amber-dark:    #c99010;
  --amber-light:   #f5c842;

  --text:          #eef0ff;
  --text-muted:    #8a90b8;
  --text-dark:     #525780;

  --border:        #1e2450;
  --border-amber:  rgba(240, 180, 41, 0.3);

  --radius:        12px;
  --radius-lg:     20px;

  --shadow:        0 4px 24px rgba(0,0,0,0.5);
  --shadow-amber:  0 0 20px rgba(240, 180, 41, 0.15);
}

/* ============================================================
   BASE
   ============================================================ */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Oswald', system-ui, sans-serif;
  line-height: 1.2;
  font-weight: 700;
}

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.btn--amber {
  background: var(--amber);
  color: #06070c;
  border-color: var(--amber);
}
.btn--amber:hover {
  background: var(--amber-light);
  border-color: var(--amber-light);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--outline:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 18px;
}

.btn--sm {
  padding: 9px 20px;
  font-size: 14px;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-title {
  font-size: clamp(26px, 4vw, 42px);
  color: var(--text);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.section-title span {
  color: var(--amber);
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 9, 14, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo__icon {
  font-size: 28px;
}
.logo__text {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.5px;
}
.logo__accent {
  color: var(--amber);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.nav__link:hover {
  color: var(--amber);
  background: rgba(240, 180, 41, 0.08);
}

.nav__btn {
  margin-left: 8px;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 38px;
  height: 38px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  background: var(--bg-primary);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(240,180,41,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 30%, rgba(40,60,160,0.10) 0%, transparent 60%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(240,180,41,0.12);
  border: 1px solid var(--border-amber);
  color: var(--amber);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  width: fit-content;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero__title {
  font-size: clamp(30px, 4.5vw, 52px);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.hero__desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
}

.hero__bonus-badge {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: linear-gradient(135deg, rgba(240,180,41,0.15), rgba(240,180,41,0.05));
  border: 1px solid var(--border-amber);
  border-radius: var(--radius);
  padding: 18px 24px;
  width: fit-content;
}
.hero__bonus-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
.hero__bonus-label {
  font-size: 13px;
  color: var(--text-muted);
}

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

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
}
.hero__trust span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero__image-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero__image {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 60px rgba(240,180,41,0.12), var(--shadow);
}

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

.slots-section__title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  margin-bottom: 28px;
}

.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-amber);
}

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

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

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

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

.art-section__inner--img-right {
  grid-template-columns: 1.6fr 1fr;
}

.art-section__inner--img-left {
  grid-template-columns: 1fr 1.6fr;
}

.art-section__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.art-section__body--mt {
  margin-top: 24px;
}

.art-section__body h2 {
  font-size: clamp(20px, 3vw, 34px);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.art-section__body h2 strong {
  font-weight: 700;
  color: var(--text);
}

.art-section__body h3 {
  font-size: clamp(15px, 2vw, 20px);
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding-left: 14px;
  border-left: 3px solid var(--amber);
  margin-top: 6px;
}

.art-section__body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
}

.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(--amber);
  box-shadow: 0 0 0 4px rgba(240, 180, 41, 0.14);
}

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

.art-section__img {
  width: 100%;
  max-width: 320px;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 0 30px rgba(240,180,41,0.10));
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-item__icon {
  font-size: 20px;
  flex-shrink: 0;
}

/* ============================================================
   CONTENT LIST
   ============================================================ */
.content-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.content-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: 13px;
  top: 2px;
}

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

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

.data-table td {
  padding: 13px 18px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.data-table td p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.data-table td strong {
  color: var(--text);
}

.data-table tbody tr:first-child td {
  background: var(--bg-card-alt);
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.data-table tbody tr:first-child td p {
  color: var(--amber);
}

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

.data-table tbody tr:not(:first-child):hover td {
  background: rgba(240,180,41,0.04);
}

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

.safety-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
}

.safety-item__icon {
  font-size: 40px;
  line-height: 1;
}

.safety-item h4 {
  font-size: 18px;
  color: var(--text);
}

.safety-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   STEPS CTA
   ============================================================ */
.steps__cta {
  text-align: center;
  margin-top: 40px;
}

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

.vip-level {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.vip-level__badge {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border-radius: 100px;
  text-transform: uppercase;
}

.vip-level__badge--bronze  { background: #cd7f32; color: #fff; }
.vip-level__badge--silver  { background: #c0c0c0; color: #111; }
.vip-level__badge--gold    { background: var(--amber); color: #06070c; }
.vip-level__badge--platinum { background: #e5e4e2; color: #111; }

.vip-level p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

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

.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.3px;
  transition: color 0.15s;
}
.faq-question:hover {
  color: var(--amber);
}

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

.faq-question__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card-alt);
  border-radius: 50%;
  font-size: 18px;
  color: var(--amber);
  font-weight: 300;
  line-height: 1;
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050608;
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border);
}

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

.footer__desc {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.7;
  max-width: 280px;
}

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

.footer__links h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.footer__links a {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.5;
  transition: color 0.15s;
}
.footer__links a:hover {
  color: var(--text);
}

.footer__bottom {
  padding: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.footer__warning {
  font-size: 12px;
  color: var(--text-dark);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.footer__warning a {
  color: var(--text-muted);
  text-decoration: underline;
}

.footer__copy {
  font-size: 12px;
  color: #2a3060;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .safety__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .art-section__inner--img-right,
  .art-section__inner--img-left {
    grid-template-columns: 1fr;
  }
  .art-section__image {
    display: none;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .slots-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .slot-item__img { height: 110px; }
  .vip__levels {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 820px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero__label,
  .hero__bonus-badge {
    margin: 0 auto;
  }
  .hero__btns {
    justify-content: center;
  }
  .hero__trust {
    justify-content: center;
  }
  .hero__image {
    max-width: 380px;
    margin: 0 auto;
  }
  .vip__levels {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .burger {
    display: flex;
    z-index: 200;
    position: relative;
  }
  .nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8,9,14,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 150;
  }
  .nav.is-open {
    display: flex;
  }
  .nav__link {
    font-size: 22px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
  }
  .nav__btn {
    margin: 0;
  }
  .safety__grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .art-section {
    padding: 50px 0;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero {
    padding: 50px 0 40px;
  }
  .slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .slot-item__img { height: 100px; }
}

@media (max-width: 480px) {
  .btn--lg {
    padding: 14px 24px;
    font-size: 16px;
  }
  .hero__btns {
    flex-direction: column;
  }
  .hero__btns .btn {
    width: 100%;
  }
  .faq-question {
    font-size: 15px;
    padding: 18px 18px;
  }
  .faq-answer {
    padding: 0 18px 18px;
  }
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .slot-item__img { height: 90px; }
  .vip__levels {
    grid-template-columns: repeat(2, 1fr);
  }
}
