@font-face {
  font-family: "JackpotSans";
  src: url("public/assets/fonts/jackpotcity-sans-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: "JackpotSans";
  src: url("public/assets/fonts/jackpotcity-sans-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: optional;
}

:root {
  --de-bg: #14042f;
  --de-bg-soft: #1d083f;
  --de-panel: #24104f;
  --de-panel-soft: rgba(27, 12, 58, 0.88);
  --de-card: #2a145c;
  --de-card-border: rgba(190, 131, 255, 0.35);
  --de-text: #f6f4ff;
  --de-muted: #cebaff;
  --de-accent: #ffc329;
  --de-accent-strong: #ffb301;
  --de-accent-alt: #cf63ff;
  --de-good: #50d991;
  --de-warn: #ff8a80;
  --de-shadow: 0 14px 40px rgba(8, 2, 20, 0.45);
  --de-radius: 16px;
  --de-rhythm: clamp(16px, 2vw, 24px);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  background: radial-gradient(circle at top right, #2f0a5f 0%, var(--de-bg) 46%, #090011 100%);
  color: var(--de-text);
  font-family: "JackpotSans", Arial, sans-serif;
  scroll-behavior: smooth;
}

a {
  color: #ffd873;
  text-decoration-thickness: 1px;
}

.de-layout {
  display: flex;
  min-height: 100vh;
}

.de-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 280px;
  background: linear-gradient(180deg, #090014 0%, #1a0638 100%);
  border-right: 1px solid rgba(201, 160, 255, 0.25);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
}

.de-logo-link {
  display: block;
  width: 100%;
}

.de-logo {
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  display: block;
}

.de-sidebar-buttons {
  display: grid;
  gap: 10px;
}

.de-sidebar-btn,
.de-cta-button,
.de-slot-action,
.de-slot-demo-play,
.de-floating-cta,
.de-mock-submit {
  border: 0;
  border-radius: 999px;
  min-height: 50px;
  min-width: 220px;
  padding: 11px 20px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: #201122;
  background: linear-gradient(180deg, var(--de-accent) 0%, var(--de-accent-strong) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(255, 185, 32, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.de-sidebar-btn:hover,
.de-cta-button:hover,
.de-slot-action:hover,
.de-slot-demo-play:hover,
.de-floating-cta:hover,
.de-mock-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(255, 185, 32, 0.45);
}

.de-sidebar-btn--ghost {
  color: #efe5ff;
  background: rgba(207, 99, 255, 0.22);
  border: 1px solid rgba(207, 99, 255, 0.45);
  box-shadow: none;
}

.de-sidebar-nav {
  background: rgba(40, 20, 83, 0.5);
  border: 1px solid var(--de-card-border);
  border-radius: var(--de-radius);
  padding: 12px;
}

.de-sidebar-nav-title {
  margin: 0 0 10px;
  font-size: 0.95rem;
  color: var(--de-muted);
}

.de-sidebar-nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.de-sidebar-nav-link {
  color: #f9f2ff;
  text-decoration: none;
  font-size: 0.95rem;
  border-radius: 10px;
  display: block;
  padding: 8px 10px;
  background: rgba(152, 87, 227, 0.08);
}

.de-sidebar-nav-link:hover {
  background: rgba(198, 118, 255, 0.24);
}

.de-sidebar-note {
  margin-top: auto;
  font-size: 0.8rem;
  color: #d8c9ff;
  line-height: 1.45;
}

.de-main {
  margin-left: 280px;
  width: calc(100% - 280px);
  padding: clamp(16px, 2.3vw, 26px);
  padding-bottom: 24px;
}

.de-main > :first-child {
  margin-top: 0;
}

.de-block,
.de-heavy-block,
.de-post-text-gap,
.de-section-text,
.de-list {
  margin-top: var(--de-rhythm);
  margin-bottom: var(--de-rhythm);
}

.de-hero {
  position: relative;
  min-height: 380px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--de-shadow);
  border: 1px solid rgba(207, 99, 255, 0.35);
}

.de-hero-picture {
  display: block;
  height: 100%;
}

.de-hero-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.de-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 2.5vw, 28px);
}

.de-hero-card,
.de-content-cta-card {
  width: min(94%, 620px);
  background: rgba(14, 6, 31, 0.84);
  border: 1px solid rgba(229, 193, 255, 0.5);
  border-radius: 18px;
  box-shadow: 0 14px 44px rgba(4, 1, 12, 0.6);
  padding: clamp(16px, 2.2vw, 24px);
  text-align: center;
}

.de-hero-card h1 {
  margin: 0;
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
  line-height: 1.17;
}

.de-hero-card p,
.de-content-cta-card p {
  margin: 12px 0;
  line-height: 1.55;
}

.de-offer-tag {
  display: inline-block;
  border-radius: 999px;
  background: rgba(207, 99, 255, 0.22);
  border: 1px solid rgba(225, 159, 255, 0.45);
  padding: 7px 14px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.de-disclaimer {
  font-size: 0.86rem;
  color: #dbcfff;
}

.de-accordion-nav {
  padding: 0;
  border: 0;
  background: transparent;
}

.de-accordion-title {
  margin: 0 0 14px;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
}

.de-accordion {
  display: grid;
  gap: 10px;
}

.de-accordion-item {
  border: 1px solid rgba(211, 171, 255, 0.28);
  border-radius: 12px;
  overflow: hidden;
}

.de-accordion-trigger {
  width: 100%;
  border: 0;
  background: rgba(87, 44, 155, 0.35);
  color: var(--de-text);
  text-align: left;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  padding: 12px 14px;
}

.de-accordion-panel {
  padding: 12px 14px;
  background: rgba(24, 10, 48, 0.9);
}

.de-accordion-trigger--single {
  border: 1px solid var(--de-card-border);
  border-radius: var(--de-radius);
  background: linear-gradient(180deg, rgba(87, 44, 155, 0.36) 0%, rgba(51, 23, 100, 0.58) 100%);
  padding: 14px 16px;
  min-height: 54px;
}

.de-accordion-trigger--single[aria-expanded="true"] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.de-accordion-nav > .de-accordion-panel {
  border: 1px solid var(--de-card-border);
  border-top: 0;
  border-bottom-left-radius: var(--de-radius);
  border-bottom-right-radius: var(--de-radius);
}

.de-accordion-panel p {
  margin: 0 0 10px;
}

.de-anchor-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.de-anchor-list a {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
  background: rgba(224, 169, 255, 0.16);
  color: #f8eeff;
}

.de-section {
  border: 1px solid var(--de-card-border);
  border-radius: var(--de-radius);
  background: var(--de-panel-soft);
  padding: clamp(16px, 2.2vw, 24px);
}

.de-section h2 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.3vw, 1.8rem);
}

.de-section h3 {
  margin: 20px 0 10px;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.de-section p {
  margin: 0;
  line-height: 1.7;
}

.de-section .de-post-text-gap {
  margin-top: var(--de-rhythm);
  margin-bottom: var(--de-rhythm);
}

.de-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
}

.de-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(18, 5, 37, 0.75);
}

.de-table th,
.de-table td {
  text-align: left;
  padding: 13px 12px;
  vertical-align: top;
  border-bottom: 1px solid rgba(208, 160, 255, 0.2);
  line-height: 1.45;
}

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

.de-table-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--de-rhythm);
}

.de-table-caption {
  margin: 0 0 10px;
  font-size: 1rem;
  color: #f8e8ff;
}

.de-slots-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.de-slot-link {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 0;
  box-shadow: 0 10px 28px rgba(3, 1, 12, 0.36);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
}

.de-slot-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(3, 1, 12, 0.5);
}

.de-slot-link:focus-visible {
  outline: 2px solid rgba(255, 210, 80, 0.9);
  outline-offset: 2px;
}

.de-slot-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 2, 23, 0.16), rgba(8, 2, 23, 0.84));
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: none;
}

.de-slot-link.is-actions-visible::after {
  opacity: 1;
}

.de-slot-image {
  width: 100%;
  height: auto;
  display: block;
}

.de-slot-reveal {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 62px;
  height: 62px;
  margin: 0;
  border: 1px solid rgba(236, 209, 255, 0.5);
  border-radius: 999px;
  background: rgba(32, 12, 63, 0.58);
  color: #ffffff;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, opacity 0.18s ease;
  backdrop-filter: blur(2px);
}

.de-slot-reveal::before {
  content: "";
  display: block;
  margin-left: 4px;
  border-style: solid;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #ffffff;
}

.de-slot-reveal:hover {
  transform: translate(-50%, -50%) scale(1.04);
  background: rgba(38, 16, 74, 0.72);
}

.de-slot-link.is-actions-visible .de-slot-reveal {
  opacity: 0;
  pointer-events: none;
}

.de-slot-actions {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.de-slot-link.is-actions-visible .de-slot-actions {
  opacity: 1;
  pointer-events: auto;
}

.de-slot-action {
  min-width: 144px;
  min-height: 44px;
  padding: 9px 16px;
  font-size: 0.92rem;
  box-shadow: 0 10px 24px rgba(255, 185, 32, 0.34);
}

.de-slot-action--ghost {
  color: #f2e8ff;
  background: rgba(207, 99, 255, 0.24);
  border: 1px solid rgba(215, 176, 255, 0.52);
  box-shadow: none;
}

.de-slot-action--ghost:hover {
  box-shadow: none;
}

@media (hover: hover) and (pointer: fine) {
  .de-slot-link:hover::after {
    opacity: 1;
  }

  .de-slot-link:hover .de-slot-actions {
    opacity: 1;
    pointer-events: auto;
  }

  .de-slot-link:hover .de-slot-reveal {
    opacity: 0;
    pointer-events: none;
  }
}

.de-list {
  padding-left: 20px;
}

.de-list li {
  line-height: 1.65;
  margin: 6px 0;
}

.de-content-cta {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(207, 99, 255, 0.35);
  box-shadow: var(--de-shadow);
}

.de-content-cta-image {
  width: 100%;
  height: auto;
  display: block;
}

.de-content-cta-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 2.4vw, 24px);
}

.de-content-cta-card {
  width: min(94%, 560px);
}

.de-content-cta-card h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

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

.de-pros-cons article {
  border-radius: 12px;
  padding: 14px;
  background: rgba(19, 7, 42, 0.8);
  border: 1px solid rgba(202, 143, 255, 0.2);
}

.de-pros-cons h3 {
  margin-top: 0;
}

.de-pros ul,
.de-cons ul {
  margin: 0;
  padding-left: 20px;
}

.de-pros li,
.de-cons li {
  margin: 8px 0;
  line-height: 1.5;
}

.de-pros h3 {
  color: var(--de-good);
}

.de-cons h3 {
  color: var(--de-warn);
}

.de-reviews-shell {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  gap: 10px;
  align-items: stretch;
}

.de-review-arrow {
  border: 1px solid rgba(225, 189, 255, 0.34);
  border-radius: 12px;
  background: rgba(33, 14, 68, 0.95);
  color: #f2e6ff;
  font-size: 1.3rem;
  cursor: pointer;
}

.de-review-arrow[disabled] {
  opacity: 0.45;
  cursor: default;
}

.de-reviews-viewport {
  overflow: hidden;
  border-radius: 14px;
}

.de-reviews-track {
  display: flex;
  transition: transform 0.28s ease;
}

.de-review-card {
  min-width: 100%;
  border: 1px solid rgba(210, 171, 255, 0.32);
  border-radius: 14px;
  background: rgba(16, 6, 38, 0.92);
  padding: 16px;
}

.de-review-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.de-review-name {
  font-weight: 700;
  overflow-wrap: anywhere;
}

.de-review-date,
.de-review-rate {
  color: #d9c5ff;
}

.de-review-text {
  margin: 0;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.de-guide-steps {
  counter-reset: de-guide;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.de-guide-step {
  counter-increment: de-guide;
  border: 1px solid rgba(221, 180, 255, 0.3);
  border-radius: 12px;
  padding: 12px;
  background: rgba(26, 11, 52, 0.88);
}

.de-guide-step::before {
  content: counter(de-guide);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-weight: 700;
  background: rgba(255, 195, 41, 0.18);
  color: #ffe39a;
  float: left;
}

.de-guide-step p {
  margin: 0;
}

.de-auth-wrap {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.de-auth-figure {
  margin: 0;
  width: 100%;
  max-width: 560px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(211, 172, 255, 0.3);
  background: rgba(255, 255, 255, 0.02);
}

.de-auth-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.de-faq {
  display: grid;
  gap: 10px;
}

.de-faq-item {
  border: 1px solid rgba(209, 166, 255, 0.3);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(17, 8, 38, 0.88);
}

.de-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 12px 14px;
  font-weight: 700;
}

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

.de-faq-answer {
  padding: 0 14px 14px;
  line-height: 1.65;
}

.de-footer {
  margin-left: 280px;
  width: calc(100% - 280px);
  border-top: 1px solid rgba(211, 168, 255, 0.22);
  background: rgba(8, 2, 22, 0.9);
  padding: 20px clamp(16px, 2.3vw, 26px);
}

.de-footer-grid {
  display: grid;
  gap: 10px;
}

.de-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.de-footer-small {
  margin: 0;
  color: #d7c6ff;
  line-height: 1.55;
}

.de-slot-demo-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 18px;
}

.de-slot-demo-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 2, 14, 0.74);
}

.de-slot-demo-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  border-radius: 16px;
  border: 1px solid rgba(224, 179, 255, 0.38);
  background: linear-gradient(180deg, rgba(22, 8, 48, 0.98), rgba(13, 5, 30, 0.98));
  box-shadow: 0 18px 52px rgba(2, 1, 8, 0.58);
  padding: 16px 16px 14px;
}

.de-slot-demo-close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(226, 190, 255, 0.45);
  background: rgba(58, 26, 102, 0.9);
  color: #f6edff;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.de-slot-demo-frame {
  width: 100%;
  min-height: 520px;
  border: 0;
  border-radius: 12px;
  background: #05010d;
}

.de-slot-demo-actions {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

.de-slot-demo-play {
  min-width: 260px;
}

body.de-modal-open {
  overflow: hidden;
}

.de-floating-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 208, 80, 0.46);
  background: linear-gradient(130deg, rgba(53, 18, 105, 0.97), rgba(27, 10, 58, 0.97));
  box-shadow: 0 18px 40px rgba(2, 1, 10, 0.48);
}

.de-floating-copy {
  margin: 0;
  line-height: 1.5;
  flex: 1;
}

.de-floating-cta {
  min-width: 200px;
}

.de-floating-close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(235, 207, 255, 0.45);
  background: rgba(52, 25, 96, 0.95);
  color: #f4e9ff;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.de-hidden {
  display: none !important;
}

.de-mock-form {
  display: grid;
  gap: 12px;
  max-width: 680px;
}

.de-mock-label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

.de-mock-input,
.de-mock-textarea {
  width: 100%;
  border: 1px solid rgba(211, 173, 255, 0.3);
  border-radius: 10px;
  background: rgba(18, 7, 37, 0.85);
  color: #f7f0ff;
  font: inherit;
  padding: 10px 12px;
}

.de-mock-textarea {
  min-height: 130px;
  resize: vertical;
}

.de-mock-submit {
  width: fit-content;
}

.de-mock-status {
  margin: 0;
  font-size: 0.94rem;
  color: #fce5a2;
  min-height: 22px;
}

@media (max-width: 1200px) {
  .de-main,
  .de-footer {
    margin-left: 250px;
    width: calc(100% - 250px);
  }

  .de-sidebar {
    width: 250px;
  }

  .de-slots-grid {
    gap: 8px;
  }
}

@media (max-width: 960px) {
  .de-layout {
    display: block;
  }

  .de-sidebar {
    position: sticky;
    inset: 0 0 auto;
    z-index: 80;
    width: 100%;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(201, 160, 255, 0.24);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 12px;
  }

  .de-logo-link {
    max-width: 120px;
    height: 36px;
    display: flex;
    align-items: center;
    overflow: hidden;
    flex: 0 0 auto;
  }

  .de-logo {
    transform: translateY(-1px) scale(1.01);
    transform-origin: center;
  }

  .de-sidebar-buttons {
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    width: calc(100% - 132px);
    gap: 8px;
  }

  .de-sidebar-btn {
    min-height: 42px;
    min-width: 0;
    padding: 9px 11px;
    font-size: 0.88rem;
    box-shadow: 0 6px 16px rgba(255, 185, 32, 0.28);
  }

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

  .de-main,
  .de-footer {
    margin-left: 0;
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .de-table-grid {
    grid-template-columns: 1fr;
  }

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

  .de-slot-action {
    min-width: 116px;
    min-height: 40px;
    font-size: 0.84rem;
    padding: 8px 12px;
  }

  .de-slot-reveal {
    width: 54px;
    height: 54px;
  }

  .de-slot-reveal::before {
    border-width: 8px 0 8px 13px;
  }

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

  .de-slot-demo-dialog {
    width: 100vw;
    max-width: none;
    height: 100dvh;
    min-height: 100dvh;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    padding: 46px 0 0;
    display: flex;
    flex-direction: column;
  }

  .de-slot-demo-frame {
    min-height: 0;
    height: auto;
    flex: 1 1 auto;
    border-radius: 0;
  }

  .de-slot-demo-play {
    width: 100%;
    min-width: 0;
  }

  .de-slot-demo-actions {
    margin-top: 0;
    padding: 10px 12px 12px;
    border-top: 1px solid rgba(219, 178, 255, 0.3);
  }

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

  .de-reviews-shell {
    grid-template-columns: 28px 1fr 28px;
    gap: 6px;
  }

  .de-review-arrow {
    width: 28px;
    min-height: 62px;
    border-radius: 8px;
    align-self: center;
  }

  .de-content-cta-card,
  .de-hero-card {
    width: 100%;
    max-width: 100%;
    padding: 16px;
  }

  .de-hero {
    min-height: 390px;
  }

  .de-hero-image {
    min-height: 390px;
  }

  .de-content-cta-card p,
  .de-hero-card p {
    margin: 10px 0;
  }

  .de-content-cta {
    min-height: 260px;
  }

  .de-content-cta-image {
    min-height: 260px;
    height: 260px;
    object-fit: cover;
  }

  .de-cta-button {
    min-width: 210px;
    width: min(100%, 320px);
    min-height: 48px;
  }

  .de-table th,
  .de-table td {
    font-size: 0.9rem;
    padding: 9px 8px;
  }

  .de-floating-banner {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 10px;
    gap: 8px;
  }

  .de-floating-copy {
    font-size: 0.9rem;
  }

  .de-floating-cta {
    min-width: 150px;
    min-height: 44px;
    padding: 8px 12px;
    font-size: 0.88rem;
  }

  .de-floating-close {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 560px) {
  .de-sidebar-buttons {
    width: calc(100% - 118px);
  }

  .de-sidebar-btn {
    font-size: 0.8rem;
  }

  .de-floating-banner {
    flex-wrap: wrap;
  }

  .de-floating-cta {
    width: calc(100% - 42px);
  }

  .de-slot-actions {
    gap: 8px;
    padding: 10px;
  }

  .de-slot-action {
    width: 88%;
  }

  .de-slot-reveal {
    width: 50px;
    height: 50px;
  }

  .de-slot-reveal::before {
    border-width: 8px 0 8px 12px;
  }

  .de-slot-demo-dialog {
    padding-top: 42px;
  }

  .de-slot-demo-close {
    right: 8px;
    top: 8px;
    width: 30px;
    height: 30px;
  }

  .de-slot-demo-frame {
    min-height: 0;
    border-radius: 0;
  }
}
