:root {
  --clr-bg: #3b0916;
  --clr-bg2: #2a0710;
  --clr-header: #bb7b28;
  --clr-header-dark: #9a6318;
  --clr-gold: #dcbd36;
  --clr-gold-hover: #f0d44a;
  --clr-red: #9e0d09;
  --clr-red-hover: #c01108;
  --clr-text: #f5e8cc;
  --clr-text-muted: #c4a97a;
  --clr-text-dark: #1a0008;
  --clr-border: rgba(220,189,54,0.25);
  --clr-block: rgba(59,9,22,0.85);
  --clr-block2: rgba(187,123,40,0.12);
  --clr-overlay: rgba(42,7,16,0.72);
  --radius: 12px;
  --radius-sm: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,0.45);
  --shadow-gold: 0 2px 18px rgba(220,189,54,0.22);
  --transition: 0.22s ease;
  --font: 'Lato', sans-serif;
}

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

html { background: var(--clr-bg); scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--clr-bg);
  color: var(--clr-text);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-gold-hover); }
h1, h2, h3, h4, h5 { line-height: 1.25; color: var(--clr-gold); font-weight: 700; }
h1 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.3rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

.c-wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.c-wrap--lg { max-width: 1400px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
}
.btn:hover::after { background: rgba(255,255,255,0.08); }

.btn--gold {
  background: var(--clr-gold);
  color: var(--clr-text-dark);
}
.btn--gold:hover { background: var(--clr-gold-hover); color: var(--clr-text-dark); box-shadow: var(--shadow-gold); }

.btn--red {
  background: var(--clr-red);
  color: #fff;
}
.btn--red:hover { background: var(--clr-red-hover); color: #fff; box-shadow: 0 2px 18px rgba(158,13,9,0.4); }

.btn--outline {
  background: transparent;
  border: 2px solid var(--clr-gold);
  color: var(--clr-gold);
}
.btn--outline:hover { background: var(--clr-gold); color: var(--clr-text-dark); }

.btn--lg { padding: 14px 32px; font-size: 1.05rem; }
.btn--sm { padding: 7px 16px; font-size: 0.85rem; }

.btn--pulse {
  animation: ct-pulse 2.4s infinite;
}
@keyframes ct-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220,189,54,0.45); }
  50% { box-shadow: 0 0 0 10px rgba(220,189,54,0); }
}

.ct-header {
  background: var(--clr-header);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 18px rgba(0,0,0,0.45);
}

.ct-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 62px;
  padding: 8px 0;
}

.ct-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.ct-logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}
.ct-logo span {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--clr-text-dark);
  letter-spacing: -0.5px;
}

.ct-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.ct-nav a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  color: var(--clr-text-dark);
  font-weight: 700;
  font-size: 0.88rem;
  transition: background var(--transition), color var(--transition);
}
.ct-nav a:hover { background: rgba(0,0,0,0.15); color: var(--clr-bg); }
.ct-nav a svg { flex-shrink: 0; }

.ct-header__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.ct-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 1001;
}
.ct-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.ct-burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ct-burger.is-active span:nth-child(2) { opacity: 0; }
.ct-burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.ct-mobile-menu {
  display: none;
  position: fixed;
  top: 77px;
  left: 0;
  right: 0;
  background: var(--clr-header-dark);
  z-index: 998;
  padding: 16px;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  max-height: calc(100vh - 62px);
  overflow-y: auto;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.ct-mobile-menu.is-open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.ct-mobile-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  color: var(--clr-text);
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ct-mobile-menu a:hover { background: rgba(255,255,255,0.1); }
.ct-mobile-menu .btn { width: 100%; justify-content: center; margin-top: 4px; }

.ct-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ct-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/img/slot-crazy-time-hero.webp');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.ct-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(42,7,16,0.92) 0%, rgba(42,7,16,0.6) 60%, rgba(42,7,16,0.3) 100%);
  z-index: 1;
}
.ct-hero__content {
  position: relative;
  z-index: 2;
  padding: 56px 16px;
  max-width: 620px;
}
.ct-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--clr-red);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  animation: ct-fadein 0.6s ease;
}
.ct-hero h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  animation: ct-fadein 0.8s ease;
}
.ct-hero h1 span { color: var(--clr-gold); }

.ct-hero__spoiler {
  margin-bottom: 24px;
}
.ct-hero__spoiler-toggle {
  background: none;
  border: none;
  color: var(--clr-gold);
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 0;
  transition: color var(--transition);
}
.ct-hero__spoiler-toggle:hover { color: var(--clr-gold-hover); }
.ct-hero__spoiler-toggle svg { transition: transform 0.3s ease; }
.ct-hero__spoiler-toggle.is-open svg { transform: rotate(180deg); }
.ct-hero__intro {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.ct-hero__intro.is-open { max-height: 300px; }
.ct-hero__intro p {
  color: var(--clr-text);
  font-size: 0.97rem;
  line-height: 1.7;
  padding-top: 8px;
  padding-bottom: 4px;
}
.ct-hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: ct-fadein 1s ease;
}

@keyframes ct-fadein {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.ct-section {
  padding: 48px 0;
}
.ct-section--alt { background: rgba(0,0,0,0.2); }

.ct-section__title {
  text-align: center;
  margin-bottom: 32px;
}
.ct-section__title h2 { margin-bottom: 8px; }
.ct-section__title p { color: var(--clr-text-muted); font-size: 0.97rem; }

.ct-block {
  background: var(--clr-block2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
}

.ct-game-demo {
  background: rgba(0,0,0,0.35);
  border: 2px solid var(--clr-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.ct-game-demo__bar {
  background: var(--clr-header);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ct-game-demo__bar span {
  color: var(--clr-text-dark);
  font-weight: 700;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ct-game-demo__bar .btn-group { display: flex; gap: 8px; flex-wrap: wrap; }
.ct-game-demo__frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
}
.ct-game-demo__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.ct-game-demo__actions {
  padding: 16px 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
  background: rgba(0,0,0,0.2);
  flex-wrap: wrap;
}

.ct-table-wrap { overflow-x: auto; margin: 0 auto; }
.ct-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: rgba(0,0,0,0.25);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.ct-table th {
  background: var(--clr-header);
  color: var(--clr-text-dark);
  text-align: left;
  padding: 13px 18px;
  font-weight: 700;
  white-space: nowrap;
}
.ct-table td {
  padding: 11px 18px;
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-text);
  vertical-align: top;
}
.ct-table tr:last-child td { border-bottom: none; }
.ct-table tr:nth-child(even) td { background: rgba(255,255,255,0.03); }
.ct-table tr:hover td { background: rgba(220,189,54,0.07); transition: background 0.2s; }
.ct-table td strong { color: var(--clr-gold); }
.ct-table td .ct-badge {
  display: inline-block;
  background: var(--clr-red);
  color: #fff;
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
}

.ct-pros-cons {
  display: flex;
  gap: 20px;
}
.ct-pros-cons__col {
  flex: 1;
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--clr-border);
}
.ct-pros-cons__col--pros { border-top: 3px solid #3cb371; }
.ct-pros-cons__col--cons { border-top: 3px solid var(--clr-red); }
.ct-pros-cons__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-text);
}
.ct-pros-cons__list { list-style: none; }
.ct-pros-cons__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.93rem;
  line-height: 1.5;
  color: var(--clr-text);
}
.ct-pros-cons__list li:last-child { border-bottom: none; }
.ct-pros-cons__list li .ct-ico { flex-shrink: 0; margin-top: 2px; }

.ct-strategies {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.ct-strategy-card {
  flex: 1;
  min-width: 240px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.ct-strategy-card:hover { transform: translateY(-5px); box-shadow: 0 8px 32px rgba(0,0,0,0.5); }
.ct-strategy-card__img {
  width: 100%;
  height: 160px;
  overflow: hidden;
}
.ct-strategy-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ct-strategy-card:hover .ct-strategy-card__img img { transform: scale(1.06); }
.ct-strategy-card__body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.ct-strategy-card__title { color: var(--clr-gold); font-size: 1rem; font-weight: 700; }
.ct-strategy-card__desc { color: var(--clr-text-muted); font-size: 0.88rem; line-height: 1.55; flex: 1; }

.ct-review-block {
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.ct-review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--clr-border);
}
.ct-review-author__avatar {
  width: 52px;
  height: 52px;
  background: var(--clr-header);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--clr-text-dark);
  flex-shrink: 0;
}
.ct-review-author__info { flex: 1; }
.ct-review-author__name { font-weight: 700; color: var(--clr-gold); font-size: 1rem; }
.ct-review-author__meta { font-size: 0.82rem; color: var(--clr-text-muted); margin-top: 3px; }
.ct-review-author__link { font-size: 0.82rem; color: var(--clr-gold); }

.ct-content-area { color: var(--clr-text); line-height: 1.75; }
.ct-content-area h1, .ct-content-area h2, .ct-content-area h3,
.ct-content-area h4, .ct-content-area h5 { color: var(--clr-gold); margin: 1.4em 0 0.6em; line-height: 1.3; }
.ct-content-area h1 { font-size: 1.8rem; }
.ct-content-area h2 { font-size: 1.45rem; }
.ct-content-area h3 { font-size: 1.2rem; }
.ct-content-area p { margin-bottom: 1em; }
.ct-content-area ul, .ct-content-area ol { margin: 0.8em 0 1em 1.5em; }
.ct-content-area li { margin-bottom: 0.5em; }
.ct-content-area strong, .ct-content-area b { color: var(--clr-gold); font-weight: 700; }
.ct-content-area em, .ct-content-area i { font-style: italic; }
.ct-content-area a { color: var(--clr-gold); text-decoration: underline; }
.ct-content-area a:hover { color: var(--clr-gold-hover); }
.ct-content-area blockquote {
  border-left: 4px solid var(--clr-gold);
  margin: 1.2em 0;
  padding: 10px 18px;
  background: rgba(220,189,54,0.07);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--clr-text-muted);
  font-style: italic;
}
.ct-content-area table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
  overflow-x: auto;
  display: block;
}
.ct-content-area table th {
  background: var(--clr-header);
  color: var(--clr-text-dark);
  padding: 10px 14px;
  text-align: left;
  font-weight: 700;
}
.ct-content-area table td {
  padding: 9px 14px;
  border: 1px solid var(--clr-border);
  font-size: 0.92rem;
}
.ct-content-area table tr:nth-child(even) td { background: rgba(255,255,255,0.04); }
.ct-content-area img { max-width: 100%; border-radius: var(--radius-sm); margin: 0.8em 0; }
.ct-content-area hr { border: none; border-top: 1px solid var(--clr-border); margin: 1.6em 0; }
.ct-content-area code {
  background: rgba(220,189,54,0.12);
  color: var(--clr-gold);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.9em;
}
.ct-content-area pre {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 14px;
  overflow-x: auto;
  margin: 1em 0;
}

.ct-faq__item {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  background: rgba(0,0,0,0.2);
  transition: border-color var(--transition);
}
.ct-faq__item:hover { border-color: rgba(220,189,54,0.45); }
.ct-faq__question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--clr-text);
  font-family: var(--font);
  font-size: 0.97rem;
  font-weight: 600;
  transition: color var(--transition);
}
.ct-faq__question:hover { color: var(--clr-gold); }
.ct-faq__question.is-open { color: var(--clr-gold); }
.ct-faq__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--clr-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.ct-faq__question.is-open .ct-faq__icon { background: var(--clr-gold); transform: rotate(45deg); }
.ct-faq__icon svg { color: var(--clr-text); }
.ct-faq__question.is-open .ct-faq__icon svg { color: var(--clr-text-dark); }
.ct-faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
}
.ct-faq__answer.is-open {
  max-height: 600px;
  padding: 0 20px 16px;
}
.ct-faq__answer p { color: var(--clr-text-muted); font-size: 0.93rem; line-height: 1.65; }

.ct-footer {
  background: var(--clr-header);
  padding: 48px 0 24px;
  margin-top: 16px;
}
.ct-footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0,0,0,0.25);
  margin-bottom: 28px;
}
.ct-footer__col { flex: 1; min-width: 200px; }
.ct-footer__logo { margin-bottom: 12px; }
.ct-footer__logo a{display: block;width: fit-content;}
.ct-footer__logo img { height: 60px;width: auto; }
.ct-footer__desc { font-size: 0.85rem; color: rgba(42,7,16,0.75); line-height: 1.6; }

.ct-footer__title { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--clr-text-dark); margin-bottom: 12px; opacity: 0.7; }
.ct-footer__links { list-style: none; }
.ct-footer__links li { margin-bottom: 7px; }
.ct-footer__links a { font-size: 0.88rem; color: var(--clr-text-dark); opacity: 0.75; transition: opacity var(--transition); }
.ct-footer__links a:hover { opacity: 1; color: var(--clr-bg); }

.ct-footer__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
}
.ct-footer__logo-badge {
  background: rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.ct-footer__social { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.ct-footer__social a {
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-dark);
  transition: background var(--transition), color var(--transition);
}
.ct-footer__social a:hover { background: rgba(0,0,0,0.4); color: var(--clr-text); }

.ct-footer__bottom {
  text-align: center;
}
.ct-footer__legal { font-size: 0.78rem; color: rgba(42,7,16,0.65); line-height: 1.55; max-width: 800px; margin: 0 auto 14px; }
.ct-footer__copyright { font-size: 0.82rem; color: var(--clr-text-dark); font-weight: 700; }
.ct-footer__copyright a { color: var(--clr-text-dark); text-decoration: underline; }

.ct-breadcrumbs {
  padding: 10px 0;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}
.ct-breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
.ct-breadcrumbs li::after { content: ' /'; margin-left: 4px; color: var(--clr-border); }
.ct-breadcrumbs li:last-child::after { display: none; }
.ct-breadcrumbs a { color: var(--clr-text-muted); }
.ct-breadcrumbs a:hover { color: var(--clr-gold); }

.ct-info-page { padding: 48px 0; }
.ct-info-page h1 { margin-bottom: 24px; }
.ct-info-page h2 { margin: 1.6em 0 0.6em; }
.ct-info-page p, .ct-info-page li { margin-bottom: 0.9em; color: var(--clr-text); line-height: 1.75; }
.ct-info-page ul, .ct-info-page ol { margin-left: 1.5em; margin-bottom: 1em; }

.ct-divider {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
  margin: 48px 0;
}

.ct-shimmer-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--clr-red), var(--clr-gold), var(--clr-red));
  background-size: 200%;
  animation: ct-shimmer 2.5s linear infinite;
}
@keyframes ct-shimmer {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}


.wp-block-widget { display: none; }
.elementor-hidden { visibility: hidden; height: 0; overflow: hidden; }

@media (max-width: 900px) {
  .ct-nav { display: none; }
  .ct-burger { display: flex; }
  .ct-pros-cons { flex-direction: column; }
}

@media (max-width: 700px) {
  .ct-hero { min-height: 360px; }
  .ct-hero__content { padding: 36px 16px; }
  .ct-strategies { flex-direction: column; }
  .ct-footer__top { flex-direction: column; gap: 24px; }
  .ct-block { padding: 18px; }
  .ct-review-block { padding: 20px; }
  .ct-game-demo__bar { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .ct-header__cta .btn--outline { display: none; }
  .ct-hero h1 { font-size: 1.55rem; }
  .ct-table th, .ct-table td { padding: 9px 12px; font-size: 0.88rem; }
}

.ct-xp-wrap { display: none; }
#wp-toolbar { display: none; }
.wp-admin-bar { display: none; }
.ct-hidden-meta { display: none !important; }
