@font-face {
  font-family: "MafiaBody";
  src: url("content/fonts/mafia-body-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: "MafiaBody";
  src: url("content/fonts/mafia-body-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: "MafiaDisplay";
  src: url("content/fonts/mafia-display-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: optional;
}

:root {
  --px-bg: #050a18;
  --px-card: #111c37;
  --px-card-soft: #0c152b;
  --px-border: #25345f;
  --px-text: #eef2ff;
  --px-muted: #adb8d9;
  --px-accent: #e3134e;
  --px-accent-2: #ff7ea3;
  --px-gold: #ffcf70;
  --px-space: clamp(16px, 2.1vw, 24px);
  --px-radius: 16px;
  --px-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: clip;
}

body {
  font-family: "MafiaBody", "Trebuchet MS", sans-serif;
  color: var(--px-text);
  background:
    radial-gradient(circle at 15% 10%, rgba(242, 39, 91, 0.22) 0%, rgba(242, 39, 91, 0) 35%),
    radial-gradient(circle at 80% -10%, rgba(57, 86, 160, 0.25) 0%, rgba(57, 86, 160, 0) 40%),
    linear-gradient(180deg, #070d1d 0%, #040812 100%);
  line-height: 1.6;
}

a {
  color: #d9e6ff;
  text-underline-offset: 3px;
}

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

h1,
h2,
h3 {
  font-family: "MafiaDisplay", "Impact", sans-serif;
  letter-spacing: 0.4px;
  line-height: 1.2;
  margin: 0 0 12px;
}

p,
ul,
ol,
figure,
table,
details {
  margin: 0 0 16px;
}

.px-layout {
  display: block;
}

.px-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 304px;
  background: linear-gradient(180deg, #0d1428 0%, #080f1f 100%);
  border-right: 1px solid var(--px-border);
  padding: 18px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 18;
  overflow-y: auto;
}

.px-logo-link {
  display: block;
  width: 100%;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.px-logo-link img {
  width: min(100%, 230px);
  aspect-ratio: 230 / 65;
  height: auto;
  margin: 0 auto;
}

.px-sidebar-cta-wrap {
  display: grid;
  gap: 10px;
}

.px-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  min-width: 220px;
  padding: 10px 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.px-btn:hover,
.px-btn:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.px-btn-primary {
  color: #ffffff;
  background: linear-gradient(145deg, #ff1f60 0%, #bf093f 100%);
  box-shadow: 0 8px 18px rgba(215, 17, 83, 0.35);
}

.px-btn-secondary {
  color: #f7f8ff;
  background: linear-gradient(145deg, #2b406f 0%, #1a2951 100%);
  border-color: #3e5d98;
}

.de-sidebar-nav {
  display: grid;
  gap: 8px;
  margin-top: 2px;
}

.de-sidebar-nav a {
  display: block;
  padding: 9px 12px;
  border-radius: 10px;
  background: #111b34;
  border: 1px solid #1f3059;
  color: #d9e2ff;
  text-decoration: none;
  font-size: 14px;
}

.de-sidebar-nav a:hover,
.de-sidebar-nav a:focus-visible {
  border-color: #ff5a88;
  background: linear-gradient(120deg, #2f1d3a, #172849);
}

.px-sidebar-note {
  margin-top: auto;
  color: var(--px-muted);
  font-size: 13px;
}

.px-main-wrap {
  margin-left: 304px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.px-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px var(--px-space);
  background: rgba(10, 16, 34, 0.92);
  border-bottom: 1px solid rgba(84, 106, 157, 0.45);
  backdrop-filter: blur(6px);
}

.px-menu-dot {
  border: 1px solid #40568c;
  background: #101a34;
  color: #eef2ff;
  padding: 8px 10px;
  border-radius: 8px;
}

.px-topbar-search {
  margin: 0;
  padding: 9px 14px;
  border-radius: 10px;
  border: 1px solid #2c3d68;
  color: #c6d2f2;
  background: #0c142a;
  min-width: 260px;
  flex: 1;
}

.px-topbar-actions {
  display: flex;
  gap: 8px;
}

.px-topbar-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 120px;
  padding: 8px 14px;
  border-radius: 9px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #3e5d98;
  color: #f5f7ff;
  background: #16254a;
}

.px-main {
  padding: var(--px-space);
  display: flex;
  flex-direction: column;
  gap: var(--px-space);
}

.px-main > :not(#px7-hero):not(#px7-nav-accordion):not(#hv-top-games) {
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}

.px-section,
.px-nav-accordion,
.px-cta-banner,
.px-hero {
  border-radius: var(--px-radius);
  border: 1px solid var(--px-border);
  background: linear-gradient(180deg, rgba(17, 28, 55, 0.95) 0%, rgba(10, 18, 35, 0.95) 100%);
  box-shadow: var(--px-shadow);
}

.px-section,
.px-nav-accordion {
  padding: clamp(16px, 2vw, 24px);
}

.px-hero {
  position: relative;
  overflow: hidden;
}

.px-hero img {
  width: 100%;
  height: clamp(280px, 39vw, 460px);
  object-fit: cover;
}

.px-hero-card {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(560px, calc(100% - 36px));
  background: rgba(8, 14, 31, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 18px 20px 20px;
  text-align: center;
}

.px-hero-card .px-eyebrow {
  margin-bottom: 8px;
  color: var(--px-gold);
  font-weight: 700;
  letter-spacing: 0.4px;
}

.px-nav-trigger {
  width: 100%;
  text-align: left;
  padding: 12px 14px;
  background: #132142;
  border: 1px solid #334d82;
  border-radius: 10px;
  color: #ecf2ff;
  font-weight: 700;
  cursor: pointer;
}

.px-nav-accordion ul {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

[data-nav-panel][hidden] {
  display: none;
}

.px-nav-accordion li {
  margin: 0;
}

.px-nav-accordion a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #2c4272;
  background: #0f1a34;
  color: #e7eeff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.px-nav-accordion a:hover,
.px-nav-accordion a:focus-visible {
  border-color: #ff5f8e;
  background: linear-gradient(120deg, #30203f, #172949);
}

.px-contact-form {
  margin-top: 18px;
  padding: clamp(14px, 1.8vw, 20px);
  border-radius: 14px;
  border: 1px solid #2b4374;
  background: linear-gradient(180deg, rgba(13, 23, 46, 0.98) 0%, rgba(10, 18, 35, 0.98) 100%);
  display: grid;
  gap: 12px;
}

.px-contact-form h3 {
  margin: 0;
}

.px-contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.px-field {
  display: grid;
  gap: 6px;
}

.px-field label {
  font-weight: 700;
  font-size: 14px;
  color: #dce7ff;
}

.px-contact-form input,
.px-contact-form select,
.px-contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #36548f;
  border-radius: 10px;
  padding: 10px 12px;
  color: #eff3ff;
  background: #0c1630;
  font: inherit;
}

.px-contact-form textarea {
  min-height: 136px;
  resize: vertical;
}

.px-contact-form input::placeholder,
.px-contact-form textarea::placeholder {
  color: #8fa3d1;
}

.px-contact-form input:focus-visible,
.px-contact-form select:focus-visible,
.px-contact-form textarea:focus-visible {
  outline: none;
  border-color: #ff5f8e;
  box-shadow: 0 0 0 3px rgba(255, 95, 142, 0.2);
}

.px-contact-form .px-btn {
  justify-self: start;
  min-width: 220px;
}

.px-slots-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.px-slot-card {
  position: relative;
  border-radius: 12px;
  padding: 0;
  background: linear-gradient(150deg, #1b2746 0%, #101a33 100%);
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.42);
  aspect-ratio: 432 / 580;
  min-height: 220px;
  overflow: hidden;
}

.px-slot-card:hover {
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.52);
}

.px-slot-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.px-top-games-title {
  margin-top: clamp(16px, 2vw, 24px);
}

.px-top-games-note {
  margin-bottom: 0;
}

.px-slot-reveal {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(5, 12, 25, 0.62);
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  z-index: 3;
}

.px-slot-actions {
  position: absolute;
  inset: auto 10px 10px 10px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 6px;
  border-radius: 14px;
  border: 1px solid rgba(109, 137, 200, 0.52);
  background: linear-gradient(140deg, rgba(11, 18, 36, 0.88), rgba(19, 30, 57, 0.82));
  backdrop-filter: blur(8px) saturate(130%);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.px-slot-actions a,
.px-slot-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.2px;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(145deg, #ff2f74 0%, #be0b46 100%);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  cursor: pointer;
  padding: 8px 10px;
  transition: transform 0.16s ease, filter 0.16s ease, box-shadow 0.16s ease;
}

.px-slot-actions button:last-child {
  background: linear-gradient(145deg, #5a84e1 0%, #2851a8 100%);
}

.px-slot-actions a:hover,
.px-slot-actions a:focus-visible,
.px-slot-actions button:hover,
.px-slot-actions button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.px-slot-card.is-active .px-slot-actions,
.px-slot-card.is-active [data-slot-actions] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.px-slot-card.is-active .px-slot-reveal {
  opacity: 0;
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) and (min-width: 1024px) {
  .px-slot-card:hover .px-slot-actions {
    opacity: 1;
    pointer-events: auto;
  }

  .px-slot-card:hover .px-slot-reveal {
    opacity: 0;
    pointer-events: none;
  }
}

.px-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #314a7b;
  background: #0f1932;
  font-size: 15px;
}

.px-table th,
.px-table td {
  border-bottom: 1px solid rgba(74, 103, 160, 0.45);
  padding: 11px 12px;
  text-align: left;
  vertical-align: top;
}

.px-table th {
  width: 38%;
  font-weight: 700;
  color: #d8e3ff;
}

.px-pros-cons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.px-pros-cons > div {
  background: var(--px-card-soft);
  border: 1px solid #253a69;
  border-radius: 12px;
  padding: 14px;
}

.px-cta-banner {
  position: relative;
  overflow: hidden;
}

.px-cta-banner img {
  width: 100%;
  height: clamp(230px, 32vw, 360px);
  object-fit: cover;
}

.px-cta-overlay {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(540px, calc(100% - 30px));
  padding: 18px 20px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(10, 17, 34, 0.8);
  text-align: center;
}

.px-auth-shot {
  margin: 0 auto 18px;
  max-width: 720px;
  text-align: center;
}

.px-auth-shot img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid #2b4071;
  box-shadow: var(--px-shadow);
}

.px-auth-shot figcaption {
  margin-top: 8px;
  color: var(--px-muted);
  font-size: 14px;
}

.px-review-shell {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.px-review-arrow {
  width: 32px;
  height: 70px;
  border-radius: 10px;
  border: 1px solid #3c568f;
  background: #1b2e58;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  align-self: center;
}

.px-review-viewport {
  flex: 1;
  overflow: hidden;
}

.px-review-track {
  display: flex;
  transition: transform 0.26s ease;
}

.px-review-card {
  min-width: 100%;
  border: 1px solid #2f4473;
  background: #0f1b35;
  border-radius: 12px;
  padding: 16px;
}

.px-review-meta {
  color: #ffd588;
  font-weight: 700;
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}

details {
  border: 1px solid #2e4575;
  border-radius: 10px;
  padding: 8px 12px;
  background: #0d1730;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

.px-footer {
  margin: 0 var(--px-space) 14px;
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid #304776;
  background: #0b152b;
  display: grid;
  gap: 10px;
  color: #c8d4f3;
}

.px-slot-modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 18, 0.84);
  display: grid;
  place-items: center;
  z-index: 30;
}

.px-slot-modal[hidden] {
  display: none;
}

.px-slot-modal-inner {
  width: min(920px, calc(100vw - 30px));
  max-height: calc(100vh - 30px);
  background: #0d1730;
  border: 1px solid #3d5d9c;
  border-radius: 14px;
  padding: 16px;
  display: grid;
  gap: 12px;
}

.px-slot-modal iframe {
  width: 100%;
  min-height: 56vh;
  border: 0;
  border-radius: 10px;
  background: #0a1123;
}

.px-slot-modal-close {
  justify-self: end;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  border: 1px solid #5d78af;
  background: #1f315e;
  color: #fff;
  font-size: 24px;
}

.px-floating-bonus {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  width: min(920px, calc(100vw - 20px));
  background: linear-gradient(135deg, #1c2f5a, #98123f);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  padding: 12px 14px;
  display: none;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.36);
  z-index: 26;
  opacity: 0;
  pointer-events: none;
  overflow-anchor: none;
  contain: layout paint;
}

.px-floating-bonus.is-visible {
  display: grid;
  opacity: 1;
  pointer-events: auto;
}

.px-floating-bonus a {
  min-height: 42px;
  min-width: 180px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(145deg, #ff1f60 0%, #bf093f 100%);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.32);
  padding: 8px 14px;
}

.px-floating-bonus button {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 21px;
  cursor: pointer;
}

.px-form-status {
  margin-top: 10px;
  color: #c0f8d2;
  font-weight: 700;
}

:where(main, [data-main-content], [role="main"], .cp-main, .rb-main)
  :is(table, [class*="table"], [class*="grid"], [class*="review"], [class*="banner"], [data-review-slider], [data-cta-banner], [class*="slot"]:not([data-slot-card]):not([class*="slot-card"]):not([class*="slot__card"]))
  + :is(p, ul, ol, div, section, article) {
  margin-top: clamp(16px, 2vw, 24px);
}

@media (max-width: 1023px) {
  .px-sidebar {
    position: sticky;
    inset: 0 0 auto 0;
    width: auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    min-height: 184px;
    max-height: none;
  }

  .px-logo-link {
    width: auto;
    min-width: 170px;
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .px-sidebar-cta-wrap {
    grid-template-columns: repeat(2, minmax(148px, 1fr));
    width: min(560px, 100%);
  }

  .px-sidebar .px-btn {
    min-width: 0;
    width: 100%;
  }

  .de-sidebar-nav,
  .px-sidebar-note {
    display: none;
  }

  .px-main-wrap {
    margin-left: 0;
  }

  .px-topbar {
    position: relative;
    padding-top: 12px;
  }

  .px-topbar-search {
    min-width: 0;
  }

  .px-topbar-actions a {
    min-width: 104px;
  }

  .px-hero-card,
  .px-cta-overlay {
    width: min(92%, 460px);
    padding: 16px;
  }

  .px-hero img {
    height: clamp(500px, 112vw, 640px);
  }

  .px-slots-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #hv-top-games.px-section {
    padding: 12px;
  }

  #hv-top-games .px-slots-grid {
    gap: 10px;
  }

  #hv-top-games .px-slot-card {
    aspect-ratio: 432 / 600;
  }

  #hv-top-games .px-slot-card img {
    transform: scale(1.06);
    transform-origin: center;
  }

  .px-slot-actions {
    inset: auto 8px 8px 8px;
    gap: 5px;
    padding: 5px;
  }

  .px-slot-actions a,
  .px-slot-actions button {
    min-height: 36px;
    font-size: 13px;
    border-radius: 10px;
    padding: 7px 8px;
  }

  .px-pros-cons {
    grid-template-columns: 1fr;
  }

  .px-contact-form-grid {
    grid-template-columns: 1fr;
  }

  .px-contact-form .px-btn {
    width: 100%;
    min-width: 0;
  }

  .px-table {
    table-layout: fixed;
    font-size: 14px;
  }

  .px-table th,
  .px-table td {
    font-size: 14px;
    padding: 9px 8px;
    overflow-wrap: anywhere;
  }

  .px-slot-modal {
    place-items: stretch;
  }

  .px-slot-modal-inner {
    width: 100vw;
    height: 100vh;
    max-height: none;
    border-radius: 0;
    padding: 12px;
  }

  .px-slot-modal iframe {
    min-height: calc(100vh - 150px);
  }

  .px-review-arrow {
    width: 28px;
    height: 64px;
    border-radius: 10px;
  }

  .px-floating-bonus {
    width: calc(100vw - 12px);
    left: 50%;
    bottom: 8px;
    padding: 10px;
    grid-template-columns: 1fr auto auto;
    gap: 8px;
  }

  .px-floating-bonus p {
    font-size: 14px;
  }

  .px-floating-bonus a {
    min-width: 122px;
    min-height: 40px;
    padding: 8px 10px;
    font-size: 14px;
  }

  .px-floating-bonus {
    width: calc(100vw - 12px);
    max-width: 560px;
    padding: 8px;
    border-radius: 10px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    bottom: 6px;
  }

  .px-floating-bonus p {
    margin: 0;
    font-size: 12px;
    line-height: 1.25;
    max-height: 2.5em;
    overflow: hidden;
  }

  .px-floating-bonus a {
    min-width: 98px;
    min-height: 34px;
    padding: 6px 10px;
    font-size: 13px;
  }

  .px-floating-bonus button {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }
}

@media (max-width: 420px) {
  #hv-top-games.px-section {
    padding: 10px;
  }

  #hv-top-games .px-slots-grid {
    gap: 8px;
  }

  #hv-top-games .px-slot-card {
    min-height: 0;
    width: 100%;
    aspect-ratio: 432 / 600;
  }

  #hv-top-games .px-slot-card img {
    transform: none;
  }
}
