:root {
  --gold: #f5bf75;
  --gold-bright: #fff8a2;
  --gold-mid: #f4d695;
  --gold-deep: #ba8c53;
  --ink: #0a0a0a;
  --ink-soft: #141210;
  --panel: #1c1612;
  --panel-lift: #2a2118;
  --wood-1: #3a2818;
  --wood-2: #24180f;
  --text: #f6f1e6;
  --muted: #cbbba3;
  --quiet: #8f8374;
  --line: rgba(245, 191, 117, 0.28);
  --danger: #c62828;
  --radius: 12px;
  --radius-pill: 999px;
  --sidebar: 240px;
  --topbar: 80px;
  --dock: 72px;
  --max: 100%;
  --font: Lato, "Segoe UI", Roboto, Arial, sans-serif;
  --display: Vollkorn, Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 10000;
  background: var(--gold);
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 8px;
}

.skip-link:focus {
  left: 8px;
}

.cursor-pointer {
  cursor: pointer;
}

.outline-none {
  outline: none;
}

.menu-check {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rail {
  position: fixed;
  z-index: 50;
  left: 0;
  right: 0;
  top: 0;
  height: var(--topbar);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 12px;
  background: var(--ink);
  color: #fff;
}

.rail-brand img {
  width: 112px;
  min-width: 96px;
  height: auto;
}

.rail-actions {
  display: none;
  align-items: center;
  gap: 8px;
}

.legal-flag {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  font-size: 13px;
}

.flag-stack {
  width: 12px;
}

.flag-stack span {
  display: block;
  height: 6px;
}

.flag-stack span:nth-child(1) {
  background: #ed2939;
}

.flag-stack span:nth-child(2) {
  background: #fff;
}

.flag-stack span:nth-child(3) {
  background: #ed2939;
}

.rail-age {
  display: none;
}

.frame {
  padding-top: var(--topbar);
  padding-bottom: 96px;
  background: #0b0b0b;
  min-height: 100vh;
}

.stage {
  width: 100%;
  margin: 0 auto;
  padding: 0 10px 40px;
}

[role="button"][aria-label="jackpot-piraten"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: var(--radius-pill);
  border: 2px solid var(--gold);
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright) 48%, var(--gold-deep));
  color: #111;
  font-weight: 700;
  line-height: 1.2;
  user-select: none;
}

[role="button"][aria-label="jackpot-piraten"]:not(.hero-slide):hover {
  opacity: 0.92;
}

[role="button"][aria-label="jackpot-piraten"]:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.jp-cta-reg-rail,
.jp-cta-login-rail,
.jp-cta-reg-dock,
.jp-cta-login-dock {
  min-width: 0;
  height: 40px;
  padding: 0 10px;
  font-size: 14px;
}

.dock .jp-cta-reg-dock,
.dock .jp-cta-login-dock {
  flex: 1 1 0;
}

[role="button"][aria-label="jackpot-piraten"].jp-cta-login-rail,
[role="button"][aria-label="jackpot-piraten"].jp-cta-login-dock {
  background: #000;
  color: var(--gold);
}

[role="button"][aria-label="jackpot-piraten"].jp-cta-login-rail:hover,
[role="button"][aria-label="jackpot-piraten"].jp-cta-login-dock:hover {
  background: var(--gold);
  color: #111;
}

[role="button"][aria-label="jackpot-piraten"].jp-cta-demo {
  background: transparent;
  color: var(--gold);
}

[role="button"][aria-label="jackpot-piraten"].jp-cta-chat-rail {
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
}

.jp-cta-chat-rail img {
  width: 40px;
  height: 40px;
}

.menu-open,
.menu-close {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.rail .menu-open {
  display: none;
}

.menu-open img {
  width: 30px;
  height: 21px;
  filter: brightness(0) invert(1);
}

.menu-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  color: #fff;
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  cursor: pointer;
}

.menu-check:checked ~ .drawer {
  display: block;
}

.drawer-panel {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  bottom: 0;
  width: min(100vw, 360px);
  overflow: auto;
  background: var(--ink);
  padding: 56px 20px 24px;
  border-right: 1px solid var(--line);
}

.drawer-nav {
  display: grid;
  gap: 4px;
}

.drawer-nav [role="button"][aria-label="jackpot-piraten"] {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  justify-content: stretch;
  column-gap: 16px;
  row-gap: 0;
  width: 100%;
  min-height: 48px;
  padding: 10px 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  text-align: left;
}

.drawer-nav .nav-ico {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
}

.drawer-nav .nav-ico svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.drawer-nav [role="button"][aria-label="jackpot-piraten"]:hover {
  color: var(--gold);
  opacity: 1;
}

.cat-row [role="button"][aria-label="jackpot-piraten"],
.prov-row [role="button"][aria-label="jackpot-piraten"] {
  width: 100%;
  justify-content: flex-start;
  border-radius: 10px;
  background: var(--panel);
  color: var(--text);
  border: 1px solid var(--line);
  padding: 10px 12px;
  font-weight: 700;
}

.foot-col [role="button"][aria-label="jackpot-piraten"],
.top-games [role="button"][aria-label="jackpot-piraten"] {
  width: 100%;
  justify-content: flex-start;
  text-align: left;
  align-items: flex-start;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  padding: 4px 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: normal;
}

.foot-col [role="button"][aria-label="jackpot-piraten"]:hover,
.top-games [role="button"][aria-label="jackpot-piraten"]:hover {
  color: var(--gold);
  opacity: 1;
}

.hero {
  position: relative;
  overflow: hidden;
  margin: 0 0 24px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 248, 162, 0.18), transparent 36%),
    linear-gradient(135deg, #1a120c 0%, #3a2716 48%, #120e0a 100%);
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  min-height: 280px;
}

.hero-inner {
  padding: 28px 22px 24px;
}

.hero-kicker {
  margin: 0 0 8px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}

.hero h2,
.hero-title {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: clamp(28px, 6vw, 46px);
  line-height: 1.1;
  color: var(--gold-bright);
}

.hero-lead {
  margin: 0 0 18px;
  max-width: 36rem;
  color: var(--text);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.jp-cta-hero-reg,
.jp-cta-hero-play,
.jp-cta-mid-reg,
.jp-cta-final-reg,
.jp-cta-bonus-activate,
.jp-cta-pay-deposit,
.jp-cta-demo {
  min-height: 48px;
  padding: 12px 22px;
  font-size: 16px;
}

[role="button"][aria-label="jackpot-piraten"].see-all {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.page-title {
  margin: 8px 0 6px;
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.15;
}

.stand {
  margin: 0 0 16px;
  color: var(--quiet);
  font-size: 14px;
}

.lead,
.prose p {
  margin: 0 0 16px;
  color: var(--text);
}

.prose {
  margin-top: 8px;
}

.prose h2 {
  margin: 32px 0 12px;
  font-family: var(--display);
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.2;
  color: var(--gold-mid);
}

.prose h3 {
  margin: 24px 0 10px;
  font-size: 20px;
  color: var(--gold);
}

.prose ul,
.prose ol {
  margin: 0 0 16px;
  padding-left: 1.2rem;
}

.prose li {
  margin: 0 0 8px;
}

.facts {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 24px;
  background: rgba(12, 8, 6, 0.55);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 8px 0 24px;
}

.facts th,
.facts td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(245, 191, 117, 0.14);
  vertical-align: top;
}

.facts th {
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
}

.badges {
  display: grid;
  gap: 12px;
  margin: 8px 0 28px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(12, 8, 6, 0.55);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.badge img {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
}

.badge strong {
  display: block;
  color: var(--gold-mid);
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin: 28px 0 12px;
}

.section-head h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 30px);
  color: var(--gold-mid);
}

.section-head h2 img {
  width: 18px;
  height: 18px;
}

.tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 24px;
}

[role="button"][aria-label="jackpot-piraten"].tile {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 148px;
  padding: 0;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(180deg, #2a1d14, #15100c);
  color: var(--text);
  border: 1px solid var(--line);
}

.tile-art {
  flex: 1;
  display: grid;
  place-items: center;
  min-height: 96px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 248, 162, 0.2), transparent 58%),
    linear-gradient(160deg, #4a331f, #1a120c);
  font-family: var(--display);
  font-size: 28px;
  color: var(--gold-bright);
}

.tile-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 700;
}

.tile-name img {
  width: 14px;
  height: 22px;
  flex: 0 0 14px;
}

.cat-row,
.prov-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
}

.cat-row [role="button"][aria-label="jackpot-piraten"],
.prov-row [role="button"][aria-label="jackpot-piraten"] {
  width: auto;
  border-radius: var(--radius-pill);
  padding: 8px 14px;
}

.pay-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  margin: 8px 0 24px;
  padding: 16px;
  background: rgba(12, 8, 6, 0.45);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.pay-row img {
  height: 28px;
  width: auto;
  max-width: 110px;
}

.welcome-band {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 8px 0 28px;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(186, 140, 83, 0.25), rgba(255, 248, 162, 0.12));
  border: 1px solid var(--line);
}

.welcome-band p {
  margin: 0;
}

[role="button"][aria-label="jackpot-piraten"].welcome-band {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  color: var(--text);
  background: linear-gradient(90deg, rgba(186, 140, 83, 0.28), rgba(255, 248, 162, 0.12));
  border-radius: 16px;
}

[role="button"][aria-label="jackpot-piraten"].welcome-band span:last-child {
  flex: 0 0 auto;
  white-space: nowrap;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright) 48%, var(--gold-deep));
  color: #111;
  border-radius: var(--radius-pill);
  padding: 10px 16px;
}

.age-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.age-mark img {
  width: 40px;
  height: 40px;
}

.dock {
  position: fixed;
  z-index: 45;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-height: var(--dock);
  padding: 8px 12px;
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dock .menu-open {
  margin-right: auto;
  width: 44px;
  height: 44px;
}

.dock .menu-open img {
  width: 28px;
  height: 20px;
}

.site-foot {
  background: #080808;
  color: #ddd;
  padding: 36px 0 120px;
  border-top: 1px solid var(--line);
}

.foot-inner {
  width: calc(100% - 20px);
  max-width: none;
  margin: 0 auto;
}

.foot-grid {
  display: grid;
  gap: 22px;
}

.foot-brand img {
  width: 160px;
  min-width: 140px;
}

.foot-col h2 {
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--gold);
}

.foot-col {
  display: grid;
  gap: 8px;
  align-content: start;
}

.disclaimer {
  margin: 24px 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.foot-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.foot-meta img {
  height: 28px;
  width: auto;
}

.ggl-mark {
  height: 32px;
  width: auto;
}

.lost {
  padding: 48px 0 24px;
}

.lost h1 {
  font-family: var(--display);
}

.hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 700;
}

.hero-actions a:hover {
  background: var(--gold);
  color: #111;
  text-decoration: none;
}

@keyframes wiggle {
  0%,
  92% {
    transform: rotate(0deg);
  }
  96% {
    transform: rotate(2deg);
  }
  98% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.jp-cta-reg-rail,
.jp-cta-reg-dock,
.jp-cta-hero-reg {
  animation: wiggle 6s ease-in-out infinite;
}

@media (max-width: 767px) {
  .drawer-panel {
    width: 100%;
    border-right: 0;
  }

  .pay-bar img {
    height: 40px;
    max-width: 140px;
  }
}

@media (max-width: 420px) {
  .jp-cta-reg-dock,
  .jp-cta-login-dock {
    min-width: 0;
    height: 36px;
    padding: 0 8px;
    font-size: 13px;
  }

  [role="button"][aria-label="jackpot-piraten"].jp-cta-chat-float {
    display: none;
  }
}

@media (min-width: 640px) {
  .tiles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .badges {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-inner {
    padding: 40px 36px 32px;
  }
}

@media (min-width: 768px) {
  .rail {
    top: 0;
    bottom: 0;
    right: auto;
    width: var(--sidebar);
    height: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 32px 20px 20px;
  }

  .rail-brand {
    display: grid;
    place-items: center;
    margin-bottom: 24px;
  }

  .rail-brand img {
    width: 160px;
    min-width: 140px;
  }

  .rail-actions {
    display: flex;
    flex-direction: column;
  }

  .jp-cta-reg-rail,
  .jp-cta-login-rail {
    width: 100%;
    height: 48px;
    font-size: 18px;
  }

  .legal-flag {
    display: flex;
    justify-content: center;
    margin: 28px 0 16px;
    margin-left: 0;
  }

  .rail-age {
    display: flex;
    justify-content: center;
    margin: 8px 0 0;
  }

  .rail-foot {
    display: flex;
  }

  .rail-foot .menu-open {
    display: grid;
  }

  .frame {
    padding-top: 0;
    padding-bottom: 0;
    margin-left: var(--sidebar);
  }

  .dock {
    display: none;
  }

  .site-foot {
    padding-bottom: 40px;
    margin-left: var(--sidebar);
  }

  .tiles {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .foot-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }

  .welcome-band {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .tiles {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .jp-cta-reg-rail,
  .jp-cta-reg-dock,
  .jp-cta-hero-reg {
    animation: none;
  }

  [role="button"][aria-label="jackpot-piraten"].hero-slide {
    animation: none;
  }

  [role="button"][aria-label="jackpot-piraten"].hero-slide:first-child {
    opacity: 1;
  }
}

.rail-foot {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  color: #cfcfcf;
}

.rail-clock {
  font-variant-numeric: tabular-nums;
  font-size: 14px;
  min-width: 3.2em;
  text-align: center;
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  width: calc(100% + 20px);
  margin-left: -10px;
  margin-right: -10px;
  aspect-ratio: 1678 / 600;
  min-height: 180px;
  background: #000;
}

[role="button"][aria-label="jackpot-piraten"].hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  opacity: 0;
  animation: heroFade 12s infinite;
}

[role="button"][aria-label="jackpot-piraten"].hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

[role="button"][aria-label="jackpot-piraten"].hero-slide:nth-child(1) {
  animation-delay: 0s;
}

[role="button"][aria-label="jackpot-piraten"].hero-slide:nth-child(2) {
  animation-delay: 3s;
}

[role="button"][aria-label="jackpot-piraten"].hero-slide:nth-child(3) {
  animation-delay: 6s;
}

[role="button"][aria-label="jackpot-piraten"].hero-slide:nth-child(4) {
  animation-delay: 9s;
}

@keyframes heroFade {
  0% {
    opacity: 1;
  }
  22% {
    opacity: 1;
  }
  28% {
    opacity: 0;
  }
  95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.hero-dots {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 18px;
  z-index: 4;
  display: flex;
  gap: 8px;
  pointer-events: none;
  transform: translateX(-50%);
}

.hero-dots span {
  display: block;
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
  animation: dotPulse 12s infinite;
}

.hero-dots span:nth-child(1) {
  animation-delay: 0s;
}

.hero-dots span:nth-child(2) {
  animation-delay: 3s;
}

.hero-dots span:nth-child(3) {
  animation-delay: 6s;
}

.hero-dots span:nth-child(4) {
  animation-delay: 9s;
}

@keyframes dotPulse {
  0%,
  24% {
    background: var(--gold);
  }
  25%,
  100% {
    background: rgba(255, 255, 255, 0.35);
  }
}

.pay-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 20px;
  width: calc(100% + 20px);
  margin-left: -10px;
  margin-right: -10px;
  padding: 16px 10px;
  background: #141414;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pay-bar-note {
  flex: 1 0 100%;
  margin: 0;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.pay-bar img {
  height: 36px;
  width: auto;
  max-width: 130px;
}

[role="button"][aria-label="jackpot-piraten"].hero-slide {
  animation-fill-mode: none;
}

[role="button"][aria-label="jackpot-piraten"].hero-slide:nth-child(1) {
  opacity: 1;
}

.scroller,
.carousel-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 8px 4px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.scroller::-webkit-scrollbar,
.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel {
  position: relative;
  display: block;
  margin: 0 0 20px;
}

.carousel-btn {
  position: absolute;
  top: 86px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(12, 12, 12, 0.72);
  cursor: pointer;
  user-select: none;
}

.carousel-prev {
  left: 8px;
}

.carousel-next {
  right: 8px;
}

.carousel-btn img {
  width: 12px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.carousel-prev img {
  transform: scaleX(-1);
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.9);
}

.carousel-cards .carousel-btn {
  top: 108px;
}

.carousel-track {
  min-width: 0;
  padding: 0 0 4px;
}

[role="button"][aria-label="jackpot-piraten"].tile-img {
  flex: 0 0 calc((100% - 12px) / 2);
  width: calc((100% - 12px) / 2);
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #fff;
  scroll-snap-align: start;
}

[role="button"][aria-label="jackpot-piraten"].tile-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
}

.tile-cap {
  padding: 8px 4px 0;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.prov-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px 30px;
  padding: 28px 8px;
}

.prov-strip [role="button"][aria-label="jackpot-piraten"] {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 4px;
}

.prov-strip [role="button"][aria-label="jackpot-piraten"]:hover {
  opacity: 0.8;
}

.prov-strip img {
  height: 52px;
  width: auto;
  max-width: 220px;
  opacity: 0.95;
}

.foot-cta-row [role="button"][aria-label="jackpot-piraten"] {
  min-width: 140px;
  height: 44px;
  padding: 0 18px;
}

[role="button"][aria-label="jackpot-piraten"].jp-cta-foot-login {
  background: #000;
  color: var(--gold);
}

[role="button"][aria-label="jackpot-piraten"].vid-card {
  flex: 0 0 100%;
  width: 100%;
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #fff;
  text-align: left;
  scroll-snap-align: start;
}

[role="button"][aria-label="jackpot-piraten"].vid-card > img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
}

.vid-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 4px 0;
  font-size: 13px;
}

.vid-meta img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.trust-row,
.tp-widget {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin: 12px auto;
  padding: 8px 12px;
  background: transparent;
}

.tp-widget-top {
  margin: 4px auto 10px;
}

.tp-widget-foot {
  margin: 0 auto 28px;
}

.tp-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}

.tp-mark {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  background: #00b67a;
  color: #fff;
  font-size: 13px;
  line-height: 1;
}

.tp-stars {
  display: flex;
  gap: 3px;
}

.tp-sq {
  position: relative;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  overflow: hidden;
  background: #dcdce6;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

.tp-sq b {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background: #00b67a;
}

.tp-sq.is-half b {
  width: 50%;
}

.tp-sq span {
  position: relative;
  z-index: 1;
}

.tp-meta {
  margin: 0;
  color: #fff;
  font-size: 14px;
}

.tp-count {
  text-decoration: underline;
}

.wood-band {
  display: grid;
  gap: 18px;
  margin: 8px 0 28px;
  padding: 28px 18px;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.45)),
    url("/images/0053_wooden-bg.16377df8.webp") center / cover;
}

.wood-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px;
}

.wood-item img {
  width: 132px;
  height: 132px;
}

[role="button"][aria-label="jackpot-piraten"].news-card,
[role="button"][aria-label="jackpot-piraten"].guide-card {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 12px;
  background: #121212;
  color: #fff;
  text-align: left;
  overflow: hidden;
  scroll-snap-align: start;
}

[role="button"][aria-label="jackpot-piraten"].news-card:hover,
[role="button"][aria-label="jackpot-piraten"].guide-card:hover {
  border-color: var(--gold);
  opacity: 1;
}

[role="button"][aria-label="jackpot-piraten"].news-card img,
[role="button"][aria-label="jackpot-piraten"].guide-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  min-height: 320px;
  object-fit: cover;
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 96px;
  padding: 14px 4px 8px;
}

.card-body strong {
  display: block;
  color: var(--gold-mid);
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 0;
}

.card-body span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.card-meta {
  margin-top: auto;
  color: var(--quiet);
  font-size: 12px;
}

.top-games {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  margin: 8px 0 24px;
}

.foot-grid {
  grid-template-columns: 1fr 1fr;
}

.legal-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 24px;
  margin: 24px auto;
}

.legal-row img {
  height: 48px;
  width: auto;
}

.prose {
  width: 100%;
  margin: 24px 0 0;
}

.mid-visual {
  display: flex;
  justify-content: flex-start;
  margin: 28px 0;
}

.mid-visual img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

.vid-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 12px;
  margin: 0;
}

.carousel-videos .carousel-btn {
  top: 28%;
}

.foot-col h2,
.top-title {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.foot-brand-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin-bottom: 20px;
}

.foot-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vid-stats {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.vid-stats img {
  width: 16px;
  height: 16px;
}

.rtp-tag {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 11px;
}

.tile-frame {
  position: relative;
}

@media (min-width: 768px) {
  .rail-foot {
    display: flex;
  }

  .wood-band {
    grid-template-columns: repeat(3, 1fr);
    margin: 8px 0 36px;
  }

  [role="button"][aria-label="jackpot-piraten"].tile-img {
    flex: 0 0 calc((100% - 36px) / 4);
    width: calc((100% - 36px) / 4);
    max-width: none;
  }

  [role="button"][aria-label="jackpot-piraten"].news-card,
  [role="button"][aria-label="jackpot-piraten"].guide-card {
    flex: 0 0 calc((100% - 12px) / 2);
    width: calc((100% - 12px) / 2);
  }

  .top-games {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .foot-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .hero-carousel {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    min-height: 280px;
  }

  .pay-bar {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 18px 0;
  }

  [role="button"][aria-label="jackpot-piraten"].vid-card {
    flex: 0 0 calc((100% - 24px) / 3);
    width: calc((100% - 24px) / 3);
  }

  .carousel-videos .carousel-btn {
    display: none;
  }
}

@media (min-width: 1024px) {
  .stage {
    width: 100%;
    padding: 0 20px 40px;
  }

  .site-foot {
    padding-left: 20px;
    padding-right: 20px;
  }

  [role="button"][aria-label="jackpot-piraten"].tile-img {
    flex: 0 0 calc((100% - 72px) / 7);
    width: calc((100% - 72px) / 7);
  }

  [role="button"][aria-label="jackpot-piraten"].news-card,
  [role="button"][aria-label="jackpot-piraten"].guide-card {
    flex: 0 0 calc((100% - 36px) / 4);
    width: calc((100% - 36px) / 4);
  }

  .carousel-btn {
    top: 64px;
  }

  .carousel-cards .carousel-btn {
    top: 42%;
  }

  [role="button"][aria-label="jackpot-piraten"].news-card img,
  [role="button"][aria-label="jackpot-piraten"].guide-card img {
    min-height: 340px;
    aspect-ratio: 4 / 5;
  }
}
