/* SpinEmpire Austria 4 — dark alpine green / champagne gold */

:root {
  --alm-bg: #0d1512;
  --alm-panel: #142019;
  --alm-panel-2: #1b2b22;
  --alm-border: rgba(216, 185, 106, 0.16);
  --alm-green: #2f8a63;
  --alm-green-deep: #1f5c42;
  --alm-gold: #d8b96a;
  --alm-gold-light: #ecd39a;
  --alm-text: #eef3ee;
  --alm-muted: #a8b8ac;
  --alm-radius: 12px;
}

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

html { scroll-behavior: smooth; }

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

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

a { color: var(--alm-gold); }

h1, h2, h3 { line-height: 1.25; font-weight: 800; }

h2 { font-size: 28px; margin-bottom: 18px; }
h3 { font-size: 19px; }

p + p { margin-top: 14px; }

/* layout */
.alm-wrap { max-width: 1160px; margin: 0 auto; padding: 0 20px; }

/* header */
.alm-header {
  background: rgba(13, 21, 18, 0.97);
  border-bottom: 1px solid var(--alm-border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.alm-header__bar {
  max-width: 1160px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.alm-logo { flex: 1; }
.alm-logo img { height: 40px; width: auto; }

.alm-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}

.alm-nav a {
  color: var(--alm-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.alm-nav a:hover, .alm-nav a.is-active { color: var(--alm-gold); border-bottom-color: var(--alm-gold); }

.alm-header__auth { display: flex; gap: 10px; flex: 1; justify-content: flex-end; }

.alm-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--alm-border);
  border-radius: 8px;
  cursor: pointer;
  padding: 0 9px;
}

.alm-burger span { height: 2px; background: var(--alm-gold); border-radius: 2px; }

/* buttons */
.alm-btn {
  display: inline-block;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.alm-btn:hover { transform: translateY(-1px); filter: brightness(1.08); }

.alm-btn--gold {
  background: linear-gradient(135deg, var(--alm-gold-light), var(--alm-gold));
  color: #21190a;
}

.alm-btn--ghost {
  background: transparent;
  color: var(--alm-text);
  border: 1px solid var(--alm-gold);
}

.alm-btn--lg { padding: 14px 30px; font-size: 17px; }

.alm-btn--full { display: block; width: 100%; }

/* hero */
.alm-hero { position: relative; }

.alm-hero picture { display: block; }

.alm-hero img { width: 100%; height: auto; }

.alm-hero__link { display: block; }

.alm-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 40px 0;
  pointer-events: none;
}

.alm-hero__overlay > * { pointer-events: auto; }

.alm-hero__overlay .alm-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.alm-hero__title {
  font-size: 40px;
  max-width: 640px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65);
}

.alm-hero__subtitle {
  margin: 14px 0 22px;
  font-size: 18px;
  max-width: 560px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* sections */
.alm-section { padding: 52px 0; }

.alm-section--panel { background: var(--alm-panel); border-top: 1px solid var(--alm-border); border-bottom: 1px solid var(--alm-border); }

.alm-icon-row { display: flex; align-items: flex-start; gap: 36px; margin-top: 24px; }
.alm-icon-row__icon { flex-shrink: 0; }
.alm-icon-row__icon svg { display: block; filter: drop-shadow(0 0 12px rgba(216,185,106,0.18)); }
.alm-icon-row__body { flex: 1; min-width: 0; }
.alm-icon-row__body p:first-child { margin-top: 0; }
.alm-section__cta { margin-top: 26px; display: flex; justify-content: center; }

/* intro highlight cards */
.alm-points { display: flex; flex-wrap: wrap; gap: 18px; margin: 24px 0; }

.alm-point {
  flex: 1 1 260px;
  display: flex;
  gap: 14px;
  background: var(--alm-panel-2);
  border: 1px solid var(--alm-border);
  border-radius: var(--alm-radius);
  padding: 18px;
}

.alm-point svg { flex: 0 0 auto; }

.alm-point strong { display: block; margin-bottom: 5px; }

.alm-point p { font-size: 14px; color: var(--alm-muted); }

/* tables */
.alm-tablewrap { overflow-x: auto; margin: 20px 0; }

.alm-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--alm-panel-2);
  border: 1px solid var(--alm-border);
  border-radius: var(--alm-radius);
  overflow: hidden;
  font-size: 15px;
}

.alm-table th, .alm-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--alm-border); }

.alm-table th { background: var(--alm-green-deep); color: var(--alm-gold-light); font-weight: 700; }

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

/* game gallery */
.alm-games { display: flex; flex-wrap: wrap; gap: 18px; margin: 26px 0 8px; }

.alm-game {
  flex: 1 1 160px;
  max-width: 233px;
  background: var(--alm-panel-2);
  border: 1px solid var(--alm-border);
  border-radius: var(--alm-radius);
  overflow: hidden;
}

.alm-game img { width: 100%; object-fit: cover; }

.alm-game figcaption { padding: 10px 12px 12px; font-weight: 700; font-size: 14px; display: flex; flex-direction: column; }

.alm-game figcaption em { font-style: normal; font-weight: 400; color: var(--alm-muted); font-size: 12px; margin-top: 2px; }

/* providers strip */
.alm-providers { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 26px; opacity: 0.85; }

.alm-providers img { height: 30px; width: auto; }

/* bonus cards */
.alm-bonusgrid { display: flex; flex-wrap: wrap; gap: 22px; margin: 28px 0 6px; }

.alm-bonuscard {
  flex: 1 1 0;
  min-width: 0;
  background: var(--alm-panel-2);
  border: 1px solid var(--alm-border);
  border-radius: var(--alm-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.alm-bonuscard__image img { width: 100%; object-fit: cover; }

.alm-bonuscard__content { padding: 20px; display: flex; flex-direction: column; flex: 1; }

.alm-bonuscard__stage {
  color: var(--alm-gold);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.alm-bonuscard__content h3 { margin-bottom: 10px; }

.alm-bonuscard__desc { color: var(--alm-muted); font-size: 14px; margin-bottom: 16px; }

.alm-bonus-stats { list-style: none; margin: 0 0 16px; padding: 0; border: 1px solid var(--alm-border); border-radius: var(--alm-radius); overflow: hidden; }

.alm-bonus-stats li { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; font-size: 13px; border-bottom: 1px solid var(--alm-border); }

.alm-bonus-stats li:last-child { border-bottom: none; }

.alm-bonus-stats li:nth-child(odd) { background: rgba(255, 255, 255, 0.02); }

.alm-bonus-stats li span:first-child { color: var(--alm-muted); font-weight: 500; }

.alm-bonus-stats li span:last-child { font-weight: 700; text-align: right; }

.alm-bonuscard__terms { font-size: 11px; color: var(--alm-muted); margin-bottom: 16px; line-height: 1.5; }

.alm-bonuscard__content .alm-btn { margin-top: auto; }

/* steps */
.alm-steps { counter-reset: step; list-style: none; margin: 20px 0; display: flex; flex-direction: column; gap: 12px; }

.alm-steps li {
  counter-increment: step;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--alm-panel-2);
  border: 1px solid var(--alm-border);
  border-radius: var(--alm-radius);
  padding: 14px 18px;
}

.alm-steps li::before {
  content: counter(step);
  flex: 0 0 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--alm-green);
  color: #fff;
  font-weight: 800;
}

/* plain lists inside content */
.alm-list { margin: 14px 0 14px 20px; display: flex; flex-direction: column; gap: 8px; }

/* pros / cons */
.alm-balance { display: flex; flex-wrap: wrap; gap: 20px; margin: 24px 0; }

.alm-balance__col {
  flex: 1 1 320px;
  background: var(--alm-panel-2);
  border: 1px solid var(--alm-border);
  border-radius: var(--alm-radius);
  padding: 22px;
}

.alm-balance__col h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }

.alm-balance__col ul { margin-left: 20px; display: flex; flex-direction: column; gap: 8px; }

/* FAQ */
.alm-faq { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }

.alm-faq details {
  background: var(--alm-panel-2);
  border: 1px solid var(--alm-border);
  border-radius: var(--alm-radius);
  padding: 0 20px;
}

.alm-faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 16px 0;
  list-style: none;
  position: relative;
  padding-right: 30px;
}

.alm-faq summary::-webkit-details-marker { display: none; }

.alm-faq summary::after {
  content: "+";
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--alm-gold);
  font-size: 22px;
  font-weight: 400;
}

.alm-faq details[open] summary::after { content: "–"; }

.alm-faq details p { padding-bottom: 16px; color: var(--alm-muted); }

/* CTA band */
.alm-band { background: linear-gradient(120deg, var(--alm-green-deep), var(--alm-panel)); border-top: 1px solid var(--alm-border); padding: 44px 0; }

.alm-band .alm-wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }

.alm-band p { font-size: 22px; font-weight: 800; }

/* legal pages */
.alm-legal h1 { font-size: 34px; margin-bottom: 6px; }

.alm-legal h2 { font-size: 22px; margin: 30px 0 12px; }

.alm-legal .alm-stand { color: var(--alm-muted); margin-bottom: 24px; font-size: 14px; }

/* footer */
.alm-footer { background: #0a100d; border-top: 1px solid var(--alm-border); padding: 44px 0 26px; margin-top: 40px; }

.alm-footer__cols { display: flex; flex-wrap: wrap; gap: 34px; margin-bottom: 30px; }

.alm-footer__brand { flex: 2 1 300px; }

.alm-footer__brand img { height: 38px; width: auto; margin-bottom: 14px; }

.alm-footer__brand p { color: var(--alm-muted); font-size: 14px; }

.alm-footer__social { display: flex; gap: 12px; margin-top: 16px; }

.alm-footer__social img { height: 26px; width: 26px; }

.alm-footer__nav { flex: 1 1 160px; }

.alm-footer__nav strong { display: block; margin-bottom: 12px; color: var(--alm-gold); }

.alm-footer__nav ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.alm-footer__nav a { color: var(--alm-text); text-decoration: none; font-size: 14px; }

.alm-footer__nav a:hover { color: var(--alm-gold); }

.alm-paybar, .alm-reviewbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--alm-border);
}

.alm-paybar img { height: 26px; width: auto; }

.alm-reviewbar a { display: flex; }

.alm-reviewbar img { height: 24px; width: auto; opacity: 0.85; }

.alm-reviewbar a:hover img { opacity: 1; }

.alm-footer__legal { border-top: 1px solid var(--alm-border); padding-top: 18px; }

.alm-footer__legal p { color: var(--alm-muted); font-size: 12px; }

/* responsive */
@media (max-width: 900px) {
  .alm-bonuscard { flex: 1 1 calc(50% - 11px); }
  .alm-hero__title { font-size: 28px; }
  h2 { font-size: 24px; }
  .alm-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--alm-panel);
    border-bottom: 1px solid var(--alm-border);
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 20px;
    gap: 4px;
    margin-left: 0;
  }
  .alm-nav.is-open { display: flex; }
  .alm-nav li { width: 100%; }
  .alm-nav a { display: block; padding: 10px 0; }
  .alm-burger { display: flex; }
  .alm-header__auth .alm-btn--ghost { display: none; }
}

@media (max-width: 600px) {
  .alm-bonuscard { flex: 1 1 100%; }
  .alm-hero__title { font-size: 21px; }
  .alm-hero__subtitle { font-size: 14px; margin: 8px 0 14px; }
  .alm-hero__overlay { padding: 20px 0; }
  .alm-btn--lg { padding: 11px 22px; font-size: 15px; }
  .alm-section { padding: 38px 0; }
  .alm-band p { font-size: 17px; }
  .alm-game { max-width: none; flex: 1 1 45%; }
}
