@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --cr-bg: #0d0d0d;
  --cr-nav: #141414;
  --cr-orange: #ff6b00;
  --cr-green: #22c55e;
  --cr-text: #e8e8e8;
  --cr-text-muted: #a0a0a0;
  --cr-border: #2a2a2a;
  --cr-card: #1a1a1a;
  --cr-card-hover: #1f1f1f;
  --cr-orange-dark: #cc5600;
  --cr-green-dark: #16a34a;
  --cr-gold: #f5c518;
  --cr-radius: 10px;
  --cr-radius-sm: 6px;
  --cr-shadow: 0 4px 24px rgba(0,0,0,0.5);
  --cr-shadow-orange: 0 0 20px rgba(255,107,0,0.3);
  --cr-shadow-green: 0 0 20px rgba(34,197,94,0.3);
  --cr-transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--cr-bg);
  color: var(--cr-text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--cr-orange); text-decoration: none; transition: color var(--cr-transition); }
a:hover { color: #ff8c33; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.cr-wrapper { min-height: 100vh; display: flex; flex-direction: column; }
.cr-container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.cr-section { padding: 64px 0; }
.cr-section--sm { padding: 40px 0; }

.cr-row { display: flex; flex-wrap: wrap; margin: 0 -12px; }
.cr-col { padding: 0 12px; }
.cr-col-12 { width: 100%; }
.cr-col-6 { width: 50%; }
.cr-col-4 { width: 33.333%; }
.cr-col-3 { width: 25%; }
.cr-col-8 { width: 66.666%; }

@media (max-width: 1024px) {
  .cr-col-4 { width: 50%; }
  .cr-col-3 { width: 50%; }
}
@media (max-width: 768px) {
  .cr-col-6, .cr-col-4, .cr-col-3, .cr-col-8 { width: 100%; }
}

h1, h2, h3, h4, h5 { color: #fff; font-weight: 700; line-height: 1.25; }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }
p { line-height: 1.7; color: var(--cr-text); }

.cr-section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}
.cr-section-title span { color: var(--cr-orange); }
.cr-section-subtitle {
  color: var(--cr-text-muted);
  text-align: center;
  margin-bottom: 40px;
  font-size: 0.95rem;
}
.cr-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--cr-orange), var(--cr-green));
  border-radius: 2px;
  margin: 12px auto 40px;
}

.cr-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--cr-radius-sm);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all var(--cr-transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.cr-btn::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}
.cr-btn:hover::after { width: 200%; height: 200%; }

.cr-btn--orange {
  background: var(--cr-orange);
  color: #fff;
}
.cr-btn--orange:hover {
  background: #ff8020;
  color: #fff;
  box-shadow: var(--cr-shadow-orange);
  transform: translateY(-1px);
}
.cr-btn--green {
  background: var(--cr-green);
  color: #fff;
}
.cr-btn--green:hover {
  background: #27d968;
  color: #fff;
  box-shadow: var(--cr-shadow-green);
  transform: translateY(-1px);
}
.cr-btn--outline {
  background: transparent;
  color: var(--cr-orange);
  border: 2px solid var(--cr-orange);
}
.cr-btn--outline:hover {
  background: var(--cr-orange);
  color: #fff;
}
.cr-btn--lg { padding: 16px 36px; font-size: 1rem; }
.cr-btn--sm { padding: 8px 16px; font-size: 0.8rem; }
.cr-btn--full { width: 100%; justify-content: center; }
.cr-btn:active { transform: scale(0.98); }

.cr-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--cr-nav);
  border-bottom: 1px solid var(--cr-border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.cr-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.cr-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.cr-header__logo img {
  height: 42px;
  width: auto;
}
.cr-header__logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}
.cr-header__logo-text span { color: var(--cr-orange); }

.cr-header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.cr-header__nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  color: var(--cr-text);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--cr-radius-sm);
  transition: all var(--cr-transition);
  white-space: nowrap;
}
.cr-header__nav-link:hover {
  color: var(--cr-orange);
  background: rgba(255,107,0,0.08);
}
.cr-header__nav-link svg { width: 16px; height: 16px; flex-shrink: 0; }

.cr-header__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.cr-header__online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--cr-text-muted);
  white-space: nowrap;
}
.cr-header__online-dot {
  width: 8px; height: 8px;
  background: var(--cr-green);
  border-radius: 50%;
  animation: cr-pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes cr-pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { opacity: 0.85; transform: scale(1.1); box-shadow: 0 0 0 4px rgba(34,197,94,0); }
}

.cr-lang {
  position: relative;
}
.cr-lang__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius-sm);
  padding: 7px 10px;
  color: var(--cr-text);
  font-size: 0.82rem;
  cursor: pointer;
  transition: all var(--cr-transition);
}
.cr-lang__btn:hover { border-color: var(--cr-orange); }
.cr-lang__flag { font-size: 1rem; }
.cr-lang__arrow { width: 12px; height: 12px; transition: transform var(--cr-transition); }
.cr-lang.active .cr-lang__arrow { transform: rotate(180deg); }
.cr-lang__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius-sm);
  padding: 6px;
  min-width: 130px;
  display: none;
  box-shadow: var(--cr-shadow);
  z-index: 100;
}
.cr-lang.active .cr-lang__dropdown { display: block; }
.cr-lang__option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 4px;
  color: var(--cr-text);
  font-size: 0.83rem;
  cursor: pointer;
  transition: background var(--cr-transition);
  text-decoration: none;
}
.cr-lang__option:hover { background: rgba(255,107,0,0.1); color: var(--cr-orange); }
.cr-lang__option.active { color: var(--cr-orange); }

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

.cr-mobile-nav {
  display: none;
  background: var(--cr-nav);
  border-top: 1px solid var(--cr-border);
  padding: 16px 0;
}
.cr-mobile-nav.active { display: block; }
.cr-mobile-nav__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  color: var(--cr-text);
  font-size: 0.9rem;
  transition: all var(--cr-transition);
}
.cr-mobile-nav__link:hover { color: var(--cr-orange); background: rgba(255,107,0,0.06); }
.cr-mobile-nav__link svg { width: 18px; height: 18px; }
.cr-mobile-nav__btns {
  display: flex;
  gap: 10px;
  padding: 12px 20px;
}
.cr-mobile-nav__btns .cr-btn { flex: 1; justify-content: center; }

@media (max-width: 1024px) {
  .cr-header__nav { display: none; }
}
@media (max-width: 768px) {
  .cr-burger { display: flex; }
  .cr-header__online { display: none; }
}

.cr-hero {
  position: relative;
  overflow: hidden;
  background: var(--cr-nav);
}
.cr-hero__slider {
  position: relative;
  width: 100%;
  height: clamp(320px, 55vw, 560px);
  overflow: hidden;
}
.cr-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  background-size: cover;
  background-position: center;
}
.cr-hero__slide.active { opacity: 1; }
.cr-hero__slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,13,13,0.9) 0%, rgba(13,13,13,0.5) 60%, rgba(13,13,13,0.1) 100%);
}
.cr-hero__content {
  position: absolute;
  top: 50%; left: 0;
  transform: translateY(-50%);
  width: 100%;
  padding: 0 40px;
  max-width: 700px;
}
.cr-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.4);
  color: var(--cr-orange);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.cr-hero__title {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}
.cr-hero__title span { color: var(--cr-orange); }
.cr-hero__desc {
  color: rgba(232,232,232,0.85);
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  margin-bottom: 28px;
  max-width: 480px;
  line-height: 1.6;
}
.cr-hero__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cr-hero__controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.cr-hero__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all var(--cr-transition);
  border: none;
}
.cr-hero__dot.active {
  background: var(--cr-orange);
  width: 24px;
  border-radius: 4px;
}
.cr-hero__arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(20,20,20,0.7);
  border: 1px solid var(--cr-border);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--cr-transition);
  z-index: 5;
  font-size: 1.1rem;
}
.cr-hero__arrow:hover { background: var(--cr-orange); border-color: var(--cr-orange); }
.cr-hero__arrow--prev { left: 16px; }
.cr-hero__arrow--next { right: 16px; }

@media (max-width: 600px) {
  .cr-hero__content { padding: 0 20px; max-width: 100%; }
  .cr-hero__arrow { display: none; }
}

.cr-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cr-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius);
  overflow: hidden;
}
.cr-table th, .cr-table td {
  text-align: left;
  padding: 13px 18px;
  border-bottom: 1px solid var(--cr-border);
  font-size: 0.88rem;
}
.cr-table th {
  background: var(--cr-card);
  color: var(--cr-text-muted);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 45%;
}
.cr-table td {
  background: rgba(255,255,255,0.02);
  color: var(--cr-text);
  font-weight: 500;
}
.cr-table tr:last-child th,
.cr-table tr:last-child td { border-bottom: none; }
.cr-table tr:hover td { background: rgba(255,107,0,0.04); }
.cr-table td span { color: var(--cr-orange); font-weight: 600; }
.cr-table td .cr-badge-green {
  display: inline-block;
  background: rgba(34,197,94,0.15);
  color: var(--cr-green);
  border: 1px solid rgba(34,197,94,0.3);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
}

.cr-proscons { display: flex; gap: 20px; flex-wrap: wrap; }
.cr-proscons__col {
  flex: 1;
  min-width: 260px;
  background: var(--cr-card);
  border-radius: var(--cr-radius);
  padding: 28px;
  border: 1px solid var(--cr-border);
}
.cr-proscons__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--cr-border);
}
.cr-proscons__title--pros { color: var(--cr-green); }
.cr-proscons__title--cons { color: #f87171; }
.cr-proscons__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--cr-text);
}
.cr-proscons__item:last-child { margin-bottom: 0; }
.cr-proscons__icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
  font-size: 0.7rem;
  font-weight: 700;
}
.cr-proscons__icon--pro { background: rgba(34,197,94,0.15); color: var(--cr-green); }
.cr-proscons__icon--con { background: rgba(248,113,113,0.15); color: #f87171; }

.cr-jackpots { display: flex; gap: 20px; flex-wrap: wrap; }
.cr-jackpot {
  flex: 1;
  min-width: 260px;
  border-radius: var(--cr-radius);
  padding: 28px 24px;
  border: 1px solid var(--cr-border);
  position: relative;
  overflow: hidden;
  transition: transform var(--cr-transition), box-shadow var(--cr-transition);
}
.cr-jackpot:hover { transform: translateY(-4px); }
.cr-jackpot--bronze {
  background: linear-gradient(135deg, #1a1510 0%, #1f1a14 100%);
  border-color: #8b6914;
}
.cr-jackpot--bronze:hover { box-shadow: 0 8px 32px rgba(139,105,20,0.25); }
.cr-jackpot--silver {
  background: linear-gradient(135deg, #141518 0%, #18191e 100%);
  border-color: #5a6072;
}
.cr-jackpot--silver:hover { box-shadow: 0 8px 32px rgba(90,96,114,0.25); }
.cr-jackpot--gold {
  background: linear-gradient(135deg, #1a1600 0%, #201c00 100%);
  border-color: #c4970a;
}
.cr-jackpot--gold:hover { box-shadow: 0 8px 32px rgba(196,151,10,0.35); }
.cr-jackpot__glow {
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(30px);
}
.cr-jackpot--bronze .cr-jackpot__glow { background: #cd7f32; }
.cr-jackpot--silver .cr-jackpot__glow { background: #c0c0c0; }
.cr-jackpot--gold .cr-jackpot__glow { background: #ffd700; }
.cr-jackpot__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.cr-jackpot--bronze .cr-jackpot__label { color: #cd7f32; }
.cr-jackpot--silver .cr-jackpot__label { color: #c0c0c0; }
.cr-jackpot--gold .cr-jackpot__label { color: #ffd700; }
.cr-jackpot__amount {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  font-variant-numeric: tabular-nums;
}
.cr-jackpot__players { display: flex; flex-direction: column; gap: 8px; }
.cr-jackpot__player {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 0.82rem;
}
.cr-jackpot__player-name { color: var(--cr-text-muted); font-weight: 500; }
.cr-jackpot__player-win { color: var(--cr-gold); font-weight: 700; }
.cr-jackpot__player-rank { font-size: 0.75rem; color: var(--cr-text-muted); margin-right: 6px; }

.cr-winners-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cr-winners-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius);
  overflow: hidden;
}
.cr-winners-table th {
  background: var(--cr-card);
  color: var(--cr-text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--cr-border);
}
.cr-winners-table td {
  padding: 11px 16px;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(42,42,42,0.5);
  color: var(--cr-text);
}
.cr-winners-table tr:last-child td { border-bottom: none; }
.cr-winners-table tr:hover td { background: rgba(255,107,0,0.04); }
.cr-winners-table__rank { font-weight: 700; color: var(--cr-text-muted); width: 50px; }
.cr-winners-table__rank--1 { color: #ffd700; }
.cr-winners-table__rank--2 { color: #c0c0c0; }
.cr-winners-table__rank--3 { color: #cd7f32; }
.cr-winners-table__name { font-weight: 600; color: #fff; }
.cr-winners-table__bet { color: var(--cr-text-muted); }
.cr-winners-table__mult { color: var(--cr-orange); font-weight: 700; }
.cr-winners-table__win { color: var(--cr-green); font-weight: 700; }
.cr-winners-table__time { color: var(--cr-text-muted); font-size: 0.78rem; }

.cr-bonuses { display: flex; gap: 20px; flex-wrap: wrap; }
.cr-bonus-card {
  flex: 1;
  min-width: 280px;
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius);
  overflow: hidden;
  transition: all var(--cr-transition);
  position: relative;
}
.cr-bonus-card:hover { transform: translateY(-4px); box-shadow: var(--cr-shadow); border-color: var(--cr-orange); }
.cr-bonus-card__header {
  background: linear-gradient(135deg, #1f1100, #2a1800);
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--cr-border);
  display: flex;
  align-items: center;
  gap: 14px;
}
.cr-bonus-card__casino-logo {
  width: 52px; height: 52px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--cr-nav);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--cr-orange);
  border: 1px solid var(--cr-border);
  flex-shrink: 0;
}
.cr-bonus-card__casino-info { flex: 1; }
.cr-bonus-card__casino-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.cr-bonus-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  color: var(--cr-gold);
}
.cr-bonus-card__body { padding: 20px; }
.cr-bonus-card__amount {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: var(--cr-orange);
  margin-bottom: 6px;
  line-height: 1.1;
}
.cr-bonus-card__desc {
  font-size: 0.82rem;
  color: var(--cr-text-muted);
  margin-bottom: 14px;
  line-height: 1.5;
}
.cr-bonus-card__features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.cr-bonus-card__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--cr-text);
}
.cr-bonus-card__feature-icon { color: var(--cr-green); font-size: 0.75rem; }
.cr-bonus-card__badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--cr-orange);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cr-bonus-card__wager {
  font-size: 0.75rem;
  color: var(--cr-text-muted);
  text-align: center;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .cr-bonuses { flex-direction: column; }
}

.cr-demo {
  background: var(--cr-card);
  border-radius: var(--cr-radius);
  border: 1px solid var(--cr-border);
  overflow: hidden;
}
.cr-demo__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--cr-nav);
  border-bottom: 1px solid var(--cr-border);
  flex-wrap: wrap;
  gap: 12px;
}
.cr-demo__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
}
.cr-demo__live-dot {
  width: 8px; height: 8px;
  background: var(--cr-green);
  border-radius: 50%;
  animation: cr-pulse 2s infinite;
}
.cr-demo__iframe-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.cr-demo__iframe-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.cr-demo__footer {
  padding: 20px 24px;
  background: var(--cr-nav);
  border-top: 1px solid var(--cr-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cr-demo__note {
  font-size: 0.82rem;
  color: var(--cr-text-muted);
  max-width: 500px;
  line-height: 1.5;
}
.cr-demo__note strong { color: var(--cr-orange); }

.cr-strategies { display: flex; gap: 20px; flex-wrap: wrap; }
.cr-strategy-card {
  flex: 1;
  min-width: 280px;
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius);
  overflow: hidden;
  transition: all var(--cr-transition);
}
.cr-strategy-card:hover { transform: translateY(-4px); box-shadow: var(--cr-shadow); border-color: rgba(255,107,0,0.3); }
.cr-strategy-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.cr-strategy-card__body { padding: 20px; }
.cr-strategy-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.cr-strategy-card__tag--safe { background: rgba(34,197,94,0.12); color: var(--cr-green); border: 1px solid rgba(34,197,94,0.25); }
.cr-strategy-card__tag--aggressive { background: rgba(255,107,0,0.12); color: var(--cr-orange); border: 1px solid rgba(255,107,0,0.25); }
.cr-strategy-card__tag--medium { background: rgba(245,197,24,0.12); color: var(--cr-gold); border: 1px solid rgba(245,197,24,0.25); }
.cr-strategy-card__title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.cr-strategy-card__desc { font-size: 0.83rem; color: var(--cr-text-muted); margin-bottom: 16px; line-height: 1.55; }
.cr-strategy-card__meta {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.78rem;
  flex-wrap: wrap;
}
.cr-strategy-card__meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--cr-text-muted);
}
.cr-strategy-card__meta-item strong { color: var(--cr-text); }

.cr-review {
  background: var(--cr-card);
  border-radius: var(--cr-radius);
  border: 1px solid var(--cr-border);
  padding: 40px;
}
.cr-review h1, .cr-review h2, .cr-review h3, .cr-review h4, .cr-review h5, .cr-review h6 {
  color: #fff;
  margin: 28px 0 12px;
  line-height: 1.3;
}
.cr-review h1 { font-size: 1.8rem; margin-top: 0; }
.cr-review h2 { font-size: 1.4rem; padding-bottom: 10px; border-bottom: 1px solid var(--cr-border); }
.cr-review h3 { font-size: 1.15rem; }
.cr-review h4 { font-size: 1rem; color: var(--cr-orange); }
.cr-review p { color: var(--cr-text); margin-bottom: 16px; font-size: 0.93rem; line-height: 1.75; }
.cr-review a { color: var(--cr-orange); }
.cr-review a:hover { text-decoration: underline; }
.cr-review ul, .cr-review ol { margin: 0 0 16px 20px; display: block; }
.cr-review ul { list-style: disc; }
.cr-review ol { list-style: decimal; }
.cr-review li {
  color: var(--cr-text);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 6px;
  display: list-item;
}
.cr-review blockquote {
  border-left: 3px solid var(--cr-orange);
  padding: 12px 20px;
  margin: 20px 0;
  background: rgba(255,107,0,0.05);
  border-radius: 0 8px 8px 0;
  color: var(--cr-text-muted);
  font-style: italic;
}
.cr-review table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.88rem;
}
.cr-review table th {
  background: var(--cr-card);
  color: var(--cr-text-muted);
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--cr-border);
  font-weight: 600;
}
.cr-review table td {
  padding: 9px 14px;
  border: 1px solid var(--cr-border);
  color: var(--cr-text);
}
.cr-review strong { color: #fff; font-weight: 600; }
.cr-review em { color: var(--cr-text-muted); }
.cr-review hr { border: none; border-top: 1px solid var(--cr-border); margin: 24px 0; }

@media (max-width: 600px) { .cr-review { padding: 24px 20px; } }

.cr-author {
  display: flex;
  gap: 28px;
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius);
  padding: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.cr-author__photo {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--cr-orange);
  flex-shrink: 0;
}
.cr-author__info { flex: 1; min-width: 200px; }
.cr-author__label {
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--cr-orange);
  font-weight: 700;
  margin-bottom: 4px;
}
.cr-author__name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.cr-author__bio {
  font-size: 0.87rem;
  color: var(--cr-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.cr-author__socials { display: flex; gap: 10px; flex-wrap: wrap; }
.cr-author__social {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--cr-border);
  color: var(--cr-text);
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  transition: all var(--cr-transition);
}
.cr-author__social:hover { border-color: var(--cr-orange); color: var(--cr-orange); }
.cr-author__social svg { width: 15px; height: 15px; }

.cr-faq { display: flex; flex-direction: column; gap: 8px; }
.cr-faq__item {
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius-sm);
  overflow: hidden;
  transition: border-color var(--cr-transition);
}
.cr-faq__item.active { border-color: rgba(255,107,0,0.35); }
.cr-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  color: #fff;
  transition: color var(--cr-transition);
  gap: 12px;
}
.cr-faq__question:hover { color: var(--cr-orange); }
.cr-faq__item.active .cr-faq__question { color: var(--cr-orange); }
.cr-faq__icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,107,0,0.12);
  color: var(--cr-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--cr-transition);
  font-size: 0.85rem;
  font-weight: 700;
}
.cr-faq__item.active .cr-faq__icon { transform: rotate(45deg); }
.cr-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.cr-faq__answer-inner {
  padding: 0 20px 18px;
  font-size: 0.87rem;
  color: var(--cr-text-muted);
  line-height: 1.65;
  border-top: 1px solid var(--cr-border);
  padding-top: 14px;
}
.cr-faq__item.active .cr-faq__answer { max-height: 400px; }

.cr-footer {
  background: var(--cr-nav);
  border-top: 1px solid var(--cr-border);
  margin-top: auto;
}
.cr-footer__main { padding: 48px 0 32px; }
.cr-footer__grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.cr-footer__brand { min-width: 220px; max-width: 280px; }
.cr-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.cr-footer__logo img { height: 36px; width: auto; }
.cr-footer__logo-text { font-size: 1rem; font-weight: 800; color: #fff; }
.cr-footer__logo-text span { color: var(--cr-orange); }
.cr-footer__desc {
  font-size: 0.82rem;
  color: var(--cr-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.cr-footer__col { flex: 1; min-width: 140px; }
.cr-footer__col-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--cr-text-muted);
  margin-bottom: 14px;
}
.cr-footer__col-link {
  display: block;
  color: var(--cr-text-muted);
  font-size: 0.85rem;
  padding: 4px 0;
  transition: color var(--cr-transition);
}
.cr-footer__col-link:hover { color: var(--cr-orange); }

.cr-footer__trust { padding: 20px 0; border-top: 1px solid var(--cr-border); border-bottom: 1px solid var(--cr-border); }
.cr-footer__trust-title {
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--cr-text-muted);
  margin-bottom: 12px;
}
.cr-footer__trust-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cr-footer__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--cr-border);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 0.75rem;
  color: var(--cr-text-muted);
  font-weight: 500;
}
.cr-footer__trust-item svg { width: 16px; height: 16px; }

.cr-footer__payments { padding: 20px 0; border-bottom: 1px solid var(--cr-border); }
.cr-footer__payments-title {
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--cr-text-muted);
  margin-bottom: 12px;
}
.cr-footer__payments-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.cr-footer__payment {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--cr-border);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cr-text-muted);
  letter-spacing: 0.3px;
}
.cr-footer__bottom {
  padding: 24px 0;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.cr-footer__copyright {
  font-size: 0.78rem;
  color: var(--cr-text-muted);
  line-height: 1.5;
  flex: 1;
}
.cr-footer__provider {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.cr-footer__provider-label { font-size: 0.72rem; color: var(--cr-text-muted); }
.cr-footer__provider img { height: 22px; width: auto; filter: brightness(0.7) invert(1); opacity: 0.6; }
.cr-footer__age {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--cr-text-muted);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--cr-text-muted);
  flex-shrink: 0;
}

.cr-widget {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: linear-gradient(90deg, #141414 0%, #1a0d00 50%, #141414 100%);
  border-top: 2px solid var(--cr-orange);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 30px rgba(255,107,0,0.15);
}
.cr-widget__text { flex: 1; min-width: 0; }
.cr-widget__title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cr-widget__bonus {
  font-size: 0.78rem;
  color: var(--cr-green);
  font-weight: 600;
}
.cr-widget__btns {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.cr-widget__close {
  background: none;
  border: none;
  color: var(--cr-text-muted);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 4px;
  line-height: 1;
  transition: color var(--cr-transition);
  flex-shrink: 0;
}
.cr-widget__close:hover { color: #fff; }
.cr-widget.hidden { display: none; }

body.cr-widget-open { padding-bottom: 68px; }

.cr-card {
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius);
  padding: 28px;
}
.cr-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.cr-badge--orange { background: rgba(255,107,0,0.12); color: var(--cr-orange); border: 1px solid rgba(255,107,0,0.25); }
.cr-badge--green { background: rgba(34,197,94,0.12); color: var(--cr-green); border: 1px solid rgba(34,197,94,0.25); }

.cr-text-center { text-align: center; }
.cr-mt-4 { margin-top: 16px; }
.cr-mt-8 { margin-top: 32px; }
.cr-mb-4 { margin-bottom: 16px; }
.cr-mb-8 { margin-bottom: 32px; }

.cr-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--cr-text-muted);
  padding: 12px 0;
  flex-wrap: wrap;
}
.cr-breadcrumb a { color: var(--cr-text-muted); }
.cr-breadcrumb a:hover { color: var(--cr-orange); }
.cr-breadcrumb__sep { color: var(--cr-border); }
.cr-breadcrumb__current { color: var(--cr-text); }

.cr-bg-nav { background: var(--cr-nav); }
.cr-bg-card { background: var(--cr-card); }

.cr-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.cr-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.wp-block-group { display: block; }
.wp-block-cover { position: relative; }
.has-text-align-center { text-align: center; }
.aligncenter { display: block; margin: auto; }
.elementor-widget-container { display: block; }
.entry-content { display: block; }
.site-main { display: block; }
.post-thumbnail { display: block; }
.wp-block-image { display: block; }
.wp-caption { display: inline-block; }
.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--cr-bg); }
::-webkit-scrollbar-thumb { background: var(--cr-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--cr-orange); }

::selection { background: rgba(255,107,0,0.3); color: #fff; }

@media (max-width: 600px) {
  .cr-widget { flex-wrap: wrap; }
  .cr-widget__btns { width: 100%; }
  .cr-widget__btns .cr-btn { flex: 1; }
}

@media (max-width: 992px) {
  .cr-container {
    padding: 0 16px;
  }

  .cr-section {
    padding: 52px 0;
  }

  .cr-section--sm {
    padding: 32px 0;
  }

  .cr-header__inner {
    height: 64px;
  }

  .cr-header__right .cr-btn {
    display: none;
  }

  .cr-hero__content {
    max-width: 600px;
    padding: 0 24px;
  }

  .cr-review {
    padding: 32px 24px;
  }

  .cr-author {
    padding: 24px;
    gap: 20px;
  }

  .cr-card {
    padding: 22px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .cr-container {
    padding: 0 14px;
  }

  .cr-section {
    padding: 44px 0;
  }

  .cr-section--sm {
    padding: 28px 0;
  }

  .cr-section-subtitle {
    margin-bottom: 28px;
    font-size: 0.9rem;
  }

  .cr-divider {
    margin: 10px auto 28px;
  }

  .cr-header__inner {
    height: 60px;
    gap: 10px;
  }

  .cr-header__logo img {
    height: 34px;
  }

  .cr-header__logo-text {
    font-size: 1rem;
  }

  .cr-header__right {
    gap: 8px;
  }

  .cr-lang__btn {
    padding: 6px 8px;
    font-size: 0.76rem;
  }

  .cr-lang__flag {
    font-size: 0.9rem;
  }

  .cr-burger {
    display: flex;
  }

  .cr-mobile-nav {
    padding: 10px 0 14px;
  }

  .cr-mobile-nav__link {
    padding: 12px 14px;
  }

  .cr-mobile-nav__btns {
    padding: 12px 14px;
    flex-direction: column;
  }

  .cr-btn {
    padding: 11px 18px;
    font-size: 0.88rem;
  }

  .cr-btn--lg {
    padding: 13px 20px;
    font-size: 0.92rem;
  }

  .cr-hero__slider {
    height: auto;
    min-height: 460px;
  }

  .cr-hero__slide-overlay {
    background: linear-gradient(
            180deg,
            rgba(13,13,13,0.78) 0%,
            rgba(13,13,13,0.62) 45%,
            rgba(13,13,13,0.92) 100%
    );
  }

  .cr-hero__content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    max-width: 100%;
    padding: 48px 18px 70px;
  }

  .cr-hero__badge {
    font-size: 0.72rem;
    padding: 5px 10px;
    margin-bottom: 12px;
  }

  .cr-hero__title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    margin-bottom: 12px;
  }

  .cr-hero__desc {
    font-size: 0.9rem;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .cr-hero__btns {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .cr-hero__btns .cr-btn {
    width: 100%;
    justify-content: center;
  }

  .cr-hero__controls {
    bottom: 14px;
  }

  .cr-table th,
  .cr-table td,
  .cr-winners-table th,
  .cr-winners-table td {
    padding: 10px 12px;
    font-size: 0.8rem;
  }

  .cr-table {
    min-width: 520px;
  }

  .cr-winners-table {
    min-width: 460px;
  }

  .cr-proscons {
    gap: 14px;
  }

  .cr-proscons__col {
    min-width: 100%;
    padding: 20px;
  }

  .cr-proscons__title {
    margin-bottom: 16px;
    padding-bottom: 12px;
    font-size: 1rem;
  }

  .cr-proscons__item {
    font-size: 0.84rem;
  }

  .cr-jackpots {
    gap: 14px;
  }

  .cr-jackpot {
    min-width: 100%;
    padding: 22px 18px;
  }

  .cr-jackpot__amount {
    margin-bottom: 16px;
  }

  .cr-jackpot__player {
    padding: 8px 10px;
    font-size: 0.78rem;
  }

  .cr-bonus-card {
    min-width: 100%;
  }

  .cr-bonus-card__header {
    padding: 16px 16px 14px;
    gap: 12px;
  }

  .cr-bonus-card__body {
    padding: 16px;
  }

  .cr-bonus-card__casino-logo {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
  }

  .cr-bonus-card__amount {
    font-size: 1.25rem;
  }

  .cr-demo__header,
  .cr-demo__footer {
    padding: 16px;
  }

  .cr-demo__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .cr-demo__footer .cr-btn {
    width: 100%;
    justify-content: center;
  }

  .cr-demo__note {
    max-width: 100%;
  }

  .cr-strategies {
    gap: 14px;
  }

  .cr-strategy-card {
    min-width: 100%;
  }

  .cr-strategy-card__img {
    height: 160px;
  }

  .cr-strategy-card__body {
    padding: 16px;
  }

  .cr-review {
    padding: 24px 18px;
  }

  .cr-review h1 {
    font-size: 1.5rem;
  }

  .cr-review h2 {
    font-size: 1.25rem;
  }

  .cr-review h3 {
    font-size: 1.05rem;
  }

  .cr-review p,
  .cr-review li {
    font-size: 0.88rem;
  }

  .cr-review table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .cr-author {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px 18px;
    gap: 16px;
  }

  .cr-author__photo {
    width: 84px;
    height: 84px;
  }

  .cr-author__info {
    min-width: 100%;
  }

  .cr-author__socials {
    justify-content: center;
  }

  .cr-faq__question {
    padding: 15px 16px;
    font-size: 0.88rem;
  }

  .cr-faq__answer-inner {
    padding: 12px 16px 16px;
    font-size: 0.84rem;
  }

  .cr-footer__main {
    padding: 36px 0 24px;
  }

  .cr-footer__grid {
    gap: 24px;
  }

  .cr-footer__brand,
  .cr-footer__col {
    min-width: 100%;
    max-width: 100%;
  }

  .cr-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cr-widget {
    padding: 12px 14px;
    align-items: flex-start;
  }

  .cr-widget__title {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    font-size: 0.88rem;
  }

  .cr-widget__bonus {
    font-size: 0.75rem;
  }

  .cr-widget__btns {
    width: 100%;
    flex-wrap: wrap;
  }

  .cr-widget__btns .cr-btn {
    flex: 1 1 calc(50% - 5px);
    min-width: 140px;
    justify-content: center;
  }

  body.cr-widget-open {
    padding-bottom: 110px;
  }
}

@media (max-width: 600px) {
  html {
    font-size: 14px;
  }

  .cr-container {
    padding: 0 12px;
  }

  .cr-header__logo-text {
    display: none;
  }

  .cr-lang__btn {
    padding: 6px 7px;
  }

  .cr-lang__arrow {
    width: 10px;
    height: 10px;
  }

  .cr-hero__slider {
    min-height: 420px;
  }

  .cr-hero__content {
    padding: 38px 14px 62px;
  }

  .cr-hero__title {
    font-size: clamp(1.45rem, 7.5vw, 2rem);
    line-height: 1.18;
  }

  .cr-hero__desc {
    font-size: 0.86rem;
  }

  .cr-card {
    padding: 18px;
  }

  .cr-proscons__col,
  .cr-jackpot {
    padding: 18px 16px;
  }

  .cr-demo__title {
    font-size: 0.92rem;
  }

  .cr-bonus-card__badge {
    top: 10px;
    right: 10px;
    font-size: 0.62rem;
    padding: 3px 7px;
  }

  .cr-footer__trust-row,
  .cr-footer__payments-row {
    gap: 8px;
  }

  .cr-footer__trust-item,
  .cr-footer__payment {
    font-size: 0.72rem;
  }

  body.cr-widget-open {
    padding-bottom: 120px;
  }
}

@media (max-width: 480px) {
  .cr-section {
    padding: 36px 0;
  }

  .cr-section-title {
    font-size: 1.3rem;
  }

  .cr-section-subtitle {
    font-size: 0.85rem;
    margin-bottom: 24px;
  }

  .cr-header__inner {
    height: 56px;
  }

  .cr-header__logo img {
    height: 30px;
  }

  .cr-burger span {
    width: 20px;
  }

  .cr-hero__slider {
    min-height: 390px;
  }

  .cr-hero__badge {
    font-size: 0.68rem;
    letter-spacing: 0.3px;
  }

  .cr-hero__title {
    font-size: 1.35rem;
  }

  .cr-hero__desc {
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .cr-btn,
  .cr-btn--lg {
    min-height: 44px;
  }

  .cr-table {
    min-width: 460px;
  }

  .cr-winners-table {
    min-width: 420px;
  }

  .cr-review {
    padding: 20px 14px;
  }

  .cr-review blockquote {
    padding: 10px 14px;
  }

  .cr-author {
    padding: 18px 14px;
  }

  .cr-widget {
    padding: 10px 12px;
  }

  .cr-widget__btns {
    flex-direction: column;
    width: 100%;
  }

  .cr-widget__btns .cr-btn {
    width: 100%;
    min-width: 100%;
  }

  .cr-widget__close {
    position: absolute;
    top: 8px;
    right: 8px;
  }

  body.cr-widget-open {
    padding-bottom: 150px;
  }
}
.cr-demo__iframe-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 560px;
  overflow: hidden;
  background: #000;
}

.cr-demo__iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 992px) {
  .cr-demo__iframe-wrap {
    aspect-ratio: 4 / 3;
    min-height: 500px;
  }
}

@media (max-width: 768px) {
  .cr-demo__iframe-wrap {
    aspect-ratio: 3 / 4;
    min-height: 420px;
  }
}

@media (max-width: 600px) {
  .cr-demo__iframe-wrap {
    aspect-ratio: 9 / 16;
    min-height: 460px;
  }
}

@media (max-width: 480px) {
  .cr-demo__iframe-wrap {
    min-height: 500px;
  }
}
