/* SpinEmpire Austria — Alpine Petrol theme */

:root {
  --alp-bg: #0a1e24;
  --alp-surface: #10313b;
  --alp-surface-2: #154050;
  --alp-border: rgba(128, 202, 212, 0.16);
  --alp-text: #eaf5f3;
  --alp-muted: #9cb9bd;
  --alp-copper: #d3813f;
  --alp-copper-dark: #b0602a;
  --alp-aqua: #63c9be;
  --alp-radius: 14px;
  --alp-radius-sm: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Mulish', 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--alp-text);
  background: var(--alp-bg);
}

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

a { color: var(--alp-aqua); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ---------- Typography ---------- */

h1, h2, h3 { line-height: 1.25; font-weight: 700; }
.alp-h2 { font-size: 32px; margin-bottom: 18px; }
.alp-h3 { font-size: 20px; margin: 24px 0 10px; }
.alp-section p { margin-bottom: 14px; }
.alp-section p:last-child { margin-bottom: 0; }
.alp-muted { color: var(--alp-muted); }

.alp-section { padding: 56px 0; }
.alp-section--tint { background: linear-gradient(180deg, rgba(21, 64, 80, 0.35), rgba(10, 30, 36, 0)); }

.alp-section ul, .alp-section ol { margin: 0 0 16px 22px; }
.alp-section li { margin-bottom: 8px; }

/* ---------- Buttons ---------- */

.alp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.alp-btn:hover { text-decoration: none; transform: translateY(-1px); }

.alp-btn--copper {
  background: linear-gradient(135deg, #e0904c, #b45f24);
  color: #1c0f04;
}
.alp-btn--copper:hover { background: linear-gradient(135deg, #eb9d59, #c26a2b); }

.alp-btn--ghost {
  background: transparent;
  color: var(--alp-text);
  border-color: rgba(128, 202, 212, 0.4);
}
.alp-btn--ghost:hover { border-color: var(--alp-aqua); background: rgba(99, 201, 190, 0.08); }

.alp-btn--lg { padding: 15px 34px; font-size: 17px; }
.alp-btn--full { width: 100%; }

/* ---------- Header ---------- */

.alp-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10, 30, 36, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--alp-border);
}

.alp-header__bar {
  max-width: 1160px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.alp-head__left { display: flex; align-items: center; gap: 12px; }

.alp-logo img { height: 38px; width: auto; }

.alp-nav ul { display: flex; gap: 26px; list-style: none; }
.alp-nav a {
  color: var(--alp-text);
  font-weight: 700;
  font-size: 15px;
  position: relative;
  padding: 4px 0;
}
.alp-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 2px;
  background: var(--alp-copper);
  transition: right 0.25s ease;
}
.alp-nav a:hover { text-decoration: none; }
.alp-nav a:hover::after, .alp-nav a.active::after { right: 0; }

.alp-head__actions { display: flex; gap: 10px; }
.alp-head__actions .alp-btn { padding: 8px 16px; font-size: 13px; }

.alp-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--alp-border);
  border-radius: var(--alp-radius-sm);
  cursor: pointer;
}
.alp-burger span { display: block; height: 2px; background: var(--alp-text); border-radius: 2px; }
.alp-burger:hover { border-color: var(--alp-aqua); }

/* Mobile panel */

.alp-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 12, 15, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 70;
}

.alp-mobile-panel {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: min(300px, 88vw);
  background: var(--alp-surface);
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  z-index: 80;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

body.alp-menu-open { overflow: hidden; }
body.alp-menu-open .alp-mobile-overlay { opacity: 1; pointer-events: auto; }
body.alp-menu-open .alp-mobile-panel { transform: translateX(0); }

.alp-mobile-panel__head { display: flex; align-items: center; justify-content: space-between; }
.alp-mobile-panel__logo img { height: 32px; width: auto; }

.alp-mobile-panel__close {
  width: 38px; height: 38px;
  background: transparent;
  border: 1px solid var(--alp-border);
  border-radius: var(--alp-radius-sm);
  color: var(--alp-text);
  font-size: 20px;
  cursor: pointer;
}

.alp-mobile-panel__nav { list-style: none; }
.alp-mobile-panel__nav li { margin-bottom: 4px; }
.alp-mobile-panel__nav a {
  display: block;
  padding: 10px 8px;
  color: var(--alp-text);
  font-weight: 700;
  border-radius: var(--alp-radius-sm);
}
.alp-mobile-panel__nav a:hover { background: rgba(99, 201, 190, 0.08); text-decoration: none; }

.alp-mobile-panel__actions { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }

/* ---------- Hero ---------- */

.alp-hero { position: relative; }
.alp-hero picture { display: block; }
.alp-hero img { width: 100%; height: auto; }

.alp-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 40px 0;
  pointer-events: none;
}
.alp-hero__overlay > * { pointer-events: auto; }
.alp-hero__overlay .alp-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.alp-hero__title {
  font-size: 40px;
  max-width: 620px;
  text-shadow: 0 2px 14px rgba(4, 12, 15, 0.75);
}
.alp-hero__subtitle {
  font-size: 18px;
  max-width: 540px;
  margin: 12px 0 22px;
  text-shadow: 0 2px 10px rgba(4, 12, 15, 0.75);
}

/* ---------- Feature cards / icon rows ---------- */

.alp-features { display: flex; flex-wrap: wrap; gap: 18px; margin: 26px 0 0; }
.alp-feature {
  flex: 1 1 240px;
  background: var(--alp-surface);
  border: 1px solid var(--alp-border);
  border-radius: var(--alp-radius);
  padding: 22px;
}
.alp-feature svg { margin-bottom: 12px; }
.alp-feature h3 { font-size: 17px; margin-bottom: 6px; }
.alp-feature p { color: var(--alp-muted); font-size: 14px; margin: 0; }

/* ---------- Split section (image | text) ---------- */

.alp-split { display: flex; align-items: center; gap: 40px; }
.alp-split__media { flex: 0 1 42%; }
.alp-split__media img { border-radius: var(--alp-radius); width: 100%; object-fit: cover; }
.alp-split__body { flex: 1 1 54%; }
.alp-split--reverse { flex-direction: row-reverse; }

/* ---------- Steps ---------- */

.alp-steps { list-style: none; margin: 20px 0 0; counter-reset: alp-step; }
.alp-steps li {
  counter-increment: alp-step;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--alp-border);
}
.alp-steps li:last-child { border-bottom: none; }
.alp-steps li::before {
  content: counter(alp-step);
  flex: 0 0 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(211, 129, 63, 0.16);
  color: var(--alp-copper);
  font-weight: 700;
}

/* ---------- Bonus cards ---------- */

.alp-bonus-grid { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 28px; }

.alp-bonus-card {
  flex: 1 1 460px;
  background: var(--alp-surface);
  border: 1px solid var(--alp-border);
  border-radius: var(--alp-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.alp-bonus-card__image img { width: 100%; object-fit: cover; }

.alp-bonus-card__content { padding: 22px; display: flex; flex-direction: column; flex: 1; }

.alp-bonus-card__stage {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--alp-copper);
  margin-bottom: 6px;
}
.alp-bonus-card__title { font-size: 20px; margin-bottom: 10px; }
.alp-bonus-card__desc { color: var(--alp-muted); font-size: 14px; margin-bottom: 16px; }

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

.alp-bonus-card__terms {
  font-size: 11px;
  color: var(--alp-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}
.alp-bonus-card__content .alp-btn { margin-top: auto; }

/* ---------- Section CTA ---------- */

.alp-section__cta { display: flex; justify-content: center; margin-top: 26px; }

/* ---------- Payment methods row ---------- */

.alp-paylist { display: flex; flex-wrap: wrap; gap: 14px; margin: 22px 0; }
.alp-paylist__item {
  flex: 1 1 140px;
  max-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--alp-surface);
  border: 1px solid var(--alp-border);
  border-radius: var(--alp-radius-sm);
  padding: 16px 18px;
  transition: border-color 0.2s ease;
}
.alp-paylist__item:hover { border-color: rgba(211, 129, 63, 0.5); }
.alp-paylist__item img { height: 28px; width: auto; opacity: 0.85; }

/* ---------- Tables ---------- */

.alp-table-scroll { overflow-x: auto; margin: 20px 0; }
.alp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 560px;
}
.alp-table th, .alp-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--alp-border);
}
.alp-table th {
  color: var(--alp-aqua);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.alp-table tr:nth-child(odd) td { background: rgba(255, 255, 255, 0.02); }

/* ---------- Games ---------- */

.alp-games { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 26px; }
.alp-game {
  flex: 1 1 200px;
  max-width: 233px;
  background: var(--alp-surface);
  border: 1px solid var(--alp-border);
  border-radius: var(--alp-radius);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.alp-game:hover { transform: translateY(-4px); border-color: rgba(211, 129, 63, 0.5); }
.alp-game__img { aspect-ratio: 1 / 1; overflow: hidden; }
.alp-game__img img { width: 100%; height: 100%; object-fit: cover; }
.alp-game__name {
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.alp-providers { display: flex; flex-wrap: wrap; gap: 16px; margin: 32px 0 0; }
.alp-provider {
  background: var(--alp-surface);
  border: 1px solid var(--alp-border);
  border-radius: var(--alp-radius-sm);
  padding: 18px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.alp-provider img {
  max-width: 110px;
  height: 36px;
  object-fit: contain;
  opacity: 0.65;
  transition: opacity 0.2s ease;
}
.alp-provider:hover img { opacity: 1; }

/* ---------- Pros / cons ---------- */

.alp-balance { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 24px; }
.alp-balance__col {
  flex: 1 1 320px;
  background: var(--alp-surface);
  border: 1px solid var(--alp-border);
  border-radius: var(--alp-radius);
  padding: 24px;
}
.alp-balance__col h3 { font-size: 17px; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.alp-balance__col ul { list-style: none; margin: 0; }
.alp-balance__col li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
  font-size: 15px;
}
.alp-balance__col li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 9px; height: 9px;
  border-radius: 50%;
}
.alp-balance__col--plus li::before { background: var(--alp-aqua); }
.alp-balance__col--minus li::before { background: var(--alp-copper); }

/* ---------- Reviews slider ---------- */

.alp-reviews-slider { position: relative; overflow: hidden; margin-top: 28px; }
.alp-reviews-track { display: flex; gap: 24px; transition: transform 0.4s ease; }

.alp-review-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 280px;
  background: var(--alp-surface);
  padding: 24px;
  border-radius: var(--alp-radius);
  border: 1px solid var(--alp-border);
}
.alp-review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}
.alp-review-card__header h4 { font-size: 15px; }
.alp-review-card__stars { color: var(--alp-copper); font-size: 13px; letter-spacing: 2px; white-space: nowrap; }
.alp-review-card__meta { color: var(--alp-muted); font-size: 12px; margin-bottom: 12px; }
.alp-review-card > p:last-child { font-size: 14px; margin: 0; }

.alp-slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.alp-slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--alp-border);
  background: var(--alp-surface-2);
  color: var(--alp-text);
  font-size: 17px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.alp-slider-btn:hover { border-color: var(--alp-copper); }
.alp-slider-dots { display: flex; gap: 8px; }
.alp-slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(128, 202, 212, 0.25);
  cursor: pointer;
  padding: 0;
}
.alp-slider-dot.active { background: var(--alp-copper); }

/* ---------- FAQ ---------- */

.alp-faq { margin-top: 24px; }
.alp-faq__item {
  border: 1px solid var(--alp-border);
  border-radius: var(--alp-radius-sm);
  margin-bottom: 12px;
  background: var(--alp-surface);
  overflow: hidden;
}
.alp-faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: transparent;
  border: none;
  color: var(--alp-text);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.alp-faq__q svg { flex: 0 0 auto; transition: transform 0.25s ease; }
.alp-faq__item.open .alp-faq__q svg { transform: rotate(45deg); }
.alp-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.alp-faq__a-inner { padding: 0 20px 18px; color: var(--alp-muted); font-size: 15px; }

/* ---------- CTA band ---------- */

.alp-cta-band {
  background: linear-gradient(120deg, rgba(211, 129, 63, 0.18), rgba(99, 201, 190, 0.1));
  border: 1px solid rgba(211, 129, 63, 0.35);
  border-radius: var(--alp-radius);
  padding: 36px 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.alp-cta-band h2 { font-size: 26px; margin: 0; }
.alp-cta-band p { margin: 6px 0 0; color: var(--alp-muted); }

/* ---------- Footer ---------- */

.alp-footer {
  margin-top: 40px;
  border-top: 1px solid var(--alp-border);
  background: #081a1f;
  padding: 48px 0 28px;
  font-size: 14px;
}

.alp-footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.alp-footer__brand { flex: 1 1 260px; }
.alp-footer__brand img { height: 34px; width: auto; margin-bottom: 14px; }
.alp-footer__brand p { color: var(--alp-muted); }

.alp-footer__nav { flex: 0 1 180px; }
.alp-footer__nav h4 { font-size: 14px; margin-bottom: 12px; color: var(--alp-aqua); }
.alp-footer__nav ul { list-style: none; }
.alp-footer__nav li { margin-bottom: 8px; }
.alp-footer__nav a { color: var(--alp-text); }

.alp-footer__social { display: flex; gap: 12px; margin-top: 6px; }
.alp-footer__social a {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--alp-border);
  border-radius: 50%;
}
.alp-footer__social img { width: 18px; height: 18px; }
.alp-footer__social a:hover { border-color: var(--alp-aqua); }

.alp-footer__pay, .alp-footer__reviews {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--alp-border);
}
.alp-footer__pay img { height: 26px; width: auto; opacity: 0.8; }
.alp-footer__reviews a { display: flex; align-items: center; }
.alp-footer__reviews img { height: 22px; width: auto; opacity: 0.7; transition: opacity 0.2s ease; }
.alp-footer__reviews a:hover img { opacity: 1; }

.alp-footer__bottom {
  border-top: 1px solid var(--alp-border);
  padding-top: 20px;
  color: var(--alp-muted);
  font-size: 12px;
}
.alp-footer__bottom p { margin-bottom: 8px; }

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .alp-nav { display: none; }
  .alp-burger { display: flex; }
  .alp-head__actions .alp-btn--ghost { display: none; }

  .alp-h2 { font-size: 26px; }
  .alp-hero__title { font-size: 30px; }
  .alp-hero__subtitle { font-size: 16px; margin: 8px 0 16px; }

  .alp-split, .alp-split--reverse { flex-direction: column; }
  .alp-split__media { flex-basis: auto; width: 100%; }

  .alp-review-card { flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 600px) {
  .alp-section { padding: 40px 0; }
  .alp-hero__overlay { padding: 20px 0; }
  .alp-hero__title { font-size: 22px; max-width: 100%; }
  .alp-hero__subtitle { font-size: 14px; display: none; }
  .alp-review-card { flex: 0 0 100%; }
  .alp-game { max-width: none; flex: 1 1 44%; }
  .alp-cta-band { padding: 26px 20px; }
}
