@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --bg-main: #000;
  --bg-surface: #231f20;
  --bg-surface-light: #302b2c;
  --text-main: #fff;
  --text-muted: rgba(255, 255, 255, .74);
  --accent: #f1ac33;
  --accent-hover: #fac645;
  --aqua: #00ebb3;
  --border-color: rgba(255, 255, 255, .1);
  --font-main: "Inter", "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  background: #000;
  scroll-padding-top: 156px;
}

body {
  min-height: 100vh;
  padding-top: 80px;
  background:
    linear-gradient(180deg, rgba(35, 31, 32, .42), rgba(0, 0, 0, 0) 330px),
    repeating-linear-gradient(135deg, rgba(241, 172, 51, .035) 0 1px, transparent 1px 44px),
    #000 !important;
  color: #fff;
  font-family: var(--font-main);
  letter-spacing: 0;
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: .36;
}

body::before {
  right: -110px;
  top: 210px;
  width: 520px;
  height: 520px;
  background-image:
    linear-gradient(45deg, transparent 46%, rgba(241, 172, 51, .34) 47% 53%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, rgba(0, 235, 179, .18) 47% 53%, transparent 54%);
}

body::after {
  left: -120px;
  bottom: -130px;
  width: 360px;
  height: 360px;
  border: 34px solid rgba(241, 172, 51, .16);
  border-radius: 50%;
}

a {
  color: var(--accent);
}

a:hover {
  color: var(--accent-hover);
}

.container {
  width: min(100% - 32px, 1322px);
  max-width: 1322px;
  padding-left: 0;
  padding-right: 0;
}

h1,
h2,
h3,
h4 {
  letter-spacing: 0;
}

h1 {
  font-size: clamp(34px, 5.2vw, 72px);
  line-height: .98;
  font-weight: 900;
}

h2 {
  margin-top: 48px;
  border-bottom: 0;
  padding-bottom: 0;
  font-size: clamp(25px, 3vw, 40px);
  font-weight: 800;
}

h2::after {
  content: "";
  display: block;
  width: 74px;
  height: 4px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--aqua));
}

h3 {
  font-weight: 800;
}

p,
li,
td {
  color: var(--text-muted);
}

.btn {
  min-height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.btn-primary {
  color: #070707 !important;
  background: linear-gradient(180deg, #fac645 0%, #f1ac33 100%) !important;
  box-shadow: 0 14px 30px rgba(241, 172, 51, .28), inset 0 1px 0 rgba(255,255,255,.45);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #ffdc73 0%, #f1ac33 100%) !important;
  transform: translateY(-1px);
}

.btn-outline {
  color: #fff !important;
  border: 0 !important;
  background: #231f20 !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .09);
}

.btn-outline:hover {
  color: #fff !important;
  background: #302b2c !important;
}

.header {
  position: fixed !important;
  inset: 0 0 auto 0;
  height: 80px;
  padding: 0 30px !important;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  background: #000 !important;
  border-bottom: 1px solid rgba(255, 255, 255, .07) !important;
  box-shadow: 0 10px 34px rgba(0, 0, 0, .45);
}

.header > .container {
  display: contents !important;
}

.logo {
  flex: 0 0 auto;
  gap: 0 !important;
  min-width: 192px;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0;
  letter-spacing: 0 !important;
}

.logo img {
  display: block !important;
  width: 190px;
  height: auto !important;
  max-height: 46px;
  object-fit: contain;
}

header nav.donor-top-nav,
.donor-top-nav {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.donor-top-nav ul {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  list-style: none;
}

.donor-top-nav li {
  margin: 0;
  color: #fff;
}

.donor-top-nav a {
  height: 100%;
  padding: 0 clamp(9px, 1vw, 17px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .9) !important;
  font-size: clamp(12px, .94vw, 15px);
  font-weight: 800;
  white-space: nowrap;
  text-transform: uppercase;
}

.donor-top-nav a:hover {
  color: var(--accent-hover) !important;
  background: rgba(255, 255, 255, .035);
}

.header-actions {
  flex: 0 0 auto;
}

.header-ctas {
  gap: 8px;
}

.mandatory-header-burger-nav {
  flex: 0 0 auto;
  position: static !important;
  margin: 0 !important;
}

.mandatory-header-burger__button,
.mandatory-header-burger--brand .mandatory-header-burger__button,
.mandatory-header-burger--wide .mandatory-header-burger__button,
.mandatory-header-burger--minimal .mandatory-header-burger__button {
  width: 46px !important;
  height: 42px !important;
  border-radius: 6px !important;
  border: 1px solid rgba(255, 255, 255, .1) !important;
  background: #231f20 !important;
  color: #fff !important;
  box-shadow: none !important;
}

.mandatory-header-burger__button span {
  width: 22px !important;
  height: 2px !important;
  background: #fff !important;
}

.mandatory-header-burger__button i {
  display: none !important;
}

.mandatory-header-burger__panel,
.mandatory-header-burger--brand .mandatory-header-burger__panel,
.mandatory-header-burger--wide .mandatory-header-burger__panel,
.mandatory-header-burger--minimal .mandatory-header-burger__panel {
  position: fixed !important;
  top: 86px !important;
  right: 24px !important;
  left: auto !important;
  width: min(360px, calc(100vw - 32px)) !important;
  min-width: 0 !important;
  max-width: none !important;
  transform: none !important;
  grid-template-columns: 1fr !important;
  gap: 4px !important;
  padding: 10px !important;
  border: 1px solid rgba(255, 255, 255, .1) !important;
  border-radius: 6px !important;
  background: rgba(35, 31, 32, .98) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .56) !important;
  backdrop-filter: blur(16px);
}

.mandatory-header-burger__panel a,
.mandatory-header-burger--brand .mandatory-header-burger__panel a,
.mandatory-header-burger--wide .mandatory-header-burger__panel a,
.mandatory-header-burger--minimal .mandatory-header-burger__panel a {
  border: 0 !important;
  border-radius: 4px !important;
  background: transparent !important;
  color: #fff !important;
  font-size: 14px;
  font-weight: 800;
}

.mandatory-header-burger__panel a:hover {
  color: #000 !important;
  background: var(--accent) !important;
  transform: none !important;
}

.hero {
  min-height: clamp(420px, 54vw, 620px);
  padding: clamp(52px, 7vw, 92px) 0 clamp(38px, 5vw, 76px);
  display: grid;
  align-items: center;
  text-align: left !important;
  border-bottom: 0 !important;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .98) 0%, rgba(0, 0, 0, .82) 42%, rgba(0, 0, 0, .2) 100%),
    url("/assets/brand/hero-casino-sports.svg") center / cover no-repeat !important;
}

.hero::before {
  display: none !important;
}

.hero-content {
  width: min(100% - 32px, 1322px);
  max-width: 1322px !important;
  margin: 0 auto !important;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 18px !important;
  color: #fff !important;
  text-shadow: 0 8px 26px rgba(0, 0, 0, .7);
}

.hero h1::first-letter {
  color: var(--accent);
}

.hero-intro,
.offer-box {
  max-width: 700px;
}

.hero-intro {
  color: rgba(255, 255, 255, .84) !important;
  font-size: clamp(16px, 1.2vw, 19px) !important;
  line-height: 1.72;
}

.offer-box {
  display: block !important;
  width: fit-content;
  padding: 18px 22px !important;
  border: 1px solid rgba(241, 172, 51, .7) !important;
  border-radius: 6px !important;
  background: rgba(35, 31, 32, .86) !important;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .34);
}

.offer-box p {
  color: #fff !important;
}

.hero-cta {
  min-height: 54px;
  padding: 0 34px !important;
  font-size: 17px !important;
}

.toc-wrapper {
  position: sticky;
  top: 80px;
  z-index: 30;
  padding: 0 !important;
  background: #231f20 !important;
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .08) !important;
}

.toc-scroll {
  min-height: 92px;
  align-items: center;
  gap: clamp(18px, 3vw, 44px) !important;
  padding: 0 !important;
}

.toc-pill {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(255, 255, 255, .82) !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  text-transform: uppercase;
}

.toc-pill::before {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  margin: 0 auto 8px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(241, 172, 51, .92), rgba(0, 235, 179, .78)),
    #111;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .22);
}

.toc-pill:hover {
  color: var(--accent-hover) !important;
}

.zero-position,
.content-section,
.game-catalog,
.faq-section {
  padding-top: clamp(34px, 5vw, 64px);
  padding-bottom: clamp(22px, 4vw, 48px);
}

.answer-box,
.faq-item,
.app-block,
.table-scroll-wrap {
  border: 1px solid rgba(255, 255, 255, .09) !important;
  border-radius: 6px !important;
  background: linear-gradient(180deg, rgba(48, 43, 44, .96), rgba(35, 31, 32, .96)) !important;
  box-shadow: 0 18px 52px rgba(0, 0, 0, .24);
}

.answer-box {
  border-left: 0 !important;
  position: relative;
}

.answer-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 999px;
  background: var(--accent);
}

th {
  color: #fff !important;
  background: #302b2c !important;
}

td {
  background: #231f20;
}

.game-grid {
  grid-template-columns: repeat(auto-fit, minmax(178px, 1fr)) !important;
  gap: clamp(16px, 2vw, 30px) !important;
  align-items: stretch;
}

.game-grid > .forced-donor-game-img {
  display: none !important;
}

.game-tile {
  min-height: 260px;
  aspect-ratio: 11 / 16 !important;
  justify-content: flex-end !important;
  padding: 0 !important;
  overflow: hidden;
  border: 0 !important;
  border-radius: 25px !important;
  background-color: #231f20 !important;
  background-position: center !important;
  background-size: cover !important;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .38);
}

.game-tile:nth-of-type(4n + 1) {
  background-image: url("/assets/brand/card-sports.svg") !important;
}

.game-tile:nth-of-type(4n + 2) {
  background-image: url("/assets/brand/card-live.svg") !important;
}

.game-tile:nth-of-type(4n + 3) {
  background-image: url("/assets/brand/card-slots.svg") !important;
}

.game-tile:nth-of-type(4n) {
  background-image: url("/assets/brand/card-casino.svg") !important;
}

.game-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, .76) 100%);
  z-index: 1;
  transition: background .28s ease;
}

.game-tile:hover {
  border-color: transparent !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .55), 0 0 0 1px rgba(241, 172, 51, .4);
}

.game-icon {
  display: none !important;
}

.game-tile span {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 18px 12px 22px;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  text-shadow: 0 4px 16px rgba(0, 0, 0, .8);
}

.game-tile::after {
  content: "Spela";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 126px;
  height: 52px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #fac645 0%, #f1ac33 100%);
  color: #000;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  transform: translate(-50%, 260px);
  transition: transform .28s ease;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .46);
}

.game-tile:hover::after {
  transform: translate(-50%, -50%);
}

.game-tile:hover::before {
  background: rgba(0, 0, 0, .74);
}

.game-tile:hover span {
  opacity: .18;
}

.game-tile::selection {
  background: transparent;
}

.sticky-cta .btn {
  border-radius: 0;
}

.app-block {
  text-align: left !important;
  padding: clamp(24px, 4vw, 46px) !important;
  background:
    linear-gradient(90deg, rgba(35, 31, 32, .98), rgba(35, 31, 32, .72)),
    url("/assets/brand/card-sports.svg") right center / auto 120% no-repeat !important;
}

.app-buttons {
  justify-content: flex-start !important;
}

.faq-item h3 {
  color: #fff !important;
}

.sticky-cta {
  background: rgba(35, 31, 32, .98) !important;
  border-top: 1px solid rgba(241, 172, 51, .6) !important;
  backdrop-filter: blur(12px);
}

.footer {
  margin-top: 56px !important;
  padding-top: 52px !important;
  color: rgba(255, 255, 255, .76) !important;
  background: #231f20 !important;
  border-top: 1px solid rgba(255, 255, 255, .08) !important;
}

.footer a,
.footer-nav a,
.footer-contact,
.footer-contact a,
.footer-help a,
.footer-utility-links a {
  color: #fff !important;
}

.footer a:hover {
  color: var(--accent-hover) !important;
}

.footer-disclaimer,
.footer-help,
.footer-copy,
.footer-support-contact,
.responsible-help-line {
  color: rgba(255, 255, 255, .68) !important;
}

.responsible-badge-links a,
.kativo-required-logos__tile {
  color: #fff !important;
  background: rgba(0, 0, 0, .18) !important;
  border-color: rgba(255, 255, 255, .09) !important;
}

@media (max-width: 1200px) {
  header nav.donor-top-nav,
  .donor-top-nav {
    display: none !important;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 68px;
  }

  .header {
    height: 68px;
    padding: 0 14px !important;
  }

  .logo {
    min-width: 154px;
  }

  .logo img {
    width: 154px;
  }

  .header-ctas {
    display: none !important;
  }

  .mandatory-header-burger__panel,
  .mandatory-header-burger--brand .mandatory-header-burger__panel,
  .mandatory-header-burger--wide .mandatory-header-burger__panel,
  .mandatory-header-burger--minimal .mandatory-header-burger__panel {
    top: 74px !important;
    right: 12px !important;
    left: 12px !important;
    width: auto !important;
  }

  .hero {
    min-height: 500px;
    text-align: left !important;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .96) 0%, rgba(0, 0, 0, .64) 52%, rgba(0, 0, 0, .9) 100%),
      url("/assets/brand/hero-casino-sports.svg") center / cover no-repeat !important;
  }

  .toc-wrapper {
    top: 68px;
  }

  .toc-scroll {
    min-height: 78px;
    gap: 22px !important;
  }

  .toc-pill {
    font-size: 13px !important;
  }

  .toc-pill::before {
    width: 34px;
    height: 34px;
    margin-bottom: 6px;
  }

  .game-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .game-tile {
    min-height: 210px;
    border-radius: 18px !important;
  }

  .game-tile span {
    font-size: 15px !important;
  }

  .app-block {
    background: linear-gradient(180deg, rgba(35, 31, 32, .98), rgba(35, 31, 32, .92)) !important;
  }
}

@media (max-width: 420px) {
  .game-grid {
    gap: 12px !important;
  }

  .game-tile {
    min-height: 184px;
  }
}
