:root {
  --jcit-bg: #070322;
  --jcit-bg-deep: #040116;
  --jcit-panel: #100538;
  --jcit-panel-soft: rgba(17, 8, 60, 0.88);
  --jcit-text: #f4f4ff;
  --jcit-muted: #cbc5f0;
  --jcit-accent: #b85bff;
  --jcit-accent-strong: #8f3dff;
  --jcit-sun: #ffbe1f;
  --jcit-sun-deep: #f0a900;
  --jcit-line: rgba(194, 167, 255, 0.38);
  --jcit-shadow: 0 16px 36px rgba(3, 0, 22, 0.48);
}

@font-face {
  font-family: "JackpotDisplay";
  src: url("./assets/fonts/jackpot-display.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "JackpotText";
  src: url("./assets/fonts/jackpot-text-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "JackpotText";
  src: url("./assets/fonts/jackpot-text-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--jcit-bg);
  color: var(--jcit-text);
  font-family: "JackpotText", "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body {
  line-height: 1.56;
  min-width: 220px;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.jcit-icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.jcit-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: #ffffff;
  color: #000000;
  padding: 10px 14px;
  z-index: 2000;
}

.jcit-skip:focus {
  left: 10px;
}

.jcit-shell {
  width: min(1240px, calc(100% - 2.4rem));
  margin-inline: auto;
}

.jcit-mainwrap {
  margin-top: 0;
  padding-top: 0;
}

.jcit-panel {
  margin-top: 10px;
  padding-block: 20px;
}

.jcit-panel h2,
.jcit-panel h3 {
  font-family: "JackpotDisplay", "Trebuchet MS", sans-serif;
  margin: 18px 0;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.jcit-panel h2 {
  font-size: clamp(1.4rem, 1.2rem + 1.5vw, 2rem);
  text-align: center;
}

.jcit-panel p {
  margin: 0 0 16px;
  color: var(--jcit-text);
  font-size: clamp(0.98rem, 0.9rem + 0.35vw, 1.08rem);
}

.jcit-panel p + p,
.jcit-panel ul,
.jcit-panel ol,
.jcit-table-wrap,
.jcit-icon-grid,
.jcit-login-flow,
.jcit-pay-tiles,
.jcit-payment-boxes,
.jcit-provider-grid,
.jcit-faq-list {
  margin-top: 16px;
}

.jcit-table-wrap,
.jcit-icon-grid,
.jcit-login-flow,
.jcit-pay-tiles,
.jcit-payment-boxes,
.jcit-provider-grid {
  margin-bottom: 16px;
}

.jcit-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.jcit-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 10px;
  color: var(--jcit-muted);
}

.jcit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--jcit-sun), #ffd56a);
  box-shadow: 0 0 0 3px rgba(255, 190, 31, 0.2);
}

.jcit-list-number {
  counter-reset: jcit-counter;
}

.jcit-list-number li {
  padding-left: 1.8rem;
}

.jcit-list-number li::before {
  counter-increment: jcit-counter;
  content: counter(jcit-counter);
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  top: 0.1rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: #2a1300;
  background: linear-gradient(180deg, #ffd76d, #ffb629);
  box-shadow: none;
}

.jcit-header {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: linear-gradient(180deg, rgba(6, 2, 31, 0.98), rgba(6, 2, 31, 0.95));
  border-bottom: 1px solid rgba(156, 118, 255, 0.28);
  backdrop-filter: blur(10px);
}

.jcit-header-desktop {
  width: min(1360px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.jcit-desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.jcit-desktop-nav-left {
  flex: 1 1 auto;
}

.jcit-desktop-nav-right {
  flex: 0 1 auto;
}

.jcit-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.jcit-brand img {
  display: block;
}

.jcit-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 10px;
  color: #ece7ff;
  font-size: 0.83rem;
  letter-spacing: 0.02em;
  transition: background-color 0.24s ease, color 0.24s ease;
}

.jcit-nav-link svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.jcit-nav-link:hover,
.jcit-nav-link:focus-visible {
  background: rgba(184, 91, 255, 0.22);
  color: #ffffff;
}

.jcit-header .jcit-nav-link svg,
.jcit-drawer-link svg {
  stroke: #ffd15f;
}

.jcit-header-cta-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.jcit-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  min-height: 42px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.jcit-action-btn:hover,
.jcit-action-btn:focus-visible {
  transform: translateY(-1px);
}

.jcit-action-btn-ghost {
  color: #f7f3ff;
  border-color: rgba(199, 163, 255, 0.45);
  background: rgba(74, 42, 146, 0.3);
}

.jcit-action-btn-solid {
  color: #2f1700;
  background: linear-gradient(180deg, #ffd15f, #ffbb1d 62%, #e99d00);
  box-shadow: 0 8px 18px rgba(255, 191, 41, 0.35);
}

.jcit-header-mobile {
  display: none;
}

.jcit-burger {
  border: 0;
  background: transparent;
  color: #ffffff;
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  font-family: inherit;
  padding: 6px 4px;
}

.jcit-burger span {
  width: 24px;
  height: 2px;
  background: #ffd15f;
  border-radius: 999px;
}

.jcit-burger strong {
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 2px;
}

.jcit-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(1, 0, 10, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.jcit-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  height: 100dvh;
  width: min(92vw, 360px);
  background: rgba(11, 4, 46, 0.92);
  box-shadow: -20px 0 30px rgba(0, 0, 0, 0.45);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  padding: 16px 14px calc(28px + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  z-index: 1300;
}

.jcit-drawer-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
}

.jcit-brand-drawer {
  margin-inline: auto;
}

.jcit-drawer-close {
  border: 1px solid rgba(215, 190, 255, 0.55);
  background: rgba(124, 74, 214, 0.35);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-size: 1rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.jcit-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jcit-drawer-link {
  width: 100%;
  justify-content: flex-start;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(90, 52, 176, 0.68);
  border: 1px solid rgba(186, 142, 255, 0.33);
  font-size: 0.92rem;
}

.jcit-drawer-microcopy {
  margin-top: auto;
  color: #d8d0ff;
  font-size: 0.84rem;
  line-height: 1.45;
}

body.jcit-drawer-open .jcit-drawer {
  transform: translateX(0);
}

body.jcit-drawer-open .jcit-drawer-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.jcit-hero {
  position: relative;
  min-height: clamp(480px, 76vh, 760px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.jcit-hero-picture,
.jcit-hero-picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.jcit-hero-picture img {
  object-fit: cover;
}

.jcit-hero-shadow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 1, 22, 0.24) 0%, rgba(7, 3, 34, 0.62) 58%, rgba(7, 3, 34, 0.96) 100%);
}

.jcit-hero-inner {
  position: relative;
  z-index: 3;
  text-align: center;
  width: min(900px, calc(100% - 2rem));
  padding-bottom: 72px;
}

.jcit-hero-pretitle {
  display: inline-block;
  margin: 0 0 10px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #f5e9ff;
  background: rgba(34, 10, 72, 0.74);
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.jcit-hero h1 {
  margin: 0;
  font-family: "JackpotDisplay", "Trebuchet MS", sans-serif;
  font-size: clamp(1.9rem, 1.2rem + 3.8vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-wrap: balance;
}

.jcit-hero-cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  min-width: 240px;
  max-width: 380px;
  padding: 12px 28px;
  border-radius: 14px;
  font-family: "JackpotDisplay", "Trebuchet MS", sans-serif;
  font-size: clamp(1rem, 0.95rem + 0.6vw, 1.35rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2b1400;
  background: linear-gradient(180deg, #ffe27d 0%, #ffc733 44%, #f0ab00 100%);
  box-shadow: 0 14px 30px rgba(255, 187, 0, 0.42);
  animation: jcit-cta-pulse 2.4s ease-in-out infinite;
}

@keyframes jcit-cta-pulse {
  0% {
    box-shadow: 0 10px 24px rgba(255, 180, 0, 0.36);
    transform: scale(1);
  }
  20% {
    box-shadow: 0 0 0 10px rgba(255, 189, 27, 0.25), 0 14px 34px rgba(255, 174, 13, 0.52);
    transform: scale(1.045);
  }
  48% {
    transform: scale(1.01);
    box-shadow: 0 10px 24px rgba(255, 180, 0, 0.32);
  }
  100% {
    box-shadow: 0 10px 24px rgba(255, 180, 0, 0.36);
    transform: scale(1);
  }
}

.jcit-hero-terms {
  margin: 14px auto 0;
  max-width: 760px;
  font-size: 0.86rem;
  color: #ece3ff;
}

.jcit-hero-payline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(7, 3, 34, 0), rgba(7, 3, 34, 0.88));
}

.jcit-hero-payline img {
  max-height: 22px;
  width: auto;
  opacity: 0.96;
}

.jcit-band-bg {
  position: relative;
  overflow: hidden;
}

.jcit-band-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./assets/images/visual/neon-casino-surface-bg.webp") center / cover no-repeat;
  opacity: 0.44;
}

.jcit-band-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(7 2 28 / 0%), rgb(7 2 28 / 43%));
}

.jcit-band-bg > * {
  position: relative;
  z-index: 2;
}

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

.jcit-slot-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--jcit-shadow);
  aspect-ratio: 2 / 3;
  cursor: pointer;
}

.jcit-slot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.jcit-slot-layer {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 12px;
  background: linear-gradient(180deg, rgba(9, 2, 28, 0.08), rgba(6, 2, 23, 0.86));
  opacity: 0;
  transition: opacity 0.24s ease;
}

.jcit-slot-name {
  margin: auto 0 10px;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.jcit-slot-buttons {
  display: flex;
  gap: 8px;
  width: 100%;
}

.jcit-slot-btn {
  flex: 1 1 0;
  border-radius: 10px;
  min-height: 36px;
  border: 0;
  font-family: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.jcit-slot-play {
  color: #2c1500;
  background: linear-gradient(180deg, #ffd56d, #ffbf24 60%, #e59b00);
}

.jcit-slot-demo {
  color: #f8f4ff;
  background: rgba(139, 93, 255, 0.42);
  border: 1px solid rgba(205, 177, 255, 0.5);
}

.jcit-slot-card:hover img,
.jcit-slot-card.is-touched img {
  transform: scale(1.06);
  filter: brightness(0.65);
}

.jcit-slot-card:hover .jcit-slot-layer,
.jcit-slot-card.is-touched .jcit-slot-layer {
  opacity: 1;
}

.jcit-slot-card:hover .jcit-slot-name,
.jcit-slot-card.is-touched .jcit-slot-name {
  opacity: 1;
  transform: translateY(0);
}

.jcit-icon-grid {
  display: grid;
  gap: 12px;
}

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

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

.jcit-icon-card {
  background: var(--jcit-panel-soft);
  border: 1px solid var(--jcit-line);
  border-radius: 16px;
  padding: 12px;
  box-shadow: var(--jcit-shadow);
}

.jcit-icon-card-head {
  display: flex;
  align-items: center;
  gap: 9px;
}

.jcit-icon-card-head svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #ffd15f;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  display: block;
  min-width: 20px;
  opacity: 1;
}

.jcit-icon-card h3 {
  margin: 0;
  font-size: 1rem;
}

.jcit-icon-card p {
  margin: 10px 0 0;
  color: var(--jcit-muted);
  font-size: 0.92rem;
}

.jcit-table-wrap {
  border-radius: 20px;
  overflow: hidden;
  padding: 8px;
  background: linear-gradient(145deg, rgba(64, 33, 138, 0.9), rgba(24, 11, 76, 0.95));
  box-shadow: 0 16px 34px rgba(3, 0, 22, 0.52);
  border: 1px solid rgba(224, 196, 255, 0.34);
}

.jcit-data-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: linear-gradient(180deg, rgba(17, 8, 57, 0.95), rgba(9, 4, 34, 0.96));
  border-radius: 14px;
  overflow: hidden;
}

.jcit-data-table th,
.jcit-data-table td {
  padding: 15px 20px;
  border-bottom: 1px solid rgba(186, 153, 255, 0.22);
  vertical-align: top;
}

.jcit-data-table thead th {
  background: rgba(42, 20, 106, 0.88);
  color: #ffe7ff;
  font-size: 0.9rem;
}

.jcit-data-table th {
  width: 40%;
  text-align: left;
  color: #f8dcff;
  font-size: 0.92rem;
  font-weight: 700;
}

.jcit-data-table td {
  color: #f5f1ff;
  font-size: 0.92rem;
  word-break: break-word;
}

.jcit-data-table tbody tr:nth-child(even) th,
.jcit-data-table tbody tr:nth-child(even) td {
  background: rgba(18, 9, 56, 0.58);
}

.jcit-data-table td a {
  color: #ffe28d;
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.jcit-login-flow {
  display: grid;
  gap: 20px;
}

.jcit-login-step {
  margin: 0;
  text-align: center;
}

.jcit-login-step figcaption {
  margin-bottom: 12px;
  font-family: "JackpotDisplay", "Trebuchet MS", sans-serif;
  font-size: clamp(1rem, 0.9rem + 0.45vw, 1.25rem);
}

.jcit-login-step img {
  width: min(580px, 100%);
  border-radius: 14px;
  box-shadow: var(--jcit-shadow);
}

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

.jcit-pay-tiles img {
  width: 100%;
  min-height: 58px;
  max-height: 62px;
  object-fit: contain;
  border-radius: 12px;
  padding: 10px;
  background: rgba(21, 10, 62, 0.82);
  border: 1px solid rgba(196, 166, 255, 0.3);
  box-shadow: var(--jcit-shadow);
}

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

.jcit-pay-box {
  background: rgba(18, 8, 54, 0.9);
  border-radius: 14px;
  border: 1px solid rgba(188, 157, 255, 0.35);
  box-shadow: var(--jcit-shadow);
  padding: 12px;
}

.jcit-pay-box h3 {
  margin-top: 0;
  text-align: left;
}

.jcit-payline {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 8px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(188, 157, 255, 0.2);
  font-size: 0.9rem;
}

.jcit-payline:last-child {
  border-bottom: 0;
}

.jcit-payline strong {
  color: #ffe8ff;
  font-size: 0.88rem;
}

.jcit-provider-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
}

.jcit-provider-grid img {
  width: 100%;
  min-height: 52px;
  max-height: 58px;
  object-fit: contain;
  background: rgba(15, 7, 48, 0.7);
  border: 1px solid rgba(193, 168, 255, 0.28);
  border-radius: 12px;
  padding: 10px;
}

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

.jcit-faq-item {
  border-radius: 12px;
  border: 1px solid rgba(210, 184, 255, 0.38);
  background: rgba(10, 4, 35, 0.85);
  padding: 0 12px;
}

.jcit-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 13px 0;
  font-family: "JackpotDisplay", "Trebuchet MS", sans-serif;
  font-size: 1.02rem;
}

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

.jcit-faq-item p {
  color: var(--jcit-muted);
  margin: 0 0 14px;
}

.jcit-footer {
  margin-top: 12px;
  padding: 20px 0 28px;
  background: linear-gradient(180deg, rgba(7, 3, 34, 0.86), rgba(4, 1, 22, 1));
  border-top: 1px solid rgba(173, 136, 255, 0.3);
}

.jcit-footer-brand {
  margin: 0 auto 10px;
}

.jcit-footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 10px;
}

.jcit-footer-links a {
  color: #ece4ff;
  font-size: 0.9rem;
  border-bottom: 1px solid transparent;
}

.jcit-footer-links a:hover,
.jcit-footer-links a:focus-visible {
  border-color: currentColor;
}

.jcit-footer-disclaimer,
.jcit-footer-copy {
  text-align: center;
  color: #ccc4ef;
  font-size: 0.82rem;
  margin: 8px auto;
  max-width: 1000px;
}

.jcit-footer-partners {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 12px auto;
}

.jcit-footer-partners img {
  width: auto;
  height: 20px;
  opacity: 0.65;
  filter: grayscale(1);
}

.jcit-mobile-offer {
  display: none;
}

body.jcit-player-lock {
  position: fixed;
  left: 0;
  right: 0;
  overflow: hidden;
  width: 100%;
}

.jcit-demo-player {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1600;
}

.jcit-demo-player.is-open {
  display: block;
}

.jcit-demo-backdrop {
  position: absolute;
  inset: 0;
  background: #000000;
}

.jcit-demo-box {
  position: relative;
  z-index: 2;
  width: min(1180px, 92vw);
  height: 86vh;
  margin: 6vh auto 0;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.jcit-demo-frame-wrap {
  flex: 1 1 auto;
  background: #000;
}

.jcit-demo-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.jcit-demo-actionbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #0f0f12;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.jcit-demo-actionbar strong {
  justify-self: center;
  font-size: 0.9rem;
  color: #ddd;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.jcit-demo-back,
.jcit-demo-real {
  min-height: 42px;
  border-radius: 10px;
  border: 0;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.jcit-demo-back {
  background: #2a2a31;
  color: #fff;
}

.jcit-demo-real {
  color: #2b1400;
  background: linear-gradient(180deg, #ffe27d, #ffbb1f 60%, #e59e00);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.jcit-mini-hero {
  position: relative;
  background: linear-gradient(145deg, rgba(19, 7, 63, 0.92), rgba(8, 3, 31, 0.96));
  padding: 42px 0;
}

.jcit-mini-hero h1 {
  margin: 0 0 12px;
  text-align: center;
  font-family: "JackpotDisplay", "Trebuchet MS", sans-serif;
  font-size: clamp(1.8rem, 1.25rem + 2vw, 2.7rem);
  text-transform: uppercase;
}

.jcit-mini-hero p {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 16px;
}

.jcit-mini-hero .jcit-hero-cta {
  margin-inline: auto;
}

.jcit-mini-hero-404 {
  min-height: 52vh;
  display: grid;
  place-items: center;
}

.jcit-article-shell {
  max-width: 960px;
}

.jcit-article-shell h2 {
  text-align: left;
}

@media (max-width: 1260px) {
  .jcit-slot-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

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

@media (max-width: 1040px) {
  .jcit-header-desktop {
    display: none;
  }

  .jcit-header-mobile {
    display: block;
  }

  .jcit-mobile-top-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 8px 14px;
    min-height: 62px;
    gap: 8px;
  }

  .jcit-brand-mobile {
    justify-self: center;
  }

  .jcit-mobile-spacer {
    width: 42px;
    height: 34px;
    justify-self: end;
  }

  .jcit-mobile-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 0 14px 8px;
  }

  .jcit-mobile-actions .jcit-action-btn {
    width: 100%;
    min-height: 44px;
    font-size: 0.78rem;
    padding-inline: 8px;
  }

  .jcit-mobile-tabs {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 8px 14px 6px;
    scrollbar-width: thin;
    background: linear-gradient(180deg, rgba(48, 19, 104, 0.78), rgba(21, 9, 54, 0.84));
    border-top: 1px solid rgba(166, 127, 255, 0.28);
  }

  .jcit-tab-link {
    flex: 0 0 auto;
    border-radius: 0;
    padding: 7px 4px;
    border-bottom: 2px solid transparent;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
  }

  .jcit-tab-link svg {
    width: 13px;
    height: 13px;
  }

  .jcit-tab-link:hover,
  .jcit-tab-link:focus-visible {
    background: transparent;
    border-bottom-color: #ffd26a;
  }

  .jcit-shell {
    width: min(1240px, calc(100% - 2rem));
  }

  .jcit-hero {
    min-height: 68vh;
  }

  .jcit-hero-inner {
    padding-bottom: 82px;
  }

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

  .jcit-icon-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 680px) {
  body {
    padding-bottom: calc(104px + env(safe-area-inset-bottom));
  }

  .jcit-shell {
    width: calc(100% - 2rem);
  }

  .jcit-panel {
    padding-block: 2px;
    margin-top: 8px;
  }

  .jcit-hero {
    min-height: 61vh;
  }

  .jcit-hero-inner {
    width: calc(100% - 1.8rem);
    padding-bottom: 98px;
  }

  .jcit-hero h1 {
    font-size: clamp(1.7rem, 7.4vw, 2.5rem);
  }

  .jcit-hero-cta {
    width: min(84vw, 320px);
    min-width: 0;
  }

  .jcit-hero-payline {
    gap: 6px;
    padding-inline: 10px;
    overflow: hidden;
    flex-wrap: nowrap;
  }

  .jcit-hero-payline img {
    max-height: 17px;
  }

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

  .jcit-slot-name {
    font-size: 0.82rem;
  }

  .jcit-slot-btn {
    font-size: 0.7rem;
    min-height: 34px;
    padding-inline: 4px;
  }

  .jcit-data-table th,
  .jcit-data-table td {
    padding: 10px 11px;
    font-size: clamp(0.72rem, 2.65vw, 0.86rem);
  }

  .jcit-data-table th {
    width: 44%;
  }

  .jcit-icon-grid-four,
  .jcit-icon-grid-six,
  .jcit-payment-boxes {
    grid-template-columns: 1fr;
  }

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

  .jcit-pay-tiles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .jcit-pay-tiles img {
    min-height: 52px;
    max-height: 56px;
    padding: 8px;
  }

  .jcit-payline {
    grid-template-columns: 1.2fr 0.8fr 0.9fr;
    font-size: 0.82rem;
  }

  .jcit-mobile-offer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1450;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, rgba(16, 7, 52, 0.98), rgba(7, 3, 33, 0.99));
    border-top: 1px solid rgba(194, 163, 255, 0.45);
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .jcit-mobile-offer p {
    margin: 0;
    font-family: "JackpotDisplay", "Trebuchet MS", sans-serif;
    font-size: clamp(0.84rem, 3.2vw, 1rem);
    line-height: 1.24;
    max-width: 56%;
  }

  .jcit-mobile-offer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
    border-radius: 10px;
    min-height: 44px;
    padding: 10px 14px;
    color: #2b1400;
    font-size: clamp(0.8rem, 2.95vw, 0.92rem);
    line-height: 1.08;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: linear-gradient(180deg, #ffe57f, #ffbf25 60%, #ea9f00);
    box-shadow: 0 0 0 0 rgba(255, 210, 81, 0.25);
    animation: jcit-cta-pulse 2.4s ease-in-out infinite;
  }

  .jcit-mobile-offer.is-visible {
    transform: translateY(0);
    opacity: 1;
  }

  .jcit-demo-box {
    width: 100vw;
    height: 100vh;
    margin: 0;
    border-radius: 0;
  }

  .jcit-demo-frame-wrap {
    height: calc(100vh - 80px - env(safe-area-inset-bottom));
  }

  .jcit-demo-actionbar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 80px;
    padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
    grid-template-columns: auto 1fr auto;
    background: #101014;
  }

  .jcit-demo-actionbar strong {
    font-size: 0.8rem;
  }

  .jcit-demo-back,
  .jcit-demo-real {
    min-height: 46px;
    font-size: 0.72rem;
    padding-inline: 10px;
  }

  .jcit-footer {
    padding-bottom: 16px;
  }
}

@media (max-width: 420px) {
  .jcit-shell {
    width: calc(100% - 1.5rem);
  }

  .jcit-mobile-top-row,
  .jcit-mobile-actions,
  .jcit-mobile-tabs {
    padding-left: 12px;
    padding-right: 12px;
  }

  .jcit-mobile-actions {
    gap: 8px;
  }

  .jcit-action-btn {
    font-size: 0.73rem;
  }

  .jcit-hero-pretitle {
    font-size: 0.72rem;
  }

  .jcit-hero h1 {
    font-size: clamp(1.52rem, 8.5vw, 2.1rem);
  }

  .jcit-mobile-offer {
    gap: 8px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .jcit-mobile-offer p {
    max-width: 52%;
    font-size: 0.82rem;
    line-height: 1.2;
  }

  .jcit-mobile-offer a {
    min-height: 42px;
    padding: 9px 12px;
    font-size: 0.76rem;
    line-height: 1.06;
  }
}
