@font-face {
  font-family: "Montserrat Local";
  src: url("static/fonts/montserrat-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat Local";
  src: url("static/fonts/montserrat-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat Local";
  src: url("static/fonts/montserrat-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --cl8-bg: #131b3b;
  --cl8-bg-soft: #1a2348;
  --cl8-panel: #202a53;
  --cl8-panel-soft: #2a365f;
  --cl8-border: rgba(169, 183, 233, 0.24);
  --cl8-text: #e8eeff;
  --cl8-muted: #9ca7d3;
  --cl8-accent: #14f34f;
  --cl8-accent-dark: #06ce39;
  --cl8-warning: #ffe257;
  --cl8-shadow: 0 14px 34px rgba(2, 8, 31, 0.46);
  --cl8-radius-xl: 22px;
  --cl8-radius-lg: 16px;
  --cl8-radius-md: 12px;
  --cl8-transition: 0.24s ease;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 20% -8%, #233265 0%, var(--cl8-bg) 37%, #121a39 100%);
  color: var(--cl8-text);
  font-family: "Montserrat Local", "Segoe UI", sans-serif;
  line-height: 1.55;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: clip;
}

a {
  color: #b6d5ff;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: #d8ebff;
}

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

.cl8-button,
.cl8-button-ghost,
.cl8-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  min-height: 48px;
  min-width: 208px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  transition: transform var(--cl8-transition), box-shadow var(--cl8-transition), background var(--cl8-transition);
}

.cl8-button {
  background: linear-gradient(180deg, #19ff59 0%, #06d63d 100%);
  color: #042214;
  box-shadow: 0 8px 20px rgba(12, 223, 74, 0.3);
}

.cl8-button:hover,
.cl8-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(12, 223, 74, 0.4);
}

.cl8-button-secondary {
  background: #6b78af;
  color: #f8fbff;
}

.cl8-button-secondary:hover,
.cl8-button-secondary:focus-visible {
  transform: translateY(-2px);
  background: #7c89c1;
}

.cl8-button-ghost {
  min-width: 160px;
  min-height: 42px;
  background: rgba(105, 121, 177, 0.3);
  border: 1px solid rgba(158, 172, 227, 0.38);
  color: #e8eeff;
}

.cl8-page {
  display: flex;
  min-height: 100vh;
}

.cl8-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 244px;
  background: linear-gradient(180deg, rgba(28, 39, 77, 0.98) 0%, rgba(20, 30, 64, 0.97) 100%);
  border-right: 1px solid rgba(162, 176, 228, 0.2);
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 14px 18px;
  gap: 14px;
}

.cl8-sidebar-logo {
  width: 150px;
  margin-top: 4px;
}

.cl8-sidebar-logo img {
  width: 100%;
  height: auto;
}

.cl8-side-ctas {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
}

.cl8-sidebar .cl8-side-ctas .cl8-button,
.cl8-sidebar .cl8-side-ctas .cl8-button-secondary {
  flex: 1 1 0;
  min-width: 0;
  min-height: 44px;
  width: auto;
  padding: 0 10px;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  border-radius: 16px;
}

.cl8-sidebar .cl8-side-ctas .cl8-button-secondary {
  background: linear-gradient(180deg, #7e8cc4 0%, #6877af 100%);
  border: 1px solid rgba(199, 214, 255, 0.15);
}

.cl8-sidebar .cl8-side-ctas .cl8-button {
  box-shadow: 0 8px 18px rgba(12, 223, 74, 0.24);
}

.cl8-sidebar .cl8-side-ctas .cl8-button:hover,
.cl8-sidebar .cl8-side-ctas .cl8-button:focus-visible,
.cl8-sidebar .cl8-side-ctas .cl8-button-secondary:hover,
.cl8-sidebar .cl8-side-ctas .cl8-button-secondary:focus-visible {
  transform: translateY(-1px);
}

.cl8-side-icons {
  list-style: none;
  margin: 4px 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cl8-side-icons li {
  border-radius: 12px;
  min-height: 48px;
  display: grid;
  place-items: center;
  color: #9db1e7;
  background: rgba(118, 136, 195, 0.16);
  font-size: 22px;
}

.cl8-side-icons li.is-active {
  color: var(--cl8-accent);
  background: rgba(37, 209, 85, 0.17);
}

.de-sidebar-nav {
  width: 100%;
  margin-top: 4px;
}

.de-sidebar-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.de-sidebar-nav a {
  display: block;
  border-radius: 10px;
  padding: 9px 8px;
  font-size: 12px;
  line-height: 1.25;
  color: #b5c1eb;
  background: rgba(103, 119, 175, 0.14);
  text-align: center;
}

.de-sidebar-nav a:hover,
.de-sidebar-nav a:focus-visible {
  color: #ecf2ff;
  background: rgba(125, 145, 212, 0.3);
}

.cl8-side-disclaimer {
  margin-top: auto;
  font-size: 10px;
  color: #90a0d5;
  text-align: center;
}

.cl8-main-shell {
  width: 100%;
  margin-left: 244px;
}

.cl8-topbar {
  position: sticky;
  top: 0;
  z-index: 14;
  min-height: 74px;
  background: rgba(18, 27, 58, 0.88);
  backdrop-filter: blur(9px);
  border-bottom: 1px solid rgba(162, 176, 228, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 26px;
}

.cl8-topbar-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cl8-wordmark {
  width: 145px;
}

.cl8-mode-switch {
  display: flex;
  gap: 8px;
}

.cl8-pill {
  border-radius: 999px;
  border: 1px solid rgba(153, 168, 221, 0.34);
  background: rgba(88, 103, 154, 0.38);
  color: #d7e0ff;
  min-height: 38px;
  min-width: 116px;
  padding: 0 14px;
  font-size: 17px;
  font-weight: 600;
}

.cl8-pill.is-active {
  background: linear-gradient(180deg, rgba(126, 141, 195, 0.74), rgba(95, 108, 157, 0.84));
}

.cl8-topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.cl8-search {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(99, 113, 167, 0.2);
  border: 1px solid rgba(158, 174, 226, 0.26);
  color: #dce6ff;
  font-size: 22px;
}

.cl8-main {
  padding: 22px 24px 22px;
}

.cl8-section {
  background: linear-gradient(180deg, rgba(36, 48, 91, 0.88), rgba(31, 42, 81, 0.95));
  border: 1px solid rgba(151, 167, 220, 0.18);
  border-radius: var(--cl8-radius-xl);
  box-shadow: var(--cl8-shadow);
  padding: 24px;
}

.cl8-section + .cl8-section {
  margin-top: clamp(16px, 2.1vw, 24px);
}

#px7-hero {
  position: relative;
  min-height: clamp(298px, 36vw, 456px);
  overflow: hidden;
  padding: 0;
}

.cl8-hero-media {
  position: absolute;
  inset: 0;
}

.cl8-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cl8-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
}

.cl8-hero-card {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(680px, calc(100% - 36px));
  background: rgba(22, 32, 68, 0.82);
  border: 1px solid rgba(170, 184, 234, 0.3);
  backdrop-filter: blur(4px);
  border-radius: 20px;
  padding: 20px 22px 22px;
  text-align: center;
}

.cl8-hero-kicker {
  display: inline-block;
  border-radius: 999px;
  background: rgba(133, 149, 207, 0.72);
  color: #f3f7ff;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 14px;
  margin-bottom: 10px;
}

.cl8-hero-card h1 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
}

.cl8-hero-card p {
  margin: 12px auto 0;
  max-width: 60ch;
  color: #d3dcff;
  font-size: 17px;
}

.cl8-hero-card .cl8-button {
  margin-top: 14px;
}

#px7-nav-accordion {
  padding: 0;
  overflow: hidden;
}

.cl8-nav-trigger {
  width: 100%;
  border: 0;
  background: linear-gradient(180deg, rgba(94, 111, 169, 0.45), rgba(73, 86, 132, 0.44));
  color: #f0f4ff;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 17px;
  font-weight: 700;
  padding: 0 22px;
  cursor: pointer;
}

.cl8-nav-trigger span:last-child {
  transition: transform var(--cl8-transition);
}

.cl8-nav-trigger[aria-expanded="true"] span:last-child {
  transform: rotate(180deg);
}

.cl8-nav-panel {
  margin: 0;
  padding: 16px 22px 18px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  border-top: 1px solid rgba(157, 171, 224, 0.25);
  background: rgba(37, 49, 93, 0.55);
}

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

.cl8-nav-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
  color: #d4defe;
  background: rgba(127, 142, 200, 0.16);
}

.cl8-nav-panel a:hover,
.cl8-nav-panel a:focus-visible {
  background: rgba(138, 154, 220, 0.33);
}

.cl8-section-title {
  margin: 0 0 14px;
  font-size: clamp(26px, 2.7vw, 40px);
  line-height: 1.14;
}

.cl8-section-intro {
  margin: 0 0 16px;
  color: #ccd6fb;
}

.cl8-slot-grid {
  margin-top: 4px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.cl8-slot-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #151d3c;
  box-shadow: 0 10px 24px rgba(3, 8, 32, 0.52);
  transition: box-shadow var(--cl8-transition);
  min-height: 220px;
}

.cl8-slot-grid > .cl8-slot-card {
  margin-top: 0 !important;
}

.cl8-slot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cl8-slot-card:hover,
.cl8-slot-card.is-active {
  box-shadow: 0 16px 36px rgba(4, 10, 36, 0.62);
}

.cl8-slot-overlay {
  position: absolute;
  inset: 0;
  padding: 0;
  background: linear-gradient(180deg, rgba(8, 13, 34, 0.14) 0%, rgba(8, 13, 34, 0.3) 100%);
}

.cl8-slot-reveal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid rgba(231, 238, 255, 0.5);
  background: rgba(19, 27, 58, 0.52);
  backdrop-filter: blur(3px);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform var(--cl8-transition), background var(--cl8-transition), opacity var(--cl8-transition);
  z-index: 2;
}

.cl8-slot-reveal:hover,
.cl8-slot-reveal:focus-visible {
  transform: translate(-50%, -50%) scale(1.05);
  background: rgba(26, 36, 74, 0.9);
}

.cl8-slot-reveal::before {
  content: "";
  margin-left: 3px;
  border-style: solid;
  border-width: 12px 0 12px 18px;
  border-color: transparent transparent transparent #eaf1ff;
}

.cl8-slot-actions {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translate(-50%, calc(-50% + 8px));
  pointer-events: none;
  transition: opacity var(--cl8-transition), transform var(--cl8-transition);
  width: min(170px, calc(100% - 28px));
  z-index: 3;
}

.cl8-slot-actions a,
.cl8-slot-actions button {
  border: 0;
  border-radius: 999px;
  min-height: 40px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform var(--cl8-transition), filter var(--cl8-transition);
}

.cl8-slot-actions a {
  background: linear-gradient(180deg, #19ff59 0%, #06d63d 100%);
  color: #032412;
  box-shadow: 0 8px 18px rgba(8, 222, 73, 0.3);
}

.cl8-slot-actions button {
  background: linear-gradient(180deg, #7d8dcb 0%, #697bb8 100%);
  color: #f6f9ff;
}

.cl8-slot-actions a:hover,
.cl8-slot-actions a:focus-visible,
.cl8-slot-actions button:hover,
.cl8-slot-actions button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.cl8-slot-card.is-active .cl8-slot-actions,
.cl8-slot-card[data-touch="true"].is-active .cl8-slot-actions {
  opacity: 1;
  transform: translate(-50%, -50%);
  pointer-events: auto;
}

.cl8-slot-card[data-touch="true"] .cl8-slot-actions {
  visibility: hidden;
}

.cl8-slot-card[data-touch="true"].is-active .cl8-slot-actions {
  visibility: visible;
}

.cl8-slot-card.is-active .cl8-slot-reveal,
.cl8-slot-card[data-touch="true"].is-active .cl8-slot-reveal {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.95);
}

@media (min-width: 981px) {
  .cl8-slot-card[data-touch="true"] .cl8-slot-actions {
    visibility: visible;
  }

  .cl8-slot-card:hover .cl8-slot-actions {
    opacity: 1;
    transform: translate(-50%, -50%);
    pointer-events: auto;
  }

  .cl8-slot-card:hover .cl8-slot-reveal {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.95);
  }
}

.cl8-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  background: rgba(27, 37, 72, 0.75);
  border: 1px solid rgba(152, 167, 223, 0.24);
}

.cl8-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.cl8-table th,
.cl8-table td {
  border-bottom: 1px solid rgba(149, 166, 224, 0.2);
  padding: 10px 12px;
  vertical-align: top;
}

.cl8-table tr:last-child td,
.cl8-table tr:last-child th {
  border-bottom: 0;
}

.cl8-table th {
  width: 38%;
  text-align: left;
  color: #dce6ff;
}

.cl8-table td {
  color: #bfccef;
}

.cl8-payments-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

#prs-payments .cl8-payments-grid .cl8-table-wrap {
  margin: 0;
}

#prs-payments .cl8-payments-grid .cl8-table {
  table-layout: fixed;
  font-size: 14px;
}

#prs-payments .cl8-payments-grid .cl8-table th {
  width: auto;
}

#prs-payments .cl8-payments-grid .cl8-table th,
#prs-payments .cl8-payments-grid .cl8-table td {
  padding: 9px 10px;
  overflow-wrap: anywhere;
}

#prs-payments .cl8-payments-grid .cl8-table th:nth-child(1),
#prs-payments .cl8-payments-grid .cl8-table td:nth-child(1) {
  width: 35%;
}

#prs-payments .cl8-payments-grid .cl8-table th:nth-child(2),
#prs-payments .cl8-payments-grid .cl8-table td:nth-child(2) {
  width: 17%;
}

#prs-payments .cl8-payments-grid .cl8-table th:nth-child(3),
#prs-payments .cl8-payments-grid .cl8-table td:nth-child(3) {
  width: 22%;
}

#prs-payments .cl8-payments-grid .cl8-table th:nth-child(4),
#prs-payments .cl8-payments-grid .cl8-table td:nth-child(4) {
  width: 26%;
}

.cl8-feature-list {
  margin: 14px 0 0;
  padding-left: 20px;
}

.cl8-feature-list li + li {
  margin-top: 8px;
}

.cl8-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cl8-pc-card {
  background: rgba(33, 45, 88, 0.66);
  border: 1px solid rgba(154, 170, 225, 0.24);
  border-radius: 14px;
  padding: 16px;
}

.cl8-pc-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
}

.cl8-pc-card ul {
  margin: 0;
  padding-left: 18px;
}

.cl8-pc-card li + li {
  margin-top: 8px;
}

.cl8-cta-banner {
  position: relative;
  overflow: hidden;
  min-height: clamp(262px, 30vw, 360px);
  padding: 0;
}

.cl8-cta-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cl8-cta-banner::after {
  content: none;
}

.cl8-cta-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(600px, calc(100% - 30px));
  border-radius: 18px;
  border: 1px solid rgba(173, 189, 238, 0.3);
  background: rgba(25, 36, 75, 0.78);
  padding: 18px 18px 20px;
  text-align: center;
  z-index: 1;
}

.cl8-cta-content h3 {
  margin: 0;
  font-size: clamp(25px, 2.5vw, 34px);
}

.cl8-cta-content p {
  margin: 12px 0 0;
  color: #d0dcff;
}

.cl8-cta-content .cl8-button {
  margin-top: 14px;
}

.cl8-auth-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cl8-auth-shot {
  width: min(100%, 620px);
  margin-inline: auto;
  border-radius: 16px;
  border: 1px solid rgba(155, 170, 225, 0.23);
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(2, 9, 31, 0.47);
  background: #232f5b;
}

.cl8-auth-shot img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.cl8-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.cl8-guide-card {
  border-radius: 14px;
  border: 1px solid rgba(154, 169, 223, 0.24);
  background: rgba(34, 45, 85, 0.65);
  padding: 15px;
}

.cl8-guide-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.cl8-guide-card p {
  margin: 0;
  color: #c5d1f7;
}

.cl8-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cl8-faq-item {
  border-radius: 14px;
  border: 1px solid rgba(152, 168, 224, 0.27);
  background: rgba(34, 45, 87, 0.7);
  overflow: hidden;
}

.cl8-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px;
  font-weight: 700;
}

.cl8-faq-item summary::-webkit-details-marker {
  display: none;
}

.cl8-faq-item p {
  margin: 0;
  padding: 0 16px 16px;
  color: #ccd7fa;
}

.cl8-footer {
  margin-top: 20px;
  background: rgba(16, 23, 50, 0.95);
  border-top: 1px solid rgba(145, 159, 209, 0.23);
  padding: 18px 24px 18px;
}

.cl8-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.cl8-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cl8-footer-nav a {
  color: #d3defe;
  font-weight: 600;
}

.cl8-footer small {
  color: #96a5da;
}

.cl8-floating-bonus-banner {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  width: min(980px, calc(100% - 20px));
  border-radius: 16px;
  border: 1px solid rgba(148, 168, 233, 0.32);
  background: linear-gradient(130deg, rgba(43, 63, 120, 0.96), rgba(27, 39, 79, 0.96));
  box-shadow: 0 18px 36px rgba(2, 8, 31, 0.55);
  padding: 14px 14px 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  z-index: 30;
}

.cl8-floating-bonus-banner[hidden] {
  display: none;
}

.cl8-floating-copy {
  margin: 0;
  color: #d7e4ff;
  font-size: 15px;
}

.cl8-floating-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cl8-close-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(165, 181, 237, 0.4);
  background: rgba(106, 122, 177, 0.3);
  color: #eef3ff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.cl8-slot-demo-modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 9, 24, 0.84);
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
}

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

.cl8-slot-demo-dialog {
  width: min(960px, 100%);
  border-radius: 18px;
  border: 1px solid rgba(167, 182, 233, 0.33);
  background: #1e2952;
  box-shadow: 0 20px 40px rgba(5, 10, 32, 0.62);
  overflow: hidden;
}

.cl8-slot-demo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(152, 168, 224, 0.24);
}

.cl8-slot-demo-head h2 {
  margin: 0;
  font-size: 20px;
}

.cl8-slot-demo-frame {
  width: 100%;
  height: 66vh;
  border: 0;
  background: #111832;
}

.cl8-slot-demo-foot {
  padding: 14px;
  display: flex;
  justify-content: center;
}

.cl8-form {
  display: grid;
  gap: 12px;
  max-width: 720px;
}

.cl8-form label {
  display: grid;
  gap: 6px;
  color: #dbe5ff;
  font-weight: 600;
}

.cl8-form input,
.cl8-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(154, 169, 223, 0.35);
  background: rgba(19, 28, 60, 0.85);
  color: #edf2ff;
  padding: 12px;
  font: inherit;
}

.cl8-form textarea {
  min-height: 150px;
  resize: vertical;
}

.cl8-form-status {
  display: none;
  border-radius: 10px;
  background: rgba(26, 126, 70, 0.2);
  border: 1px solid rgba(42, 187, 104, 0.45);
  color: #dbffea;
  padding: 10px 12px;
}

.cl8-form-status.is-visible {
  display: block;
}

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

@media (max-width: 1200px) {
  .cl8-slot-grid {
    gap: 10px;
  }

  .cl8-slot-card {
    min-height: 182px;
  }

  .cl8-main {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 980px) {
  .cl8-sidebar {
    width: 100%;
    height: 76px;
    inset: 0 0 auto 0;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 14px;
  }

  .cl8-sidebar-logo {
    width: 130px;
    margin-top: 0;
  }

  .cl8-side-ctas {
    width: auto;
    flex-direction: row;
    gap: 10px;
  }

  .cl8-sidebar .cl8-side-ctas .cl8-button,
  .cl8-sidebar .cl8-side-ctas .cl8-button-secondary {
    flex: 0 0 auto;
    width: auto;
    min-height: 42px;
    min-width: clamp(92px, 25vw, 124px);
    font-size: 13px;
    padding: 0 12px;
  }

  .cl8-side-icons,
  .de-sidebar-nav,
  .cl8-side-disclaimer,
  .cl8-topbar {
    display: none;
  }

  .cl8-main-shell {
    margin-left: 0;
    padding-top: 76px;
  }

  .cl8-main {
    padding-top: 18px;
  }

  .cl8-pros-cons,
  .cl8-guide-grid,
  .cl8-footer-grid {
    grid-template-columns: 1fr;
  }

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

  .cl8-slot-card {
    min-height: 236px;
  }

  .cl8-table {
    font-size: 14px;
  }

  .cl8-table th,
  .cl8-table td {
    padding: 8px 9px;
  }

  .cl8-payments-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cl8-floating-bonus-banner {
    left: 10px;
    right: 10px;
    transform: none;
    width: auto;
    bottom: 10px;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
  }

  .cl8-floating-controls {
    width: 100%;
    justify-content: flex-end;
  }

  .cl8-slot-demo-modal {
    padding: 0;
  }

  .cl8-slot-demo-dialog {
    width: 100%;
    height: 100%;
    border-radius: 0;
    display: flex;
    flex-direction: column;
  }

  .cl8-slot-demo-frame {
    height: calc(100dvh - 146px);
    flex: 1;
  }
}

@media (max-width: 640px) {
  .cl8-sidebar-logo {
    width: 116px;
  }

  .cl8-main {
    padding: 16px 10px 18px;
  }

  .cl8-section {
    border-radius: 16px;
    padding: 16px;
  }

  #px7-hero {
    min-height: 430px;
  }

  .cl8-hero-card {
    width: calc(100% - 20px);
    padding: 16px;
  }

  .cl8-hero-card p {
    font-size: 15px;
  }

  .cl8-button,
  .cl8-button-secondary,
  .cl8-button-ghost {
    min-width: 198px;
    min-height: 48px;
    font-size: 15px;
  }

  .cl8-cta-content {
    width: calc(100% - 20px);
    padding: 14px 14px 18px;
  }

  .cl8-cta-banner {
    min-height: 400px;
  }

  .cl8-cta-content h3 {
    font-size: 23px;
  }

  .cl8-cta-content p {
    margin-top: 10px;
    font-size: 14px;
  }

  .cl8-cta-content .cl8-button {
    width: 100%;
    min-width: 0;
  }

  .cl8-slot-card {
    min-height: 214px;
  }

  .cl8-nav-panel {
    grid-template-columns: 1fr;
  }

  .cl8-sidebar .cl8-side-ctas .cl8-button,
  .cl8-sidebar .cl8-side-ctas .cl8-button-secondary {
    flex: 0 0 auto;
    min-width: clamp(84px, 27vw, 112px);
    padding: 0 10px;
    font-size: 13px;
  }

  .cl8-table {
    font-size: 13px;
  }

  .cl8-table th,
  .cl8-table td {
    padding: 7px 8px;
  }
}
