/* SpinEmpire AT — "Nachtblau": dunkles Mitternachtsblau + Platin/Stahl, analytisch (Sie-Form) */

:root {
  --axz-bg: #0b1020;
  --axz-panel: #141a30;
  --axz-panel-2: #1c2444;
  --axz-border: rgba(150, 170, 214, 0.16);
  --axz-border-soft: rgba(120, 152, 224, 0.24);
  --axz-green: #3d6bff;        /* primary/CTA — electric blue */
  --axz-green-deep: #2748c9;   /* deep blue */
  --axz-gold: #aab6cc;         /* secondary accent — platinum */
  --axz-gold-light: #dbe3f2;   /* light platinum */
  --axz-text: #eef1f8;
  --axz-muted: #9aa6c0;
  --axz-radius: 8px;
  --axz-shadow: 0 12px 30px rgba(3, 8, 24, 0.55);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--axz-bg);
  color: var(--axz-text);
  font-family: 'Figtree', Arial, sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
}

img { max-width: 100%; display: block; }

a { color: var(--axz-gold-light); text-decoration: none; }
a:hover { color: #ffffff; }

.axz-wrap { max-width: 1160px; margin: 0 auto; padding: 0 20px; position: relative; }

/* ---------- Ticker ---------- */
.axz-ticker {
  background: linear-gradient(90deg, #2748c9, #3d6bff);
  color: #f2f5ff;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 8px 16px;
}
.axz-ticker a { color: #ffffff; text-decoration: underline; }

/* ---------- Header ---------- */
.axz-header {
  background: #0a0f22;
  border-bottom: 1px solid var(--axz-border-soft);
  position: sticky;
  top: 0;
  z-index: 50;
}
.axz-header__bar {
  max-width: 1160px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
.axz-logo img { height: 36px; width: auto; }
.axz-nav { list-style: none; display: flex; gap: 4px; flex: 1; justify-content: center; }
.axz-nav a {
  color: #cdd6ea;
  font-weight: 700;
  font-size: 15px;
  padding: 7px 14px;
  border-radius: 6px;
}
.axz-nav a:hover { background: rgba(61, 107, 255, 0.16); color: #fff; }
.axz-nav a.is-active { background: var(--axz-green); color: #fff; }
.axz-header__auth { display: flex; gap: 10px; margin-left: 8px; }
.axz-burger {
  display: none;
  background: none;
  border: 1px solid rgba(150, 170, 214, 0.35);
  border-radius: 6px;
  padding: 9px 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}
.axz-burger span { width: 20px; height: 2px; background: #cdd6ea; display: block; }

/* ---------- Buttons ---------- */
.axz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  border-radius: 6px;
  padding: 11px 24px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.axz-btn--gold {
  background: var(--axz-green);
  color: #ffffff;
}
.axz-btn--gold:hover { background: var(--axz-green-deep); color: #fff; transform: translateY(-1px); box-shadow: 0 8px 22px rgba(61, 107, 255, 0.45); }
.axz-btn--ghost { border-color: var(--axz-border-soft); color: var(--axz-text); background: transparent; }
.axz-btn--ghost:hover { border-color: var(--axz-green); color: #fff; }
.axz-header .axz-btn--ghost { border-color: rgba(150, 170, 214, 0.4); color: #cdd6ea; }
.axz-header .axz-btn--ghost:hover { border-color: #fff; color: #fff; }
.axz-btn--lg { padding: 15px 34px; font-size: 17px; }
.axz-btn--full { width: 100%; }

/* ---------- Hero ---------- */
.axz-hero { position: relative; }
.axz-hero picture { display: block; }
.axz-hero img { width: 100%; height: auto; }
.axz-hero__link { display: block; }
.axz-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 40px 0;
  pointer-events: none;
}
.axz-hero__overlay > * { pointer-events: auto; }
.axz-hero__overlay .axz-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.axz-hero__title {
  font-size: clamp(25px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  max-width: 640px;
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.78);
}
.axz-hero__subtitle {
  margin: 12px 0 22px;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 600;
  max-width: 540px;
  color: #cdd8f5;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.82);
}

/* ---------- Sections ---------- */
.axz-section { padding: 54px 0; }
.axz-section--tint { background: var(--axz-panel); border-top: 1px solid var(--axz-border); border-bottom: 1px solid var(--axz-border); }
.axz-section h2 {
  font-size: clamp(22px, 3vw, 31px);
  font-weight: 800;
  line-height: 1.22;
  margin-bottom: 14px;
}
.axz-section h2::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 12px;
  background: var(--axz-green);
  transform: rotate(45deg);
}
.axz-section h3 { font-size: 19px; font-weight: 800; margin: 24px 0 10px; color: var(--axz-gold-light); }
.axz-section p { margin-bottom: 14px; }
.axz-section p:last-child { margin-bottom: 0; }
.axz-lead { font-size: 19px; }
.axz-muted { color: var(--axz-muted); }
.axz-section__cta { margin-top: 28px; display: flex; justify-content: center; }

/* ---------- Fact box ---------- */
.axz-facts {
  list-style: none;
  margin: 20px 0;
  border: 1px solid var(--axz-border);
  border-left: 4px solid var(--axz-green);
  border-radius: var(--axz-radius);
  background: var(--axz-panel);
  padding: 8px 0;
}
.axz-facts li { display: flex; gap: 12px; padding: 9px 18px; font-size: 15px; border-bottom: 1px dashed var(--axz-border); align-items: baseline; }
.axz-facts li:last-child { border-bottom: none; }
.axz-facts li strong { flex: 0 0 auto; color: var(--axz-gold-light); }

/* ---------- Callout ---------- */
.axz-callout {
  background: var(--axz-panel-2);
  border: 1px solid var(--axz-border-soft);
  border-radius: var(--axz-radius);
  padding: 18px 22px;
  margin: 18px 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.axz-callout svg { flex: 0 0 auto; margin-top: 3px; }
.axz-callout p { margin: 0; }

/* ---------- Table ---------- */
.axz-tablewrap { overflow-x: auto; margin: 18px 0; border: 1px solid var(--axz-border); border-radius: var(--axz-radius); background: var(--axz-panel); }
.axz-table { border-collapse: collapse; width: 100%; min-width: 560px; font-size: 14.5px; }
.axz-table th, .axz-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--axz-border); }
.axz-table th { background: var(--axz-green-deep); color: #f2f5ff; font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; }
.axz-table tr:last-child td { border-bottom: none; }
.axz-table tr:nth-child(even) td { background: rgba(255, 255, 255, 0.03); }
.axz-table td:first-child { font-weight: 700; }

/* ---------- Bonus cards ---------- */
.axz-bonusgrid { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 28px; }
.axz-bonuscard {
  flex: 1 1 260px;
  max-width: 100%;
  background: var(--axz-panel);
  border: 1px solid var(--axz-border);
  border-radius: var(--axz-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--axz-shadow);
}
.axz-bonuscard__image img { width: 100%; height: 160px; object-fit: cover; }
.axz-bonuscard__content { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.axz-bonuscard__stage { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; color: var(--axz-gold); margin-bottom: 6px; }
.axz-bonuscard__title { font-size: 17px; font-weight: 800; margin: 0 0 8px; line-height: 1.35; color: var(--axz-text); }
.axz-bonuscard__desc { font-size: 14px; color: var(--axz-muted); margin-bottom: 14px; }
.axz-bonuscard__content .axz-btn { margin-top: auto; }

.axz-bonus-stats { list-style: none; margin: 0 0 16px; padding: 0; border: 1px solid var(--axz-border); border-radius: var(--axz-radius); overflow: hidden; }
.axz-bonus-stats li { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; font-size: 13px; border-bottom: 1px solid var(--axz-border); }
.axz-bonus-stats li:last-child { border-bottom: none; }
.axz-bonus-stats li:nth-child(odd) { background: rgba(255, 255, 255, 0.03); }
.axz-bonus-stats li span:first-child { color: var(--axz-muted); font-weight: 500; }
.axz-bonus-stats li span:last-child { font-weight: 700; text-align: right; }
.axz-bonuscard__terms { font-size: 11px; color: var(--axz-muted); margin-bottom: 16px; line-height: 1.5; }

/* ---------- Icon list ---------- */
.axz-checklist { list-style: none; margin: 10px 0 0; display: flex; flex-direction: column; gap: 8px; }
.axz-checklist li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; }
.axz-checklist svg { flex: 0 0 auto; margin-top: 2px; }

/* ---------- Steps ---------- */
.axz-steps { list-style: none; counter-reset: step; margin: 18px 0; display: flex; flex-direction: column; gap: 14px; }
.axz-step { display: flex; gap: 14px; align-items: flex-start; }
.axz-step__num {
  flex: 0 0 34px;
  height: 34px;
  border-radius: 6px;
  background: var(--axz-green);
  color: #ffffff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.axz-step p { margin: 4px 0 0; }

/* ---------- Games row ---------- */
.axz-games { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 24px; }
.axz-game-card {
  flex: 0 1 233px;
  background: var(--axz-panel);
  border: 1px solid var(--axz-border);
  border-radius: var(--axz-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.axz-game-card__img { width: 100%; max-width: 233px; height: 233px; object-fit: cover; }
.axz-game-card__body { padding: 12px 14px; }
.axz-game-card__name { font-weight: 800; font-size: 15px; }
.axz-game-card__meta { font-size: 12px; color: var(--axz-muted); }

/* ---------- Split pros/cons ---------- */
.axz-split { display: flex; flex-wrap: wrap; align-items: stretch; gap: 16px; margin-top: 16px; }
.axz-split__col {
  flex: 1 1 320px;
  background: var(--axz-panel);
  border: 1px solid var(--axz-border);
  border-radius: var(--axz-radius);
  padding: 16px 20px;
}
.axz-split__col h3 { margin: 0 0 10px; display: flex; align-items: center; gap: 10px; color: var(--axz-text); font-size: 15px; }

/* ---------- FAQ ---------- */
.axz-faq { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.axz-faq details {
  background: var(--axz-panel);
  border: 1px solid var(--axz-border);
  border-radius: var(--axz-radius);
  padding: 0 20px;
}
.axz-faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 16px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.axz-faq summary::-webkit-details-marker { display: none; }
.axz-faq summary::after { content: "+"; color: var(--axz-green); font-size: 21px; font-weight: 800; }
.axz-faq details[open] summary::after { content: "–"; }
.axz-faq details p { padding: 0 0 16px; color: var(--axz-muted); }

/* ---------- CTA band ---------- */
.axz-band {
  background: linear-gradient(120deg, #141a30, #2748c9);
  color: #f2f5ff;
  border: 1px solid var(--axz-border-soft);
  border-radius: var(--axz-radius);
  padding: 36px 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.axz-band h2 { margin: 0 0 6px; color: #f2f5ff; }
.axz-band h2::before { display: none; }
.axz-band p { margin: 0; color: #cdd8f5; }
.axz-band .axz-btn--gold { background: #ffffff; color: #1a2547; }
.axz-band .axz-btn--gold:hover { background: var(--axz-gold-light); color: #1a2547; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); }

/* ---------- Legal ---------- */
.axz-legal h1 { font-size: clamp(24px, 3.4vw, 36px); margin-bottom: 6px; }
.axz-legal__stand { color: var(--axz-muted); font-size: 14px; margin-bottom: 24px; }
.axz-legal h2 { font-size: 21px; margin: 26px 0 10px; }
.axz-legal h2::before { display: none; }
.axz-legal ul { margin: 0 0 14px 22px; }
.axz-legal li { margin-bottom: 6px; }

/* ---------- Footer ---------- */
.axz-footer { background: #060a16; color: #b3bdd4; border-top: 2px solid var(--axz-green); padding: 46px 0 30px; margin-top: 60px; }
.axz-footer a { color: var(--axz-gold-light); }
.axz-footer__cols { display: flex; flex-wrap: wrap; gap: 36px; }
.axz-footer__brand { flex: 2 1 300px; }
.axz-footer__brand img { height: 34px; margin-bottom: 14px; }
.axz-footer__brand p { color: #8791ac; font-size: 14px; max-width: 420px; }
.axz-footer__social { display: flex; gap: 12px; margin-top: 16px; }
.axz-footer__social img { width: 26px; height: 26px; }
.axz-footer__nav { flex: 1 1 160px; }
.axz-footer__nav strong { display: block; margin-bottom: 12px; color: var(--axz-gold-light); }
.axz-footer__nav ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.axz-footer__nav a { color: #8791ac; }
.axz-footer__nav a:hover { color: var(--axz-gold-light); }
.axz-paybar { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin: 32px 0 0; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.axz-paybar img { height: 26px; width: auto; opacity: 0.8; border-radius: 4px; padding: 2px 4px; }
.axz-reviewbar { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 22px; }
.axz-reviewbar img { height: 22px; width: auto; opacity: 0.75; }
.axz-reviewbar a:hover img { opacity: 1; }
.axz-footer__legal { margin-top: 26px; border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 18px; }
.axz-footer__legal p { color: #8791ac; font-size: 12.5px; }

/* ---------- Payment methods ---------- */
.axz-paymethods { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 28px; }
.axz-paymethods__item { display: flex; flex-direction: column; align-items: center; gap: 7px; background: var(--axz-panel); border: 1px solid var(--axz-border); border-radius: var(--axz-radius); padding: 14px 18px; min-width: 86px; transition: border-color 0.2s, box-shadow 0.2s; }
.axz-paymethods__item:hover { border-color: var(--axz-green); box-shadow: var(--axz-shadow); }
.axz-paymethods__item img { height: 26px; width: auto; opacity: 0.95; border-radius: 4px; padding: 2px 4px; }
.axz-paymethods__item span { font-size: 11px; color: var(--axz-muted); font-weight: 700; letter-spacing: .02em; white-space: nowrap; }

/* ---------- Mobile section layout ---------- */
.axz-mobile-layout { display: flex; align-items: center; gap: 52px; }
.axz-mobile-svg { flex: 0 0 200px; }
.axz-mobile-text { flex: 1; }
.axz-mobile-text p { margin-bottom: 14px; }
.axz-mobile-text p:last-of-type { margin-bottom: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .axz-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #0a0f22; border-bottom: 1px solid var(--axz-border); flex-direction: column; gap: 0; padding: 10px 20px 16px; }
  .axz-nav.is-open { display: flex; }
  .axz-nav li { border-bottom: 1px solid var(--axz-border); }
  .axz-nav li:last-child { border-bottom: none; }
  .axz-nav a { display: block; padding: 12px 0; border-radius: 0; }
  .axz-burger { display: flex; }
  .axz-header__auth { margin-left: 0; }
  .axz-header__auth .axz-btn--ghost { display: none; }
}

@media (max-width: 767px) {
  .axz-section { padding: 40px 0; }
  .axz-hero__overlay { padding: 20px 0; }
  .axz-hero__title { font-size: clamp(19px, 5.4vw, 26px); max-width: 82%; }
  .axz-hero__subtitle { font-size: 14px; margin: 8px 0 14px; max-width: 82%; }
  .axz-hero__overlay .axz-btn--lg { padding: 11px 22px; font-size: 15px; }
  .axz-band { padding: 26px 20px; }
  .axz-game-card { flex: 1 1 150px; }
  .axz-game-card__img { height: 160px; }
  .axz-mobile-layout { flex-direction: column; gap: 28px; }
  .axz-mobile-svg { width: 160px; margin: 0 auto; }
  .axz-mobile-svg svg { width: 160px; height: auto; }
}
