
/* =====================
   LeoVegas Sverige Tema
   ===================== */
:root {
  --lv-orange: #F37021; /* primär accent */
  --lv-orange-2: #FF7A00; /* accentgradient */
  --lv-brown: #3b2b23; /* mörk textton */
  --bg: #0f0f10;
  --card: #18191c;
  --muted: #a7a7ab;
  --text: #ffffff;
  --shadow: 0 8px 30px rgba(0,0,0,.25);
  --radius: 16px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: linear-gradient(180deg, #1a1b1e 0%, #101113 100%);
  color: var(--text);
}

img { max-width: 100%; height: auto; display: block; }
.container { width: min(1200px, calc(100% - 32px)); margin-inline: auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: linear-gradient(90deg, var(--lv-orange) 0%, var(--lv-orange-2) 100%);
  box-shadow: var(--shadow);
}
.header-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; padding: 10px 0; }
.brand img { height: 42px; width: auto; }

.main-nav ul { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; justify-content: center; }
.main-nav a { color: #fff; text-decoration: none; font-weight: 600; letter-spacing: .2px; }
.main-nav a:hover { text-decoration: underline; }

.header-cta { display: flex; gap: 10px; }

/* Knappar */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 16px; border-radius: 999px; text-decoration: none; font-weight: 700; transition: transform .05s ease, filter .15s ease; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: #fff; color: var(--lv-brown); }
.btn-primary:hover { filter: brightness(.95); }
.btn-ghost { border: 2px solid #fff; color: #fff; background: transparent; }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-lg { padding: 14px 22px; font-size: 1.05rem; }

/* Burger (mobil) */
.burger { display: none; background: transparent; border: 0; width: 44px; height: 44px; border-radius: 8px; }
.burger span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px auto; }

/* Hero */
.hero { position: relative; isolation: isolate; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(1000px 400px at 20% 10%, rgba(255,255,255,.12), transparent),
              linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.5));
}
.hero-content { display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; padding: 44px 0 24px; align-items: center; }
.hero-copy h1 { font-size: clamp(28px, 4vw, 44px); margin: 0 0 12px; }
.hero-copy p { color: #f1f1f3; margin: 0 0 10px; }
.hero-actions { display: flex; gap: 12px; margin-top: 12px; flex-wrap: wrap; }
.hero-art { height: 320px; border-radius: var(--radius); background:
  url('hero-casino.jpg') center/cover no-repeat, linear-gradient(135deg, #37261f 0%, #1d1511 100%);
  box-shadow: var(--shadow);
}

/* Innehåll */
.content { padding: 32px 0 64px; }
.section { background: var(--card); border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius); padding: 24px; margin: 16px 0; box-shadow: var(--shadow); }
.section h2 { margin-top: 0; font-size: 1.6rem; }
.steps { counter-reset: step; padding-left: 0; list-style: none; }
.steps li { position: relative; padding-left: 44px; margin: 10px 0; }
.steps li::before { counter-increment: step; content: counter(step); position: absolute; left: 0; top: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--lv-orange); color: #fff; display: grid; place-items: center; font-weight: 800; }

.table-scroll { overflow:auto; }
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { text-align: left; border-bottom: 1px solid rgba(255,255,255,.08); padding: 10px 8px; }
.table thead th { position: sticky; top: 0; background: #1b1c1f; }

.table-games img { width: 120px; height: auto; border-radius: 10px; border: 1px solid rgba(255,255,255,.1); }

.bonus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.card { background: #1f2024; border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius); padding: 20px; }
.card h3 { margin-top: 0; }
.card.note { background: #221f1b; }
.list-check { padding: 0; margin: 12px 0; list-style: none; }
.list-check li { position: relative; padding-left: 28px; margin: 8px 0; }
.list-check li::before { content: "✔"; position: absolute; left: 0; top: 0; }

.games-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 16px; }
.tag { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); padding: 6px 10px; border-radius: 999px; }

.store-badges { display: flex; gap: 10px; }
.store { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 12px; background: #0b0b0c; border: 1px solid rgba(255,255,255,.08); color: #fff; text-decoration: none; }

/* Footer */
.site-footer { background: #0b0b0c; border-top: 1px solid rgba(255,255,255,.08); margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; padding: 28px 0; }
.site-footer h3 { margin: 0 0 12px; }
.links { list-style: none; margin: 0; padding: 0; }
.links a { color: #eaeaf0; text-decoration: none; }
.links a:hover { text-decoration: underline; }
.footer-bottom { padding: 12px 0 24px; color: var(--muted); font-size: .95rem; }
.legal { color: var(--muted); font-size: .95rem; }

/* Klistrad spela-knapp */
.sticky-play {
  position: fixed; left: 16px; bottom: 16px; z-index: 60;
  background: linear-gradient(180deg, var(--lv-orange-2), var(--lv-orange));
  color: #fff; text-decoration: none; font-weight: 800; letter-spacing: .3px;
  padding: 12px 18px; border-radius: 999px; box-shadow: var(--shadow);
}
.sticky-play:hover { filter: brightness(1.05); }

/* Responsivt */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .header-inner { grid-template-columns: auto auto 1fr; }
  .main-nav { position: absolute; left: 0; right: 0; top: 64px; background: rgba(0,0,0,.6); backdrop-filter: blur(8px); padding: 12px; display: none; }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: center; }
  .burger { display: inline-flex; align-items: center; justify-content: center; }
}
