:root {
  --navy: #153824;
  --navy-2: #1f4a2f;
  --navy-3: #0e2818;
  --gold: #3f9d5c;
  --gold-2: #5fbf7a;
  --cyan: #8fe0ac;
  --green: #2f8a4d;
  --green-2: #3fae64;
  --red: #e5484d;
  --ink: #1c2a20;
  --muted: #68786d;
  --line: #e4ede4;
  --bg: #f6faf6;
  --card: #ffffff;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(21, 56, 36, 0.1);
  --shadow-lg: 0 20px 50px rgba(21, 56, 36, 0.18);
  --font:
    "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Topbar ===== */
.topstrip {
  background: #0a2015;
  color: #a9d0b3;
  font-size: 12.5px;
}
.topstrip .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 34px;
}
.topstrip .badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.topstrip b {
  color: #fff;
}

/* ===== Header ===== */
header.site {
  background: var(--navy);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}
header.site .wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 112px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.logo svg {
  height: 44px;
  width: auto;
  display: block;
}
.logo img {
  height: 88px;
  width: auto;
  display: block;
}
.logo .txt {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.logo .txt .b1 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.3px;
}
.logo .txt .b1 span {
  color: var(--gold);
}
.logo .txt .b2 {
  font-family: "Poppins", sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #9fdcae;
  text-transform: uppercase;
}
nav.main {
  display: flex;
  gap: 26px;
  margin-left: 12px;
}
nav.main a {
  font-weight: 600;
  font-size: 14.5px;
  color: #dcf2e1;
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
}
nav.main a:hover {
  color: #fff;
}
nav.main a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width 0.2s;
}
nav.main a:hover::after {
  width: 100%;
}
.header-actions {
  margin-left: auto;
  display: flex;
  gap: 12px;
  align-items: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.pill:hover {
  background: rgba(255, 255, 255, 0.14);
}
.burger {
  display: none;
}
.header-usp {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #d7f0dc;
  font-size: 13px;
  font-weight: 600;
}
.header-usp .u {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.header-usp .u b {
  color: var(--gold);
  font-weight: 700;
}
.header-usp .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
}
@media (max-width: 860px) {
  .header-usp {
    display: none;
  }
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-3) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      600px 300px at 85% 10%,
      rgba(63, 157, 92, 0.2),
      transparent 60%
    ),
    radial-gradient(
      500px 300px at 10% 90%,
      rgba(143, 224, 172, 0.14),
      transparent 60%
    );
  pointer-events: none;
}
.hero .wrap {
  display: block;
  padding: 48px 20px 52px;
  position: relative;
}
.hero h1 {
  font-size: 46px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.hero h1 span {
  color: var(--gold);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(63, 157, 92, 0.4);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fff;
  box-shadow: 0 0 24px rgba(63, 157, 92, 0.25);
}
.eyebrow b {
  color: var(--gold);
}
.trustline {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
  color: #cdeada;
  font-size: 14px;
}
.trustline .stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 16px;
}
.trustline .sep {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
}
.trustline b {
  color: #fff;
}
.hero p.lead {
  margin-top: 18px;
  font-size: 16.5px;
  color: #cdeada;
  max-width: 560px;
}
.qcards {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 640px;
}
.qcard {
  background: #fff;
  color: var(--ink);
  border-radius: 14px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 700;
  font-size: 13.5px;
  box-shadow: var(--shadow);
  transition: transform 0.15s;
}
.qcard:hover {
  transform: translateY(-3px);
}
.qcard .ic {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, #d7f5df, #b9ecc4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f7a3d;
}
.qcard .arw {
  margin-top: auto;
  align-self: flex-end;
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-badge {
  width: 300px;
  height: 300px;
  position: relative;
}
.float {
  position: absolute;
  background: #fff;
  color: var(--ink);
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 8px;
}
.float small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}
.f1 {
  top: 2px;
  left: -24px;
}
.f2 {
  top: 64px;
  right: -30px;
}
.f3 {
  bottom: -6px;
  left: 6px;
}
.f4 {
  bottom: 52px;
  right: -14px;
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-2);
  box-shadow: 0 0 0 4px rgba(18, 163, 92, 0.18);
}
/* CSS-visual istället för bild – mjuka gradientfläckar */
.hero-orb {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-orb::before {
  content: "";
  position: absolute;
  inset: -50px;
  z-index: -1;
  filter: blur(26px);
  background:
    radial-gradient(
      circle at 30% 28%,
      rgba(47, 138, 77, 0.85),
      transparent 55%
    ),
    radial-gradient(
      circle at 74% 36%,
      rgba(63, 157, 92, 0.55),
      transparent 52%
    ),
    radial-gradient(
      circle at 60% 76%,
      rgba(143, 224, 172, 0.45),
      transparent 55%
    ),
    radial-gradient(circle at 40% 62%, rgba(31, 87, 48, 0.8), transparent 72%),
    radial-gradient(
      circle at 80% 78%,
      rgba(95, 191, 122, 0.28),
      transparent 45%
    );
}
.orb-in {
  text-align: center;
  color: #fff;
  padding: 0 26px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}
.orb-in .cap {
  font-size: 15px;
  line-height: 1.4;
  color: #eef1ff;
}
.orb-in .cap b {
  color: #fff;
  font-weight: 800;
}
/* små suddiga neoncirklar */
.neon {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}
.n1 {
  width: 140px;
  height: 140px;
  background: rgba(63, 157, 92, 0.5);
  top: -60px;
  right: 0;
}
.n2 {
  width: 100px;
  height: 100px;
  background: rgba(143, 224, 172, 0.5);
  top: 90px;
  left: -70px;
}
.n3 {
  width: 180px;
  height: 180px;
  background: rgba(47, 138, 77, 0.42);
  bottom: -70px;
  right: -50px;
}
.n4 {
  width: 80px;
  height: 80px;
  background: rgba(95, 191, 122, 0.45);
  bottom: 50px;
  left: 10px;
}
.n5 {
  width: 120px;
  height: 120px;
  background: rgba(143, 224, 172, 0.38);
  top: 10px;
  right: -70px;
}
.n6 {
  width: 90px;
  height: 90px;
  background: rgba(63, 157, 92, 0.4);
  bottom: -10px;
  left: -50px;
}

/* ===== Trust row ===== */
.adnote {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.adnote .wrap {
  display: flex;
  justify-content: flex-end;
  padding: 10px 20px;
  color: var(--muted);
  font-size: 12px;
  gap: 6px;
  align-items: center;
}

/* ===== Section head ===== */
section {
  padding: 22px 0;
}
.article > :first-child {
  margin-top: 0;
}
.article > :last-child {
  margin-bottom: 0;
}
.sec-head h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.4px;
}
.sec-head p {
  color: var(--muted);
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}
.check {
  color: var(--green-2);
}

/* ===== Accordion (why us) ===== */
.accordion {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
details {
  border-bottom: 1px solid var(--line);
}
details:last-child {
  border-bottom: 0;
}
summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
summary::-webkit-details-marker {
  display: none;
}
summary .chev {
  transition: transform 0.2s;
  color: var(--muted);
}
details[open] summary .chev {
  transform: rotate(180deg);
}
.acc-body {
  padding: 0 22px 20px;
  color: var(--muted);
}

/* ===== Filter tabs ===== */
.toolbar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 22px;
}
.tab {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 9px 15px;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--muted);
  cursor: pointer;
  transition: 0.15s;
}
.tab:hover {
  border-color: #cfe0d2;
}
.tab.active {
  background: #eaf6ec;
  border-color: #bfe6c8;
  color: var(--gold);
}
.toolbar .spacer {
  margin-left: auto;
}

/* ===== Casino cards ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ccard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    transform 0.18s,
    box-shadow 0.18s;
}
.ccard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.ccard.top {
  border: 2px solid var(--gold);
}
.ccard .head {
  position: relative;
  padding: 26px 18px 20px;
  text-align: center;
  color: #fff;
}
.ccard .head.d1 {
  background: linear-gradient(135deg, #1a1030, #3a2150);
}
.ccard .head.d2 {
  background: linear-gradient(135deg, #0b1a12, #123a24);
}
.ccard .head.d3 {
  background: linear-gradient(135deg, #2a0f14, #4a1720);
}
.rank {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--gold);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.rating {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  padding: 4px 9px;
  font-size: 12.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}
.rating .star {
  color: var(--gold);
}
.clogo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin: 8px 0 12px;
}
.cbrand {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 12.5px;
  font-weight: 600;
}
.ccard .body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.bonusrow {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 10px;
}
.bbox {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}
.bbox.hl {
  background: #eafaf0;
  border-color: #bfead0;
}
.bbox .lbl {
  font-size: 10.5px;
  letter-spacing: 0.6px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
}
.bbox .big {
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  margin-top: 2px;
}
.bbox .sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.feature-note {
  background: #f6f8fd;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  font-weight: 700;
  color: var(--navy);
}
.badges3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  text-align: center;
}
.badges3 .bg {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}
.badges3 .bg .em {
  font-size: 17px;
  display: block;
  margin-bottom: 3px;
}
.btn {
  display: block;
  text-align: center;
  border-radius: 12px;
  padding: 14px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: 0.15s;
}
.btn-green {
  background: var(--green);
  color: #fff;
}
.btn-green:hover {
  background: var(--green-2);
}
.btn-ghost {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 11px;
  font-weight: 700;
  font-size: 13.5px;
}
.btn-ghost:hover {
  border-color: #cfe0d2;
  color: var(--ink);
}
.terms {
  font-size: 10.5px;
  color: #7d9284;
  line-height: 1.5;
  text-align: center;
  margin-top: 2px;
}

/* ===== TOC ===== */
.toc {
  background: #eaf6ec;
  border: 1px solid #cfe8d3;
  border-radius: 14px;
  overflow: hidden;
}
.toc summary {
  background: #e2f2e4;
  font-size: 16px;
}
.toc ol {
  list-style: none;
  counter-reset: t;
}
.toc li {
  counter-increment: t;
  border-top: 1px solid #cfe8d3;
}
.toc li a {
  display: block;
  padding: 13px 22px;
  color: #3f5744;
  font-size: 15px;
}
.toc li a::before {
  content: counter(t) ". ";
  font-weight: 700;
  color: var(--navy);
}
.toc li a:hover {
  background: #e2f2e4;
  color: var(--navy);
}

/* ===== Article ===== */
.article {
  max-width: 1140px;
  margin: 0 auto;
}
.article h2 {
  font-size: 26px;
  font-weight: 800;
  margin: 38px 0 14px;
}
.article h3 {
  font-size: 19px;
  font-weight: 800;
  margin: 26px 0 10px;
}
.article p {
  margin: 0 0 14px;
  color: #3a4666;
}
.article ul {
  margin: 0 0 16px 4px;
  list-style: none;
}
.article ul li {
  position: relative;
  padding: 5px 0 5px 26px;
  color: #3a4666;
}
.article ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.article ol {
  margin: 0 0 16px 4px;
  padding-left: 22px;
  color: #3a4666;
}
.article ol li {
  padding: 4px 0;
  color: inherit;
}
.article a.inline {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
}
.banner {
  border-radius: 16px;
  padding: 34px;
  color: #fff;
  margin: 22px 0;
  background: linear-gradient(120deg, #1f6b39, #3f9d5c);
}
.banner.blue {
  background: linear-gradient(120deg, #1f5730, #2f8a4d);
}
.banner h3 {
  color: #fff;
  font-size: 26px;
  margin: 0 0 6px;
}
.banner p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}
.banner b {
  color: var(--gold-2);
}

.greenbox {
  background: #f0fbf4;
  border: 1px solid #cdeddb;
  border-radius: 16px;
  padding: 24px;
  margin: 20px 0;
  position: relative;
}
.greenbox h3 {
  margin-top: 4px;
}
.greenbox p:last-child {
  margin-bottom: 0;
}
.rankrow {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #dcefe4;
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: 10px;
}
.rankrow .n {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-2);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.rankrow b {
  color: var(--green);
}

/* ===== Steps ===== */
.steps {
  display: grid;
  gap: 16px;
}
.step {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 18px;
  align-items: center;
  background: #f6f8fd;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
}
.step .tag {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.step h3 {
  margin: 0 0 6px;
}
.step p {
  margin: 0;
  color: var(--muted);
}
.step .thumb {
  height: 120px;
  border-radius: 12px;
  background: linear-gradient(135deg, #141b3a, #2a1650);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 34px;
}
.timechip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eaf6ec;
  border: 1px solid #cfe8d3;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

/* ===== Toplist table ===== */
.tablewrap {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
thead {
  background: var(--navy);
  color: #fff;
}
th {
  text-align: left;
  padding: 14px 18px;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
td {
  padding: 15px 18px;
  border-top: 1px solid var(--line);
}
tbody tr:nth-child(even) {
  background: #fafbff;
}
td.rk {
  color: var(--navy);
  font-weight: 800;
}
td .play {
  background: var(--green);
  color: #fff;
  border-radius: 8px;
  padding: 8px 18px;
  font-weight: 700;
  font-size: 13px;
  display: inline-block;
}
td .play:hover {
  background: var(--green-2);
}

/* ===== FAQ ===== */
.faq details {
  background: #0e2818;
  color: #fff;
  border: 0;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq summary {
  color: #fff;
}
.faq .acc-body {
  color: #cdeada;
}
.faq summary .chev {
  color: #8fcf9e;
}

/* ===== Footer ===== */
footer {
  background: var(--navy-3);
  color: #b9d1bd;
  padding: 56px 0 26px;
  font-size: 14px;
}
.fgrid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
}
footer h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 14px;
}
footer .fcol a {
  display: block;
  padding: 5px 0;
  color: #b9d1bd;
}
footer .fcol a:hover {
  color: #fff;
}
.flogo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.flogo img {
  height: 104px;
  width: auto;
  display: block;
}
.fintro {
  color: #7e9683;
  font-size: 13.5px;
  line-height: 1.6;
  max-width: 340px;
}
.reg-badges {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin: 26px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.reg-badges img {
  height: 38px;
  width: auto;
  display: block;
  opacity: 0.85;
  transition: opacity 0.15s;
}
.reg-badges a:hover img {
  opacity: 1;
}
.disclaimer {
  color: #7e9683;
  font-size: 12.5px;
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #6f8a75;
  font-size: 12.5px;
}
.social {
  display: flex;
  gap: 14px;
}
.social a {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cfe9d6;
}
.social a:hover {
  background: var(--gold);
  color: #fff;
}

/* ===== Image placeholders (template guides) ===== */
.imgph {
  border: 2px dashed #c9e0cc;
  border-radius: 12px;
  background: repeating-linear-gradient(
    45deg,
    #eef7ee,
    #eef7ee 12px,
    #e2f0e2 12px,
    #e2f0e2 24px
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #5f7462;
  text-align: center;
  font-weight: 700;
  font-size: 12.5px;
  padding: 10px;
  gap: 3px;
  min-height: 80px;
}
.imgph .fn {
  color: var(--navy);
  font-size: 13px;
}
.imgph .sz {
  font-weight: 600;
  font-size: 11px;
  color: #7c9280;
}
.imgph .ic {
  font-size: 22px;
  margin-bottom: 2px;
}
.imgph.dark {
  background: repeating-linear-gradient(
    45deg,
    #16321f,
    #16321f 12px,
    #13291b 12px,
    #13291b 24px
  );
  border-color: #345d3d;
  color: #b9d1bd;
}
.imgph.dark .fn {
  color: #fff;
}

/* ===== Showcase (vitrin) ===== */
.shead {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
}
.scards + .shead {
  margin-top: 36px;
}
.shead h2 {
  font-size: 22px;
  font-weight: 800;
}
.shead .tagline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eaf6ec;
  border: 1px solid #cfe8d3;
  color: var(--gold);
  font-weight: 700;
  font-size: 12.5px;
  border-radius: 999px;
  padding: 5px 12px;
}
.scards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 100%;
}
.scard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  transition:
    transform 0.18s,
    box-shadow 0.18s;
}
.scard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.scard .pic {
  width: 180px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1f5730, #2a6e3f);
}
.scard .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.scard .pic .ring {
  position: absolute;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.18);
}
.scard .pic svg {
  width: 38px;
  height: 38px;
  position: relative;
  z-index: 1;
  color: #fff;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}
.pic.g1 {
  background: linear-gradient(135deg, #1a4526, #1f7a3d);
}
.pic.g2 {
  background: linear-gradient(135deg, #4a0f3a, #2a7d47);
}
.pic.g3 {
  background: linear-gradient(135deg, #3a1560, #3a9d5c);
}
.pic.g4 {
  background: linear-gradient(135deg, #122a6e, #2b6fd0);
}
.pic.g5 {
  background: linear-gradient(135deg, #1f5730, #22a3d0);
}
.pic.g6 {
  background: linear-gradient(135deg, #3a2a12, #c8951f);
}
.pic.g7 {
  background: linear-gradient(135deg, #0e2f4a, #12a3b8);
}
.pic.g8 {
  background: linear-gradient(135deg, #141a4a, #4a3fd0);
}
.scard .info {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.scard .cname {
  font-weight: 800;
  font-size: 17px;
  text-align: left;
}
.scard .cbonus {
  background: #eaf6ec;
  border: 1px solid #cfe8d3;
  border-radius: 10px;
  padding: 8px 12px;
  text-align: left;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
}
.scard .cbonus .lbl {
  font-size: 10px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.scard .cbonus .val {
  font-size: 15px;
  font-weight: 800;
  color: var(--gold);
}
.scard .cdesc {
  font-size: 13px;
  color: var(--muted);
  text-align: left;
  line-height: 1.45;
}
.scard .sbtn {
  margin-top: auto;
  align-self: flex-start;
  display: inline-block;
  text-align: center;
  background: var(--green);
  color: #fff;
  border-radius: 10px;
  padding: 11px 24px;
  font-weight: 800;
  font-size: 14px;
  transition: 0.15s;
}
.scard .sbtn:hover {
  background: var(--green-2);
}
@media (max-width: 560px) {
  .scard {
    flex-direction: column;
  }
  .scard .pic {
    width: auto;
    height: 120px;
  }
  .scard .sbtn {
    align-self: stretch;
  }
  .scard .cbonus {
    align-self: stretch;
    justify-content: center;
  }
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  nav.main,
  .header-actions .pill span {
    display: none;
  }
  .burger {
    display: inline-flex;
  }
  .hero .wrap {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }
  .hero h1 {
    font-size: 34px;
  }
  .hero-visual {
    order: -1;
  }
  .qcards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .fgrid {
    grid-template-columns: 1fr 1fr;
  }
  .step {
    grid-template-columns: 1fr;
  }
  .step .thumb {
    order: -1;
  }
  th:nth-child(3),
  td:nth-child(3) {
    display: none;
  }
}
@media (max-width: 560px) {
  .hero h1 {
    font-size: 28px;
  }
  .qcards {
    grid-template-columns: 1fr;
  }
  .fgrid {
    grid-template-columns: 1fr;
  }
  .sec-head h2 {
    font-size: 23px;
  }
  .copy {
    flex-direction: column;
    gap: 14px;
  }
}

/* ===== Poppins på alla rubriker ===== */
.sec-head h2,
.article h2,
.article h3,
.shead h2,
.step h3,
.banner h3,
.greenbox h3,
.faq summary,
footer h4,
.clogo {
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.3px;
}

/* ===== Hero CTA + trust ===== */
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 12px;
  padding: 15px 26px;
  font-weight: 800;
  font-size: 15.5px;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    background 0.15s;
}
.btn-hero.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #fff;
  box-shadow: 0 12px 30px rgba(63, 157, 92, 0.42);
}
.btn-hero.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(63, 157, 92, 0.52);
}
.btn-hero.ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}
.btn-hero.ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

/* ===== Author / updated meta ===== */
.meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13.5px;
  margin: 0 0 6px;
}
.meta-row .av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f7a3d, #3f9d5c);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}
.meta-row b {
  color: var(--ink);
}
.meta-row .msep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.6;
}
.meta-row .upd {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.meta-row.on-hero {
  margin: 20px 0 0;
  color: #cdeada;
}
.meta-row.on-hero b {
  color: #fff;
}
.meta-row.on-hero .msep {
  background: #cdeada;
}

/* ===== Pro/Con boxes ===== */
.procon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 22px 0;
}
.pcbox {
  border-radius: 16px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}
.pcbox h4 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pcbox.pro {
  background: #f0fbf4;
  border-color: #cdeddb;
}
.pcbox.con {
  background: #fdf1f1;
  border-color: #f2d3d4;
}
.pcbox ul {
  list-style: none;
  margin: 0;
}
.pcbox li {
  position: relative;
  padding: 5px 0 5px 26px;
  color: #3a4666;
  font-size: 14px;
}
.pcbox.pro li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 5px;
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  color: var(--green-2);
  font-weight: 800;
}
.pcbox.con li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 5px;
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  color: var(--red);
  font-weight: 800;
}
@media (max-width: 640px) {
  .procon {
    grid-template-columns: 1fr;
  }
}

/* ===== Step visual (CSS istället för placeholder) ===== */
.step .thumb {
  height: 120px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1f5730, #2a6e3f);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 6px;
  position: relative;
  overflow: hidden;
}
.step .thumb::after {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 70% 30%, rgba(63, 157, 92, 0.4), transparent 55%),
    radial-gradient(
      circle at 25% 80%,
      rgba(143, 224, 172, 0.35),
      transparent 55%
    );
  filter: blur(8px);
}
.step .thumb .em {
  font-size: 38px;
  position: relative;
  z-index: 1;
}
.step .thumb .cap {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9b8f0;
  position: relative;
  z-index: 1;
  opacity: 0.85;
}

/* ===== Spelpaus infografik (CSS) ===== */
.infografik {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin: 22px 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.infografik .col {
  padding: 24px 22px;
}
.infografik .col.a {
  background: linear-gradient(160deg, #1a4526, #153824);
  color: #fff;
}
.infografik .col.b {
  background: linear-gradient(160deg, #0f9d6a, #0b7d54);
  color: #fff;
}
.infografik .col h4 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.infografik .col ul {
  list-style: none;
  margin: 0;
}
.infografik .col li {
  position: relative;
  padding: 5px 0 5px 22px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.9);
}
.infografik .col li::before {
  content: "›";
  position: absolute;
  left: 2px;
  top: 4px;
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  font-weight: 800;
  opacity: 0.7;
}
.infografik .vs {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0e2818;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 14px;
  padding: 0 16px;
}
@media (max-width: 640px) {
  .infografik {
    grid-template-columns: 1fr;
  }
  .infografik .vs {
    padding: 10px;
  }
}

/* ===== Statistik / trust ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 24px 18px;
  text-align: center;
}
.stat .num {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat .lbl {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 600;
  font-size: 13.5px;
}
@media (max-width: 640px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Senaste topplista ===== */
.toplist {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.trow {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 44px 178px 1fr 280px 176px;
  align-items: center;
  gap: 24px;
  min-height: 132px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px 26px 18px 30px;
  transition:
    transform 0.18s,
    box-shadow 0.18s;
}
.trow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--gold), #2f8a4d);
}
.trow:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.trow:hover .tbtn {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(63, 157, 92, 0.5);
}
.trow .tn {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: linear-gradient(135deg, #3f9d5c, #1f7a3d);
  color: #fff;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(47, 138, 77, 0.3);
}
.trow .ticon {
  width: 178px;
  height: 104px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: 1.6px solid #d9cef0;
  flex-shrink: 0;
}
.trow .ticon .em {
  font-size: 38px;
  line-height: 1;
}
.trow .ticon .lb {
  font-size: 11px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.2;
  padding: 0 10px;
  text-align: center;
}
.trow .ttitle {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 19px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: -0.2px;
}
.trow .tfeat {
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.trow .tfeat li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  color: #3a4666;
  font-weight: 600;
}
.trow .tfeat li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 19px;
  height: 19px;
  border-radius: 6px;
  background: linear-gradient(135deg, #3f9d5c, #5fbf7a);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trow .tbtn {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #fff;
  border-radius: 12px;
  padding: 15px 20px;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  white-space: nowrap;
  box-shadow: 0 10px 26px rgba(63, 157, 92, 0.4);
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}
.trow .tbtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(63, 157, 92, 0.5);
}
@media (max-width: 820px) {
  .trow {
    grid-template-columns: 44px 1fr;
    gap: 14px 18px;
    justify-items: start;
  }
  .trow .ticon {
    width: 100%;
    height: 84px;
  }
  .trow .ttitle {
    grid-column: 1/-1;
  }
  .trow .tfeat {
    grid-column: 1/-1;
  }
  .trow .tbtn {
    grid-column: 1/-1;
    width: 100%;
  }
}



.footer-menu {
    list-style: none;
}