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

:root {
  --cr-bg: #0d0d0d;
  --cr-header: #141414;
  --cr-orange: #ff6b00;
  --cr-orange-hover: #e05c00;
  --cr-green: #22c55e;
  --cr-green-hover: #16a34a;
  --cr-text: #e8e8e8;
  --cr-text-muted: #9a9a9a;
  --cr-border: #2a2a2a;
  --cr-card: #181818;
  --cr-card-hover: #1f1f1f;
  --cr-radius: 12px;
  --cr-radius-sm: 8px;
  --cr-shadow: 0 4px 24px rgba(0,0,0,0.5);
  --cr-shadow-orange: 0 0 20px rgba(255,107,0,0.25);
  --cr-shadow-green: 0 0 20px rgba(34,197,94,0.2);
  --cr-font: 'Poppins', sans-serif;
  --cr-transition: 0.28s ease;
}

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

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

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

body.fixed { overflow: hidden; }

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

a { color: var(--cr-orange); text-decoration: none; transition: color var(--cr-transition); }
a:hover { color: var(--cr-orange-hover); }

ul, ol { list-style: none; }

.cr-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.cr-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.cr-col { flex: 1 1 0; min-width: 0; }
.cr-col-2 { flex: 0 0 calc(50% - 10px); }
.cr-col-3 { flex: 0 0 calc(33.333% - 14px); }
.cr-col-4 { flex: 0 0 calc(25% - 15px); }

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

.cr-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--cr-text);
  margin-bottom: 8px;
  text-align: center;
  line-height: 1.3;
}

.cr-section-subtitle {
  text-align: center;
  color: var(--cr-text-muted);
  font-size: 1rem;
  margin-bottom: 40px;
}

.cr-section-title span { color: var(--cr-orange); }

.cr-card {
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius);
  padding: 24px;
  transition: background var(--cr-transition), transform var(--cr-transition), box-shadow var(--cr-transition);
}

.cr-card:hover {
  background: var(--cr-card-hover);
  transform: translateY(-2px);
  box-shadow: var(--cr-shadow);
}

.cr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--cr-font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background var(--cr-transition), transform var(--cr-transition), box-shadow var(--cr-transition);
  white-space: nowrap;
  text-decoration: none;
}

.cr-btn--orange {
  background: var(--cr-orange);
  color: #fff;
}

.cr-btn--orange:hover {
  background: var(--cr-orange-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--cr-shadow-orange);
}

.cr-btn--green {
  background: var(--cr-green);
  color: #fff;
}

.cr-btn--green:hover {
  background: var(--cr-green-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--cr-shadow-green);
}

.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--sm { padding: 8px 16px; font-size: 0.85rem; }
.cr-btn--lg { padding: 16px 36px; font-size: 1.1rem; border-radius: 10px; }
.cr-btn--xl { padding: 18px 44px; font-size: 1.2rem; border-radius: 10px; }

.cr-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255,107,0,0.15);
  color: var(--cr-orange);
  border: 1px solid rgba(255,107,0,0.3);
}

.cr-divider {
  height: 1px;
  background: var(--cr-border);
  margin: 40px 0;
}


.cr-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--cr-header);
  border-bottom: 1px solid var(--cr-border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.cr-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 68px;
}

.cr-header__logo {
  flex-shrink: 0;
}

.cr-header__logo img {
  height: 44px;
  width: auto;
}

.cr-header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.cr-header__logo-text span:first-child {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--cr-orange);
}

.cr-header__logo-text span:last-child {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--cr-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cr-header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.cr-header__nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  color: var(--cr-text);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: var(--cr-radius-sm);
  transition: color var(--cr-transition), background var(--cr-transition);
  white-space: nowrap;
}

.cr-header__nav a:hover {
  color: var(--cr-orange);
  background: rgba(255,107,0,0.08);
}

.cr-header__nav svg { width: 16px; height: 16px; flex-shrink: 0; }

.cr-header__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cr-online-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cr-green);
  white-space: nowrap;
}

.cr-online-badge__dot {
  width: 7px;
  height: 7px;
  background: var(--cr-green);
  border-radius: 50%;
  animation: cr-pulse 1.8s ease-in-out infinite;
}

@keyframes cr-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.cr-lang-dropdown {
  position: relative;
}

.cr-lang-dropdown__toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius-sm);
  padding: 7px 12px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--cr-text);
  transition: border-color var(--cr-transition), background var(--cr-transition);
}

.cr-lang-dropdown__toggle:hover {
  border-color: var(--cr-orange);
  background: rgba(255,107,0,0.06);
}

.cr-lang-dropdown__flag { font-size: 1.1rem; }

.cr-lang-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--cr-header);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius-sm);
  min-width: 140px;
  overflow: hidden;
  display: none;
  z-index: 200;
  box-shadow: var(--cr-shadow);
}

.cr-lang-dropdown.active .cr-lang-dropdown__menu { display: block; }

.cr-lang-dropdown__menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: var(--cr-text);
  font-size: 0.85rem;
  transition: background var(--cr-transition);
}

.cr-lang-dropdown__menu a:hover { background: rgba(255,107,0,0.1); color: var(--cr-orange); }

.cr-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  padding: 0;
  background: none;
  border: none;
}

.cr-burger span {
  display: block;
  height: 2px;
  background: var(--cr-text);
  border-radius: 2px;
  transition: transform var(--cr-transition), opacity var(--cr-transition);
}

.cr-burger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.cr-burger.active span:nth-child(2) { opacity: 0; }
.cr-burger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.cr-mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cr-header);
  z-index: 999;
  padding: 24px 20px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.cr-mobile-menu.active {
  display: block;
  transform: translateX(0);
}

.cr-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.cr-mobile-menu__nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: var(--cr-text);
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--cr-radius-sm);
  border-bottom: 1px solid var(--cr-border);
}

.cr-mobile-menu__nav a:hover { color: var(--cr-orange); background: rgba(255,107,0,0.08); }
.cr-mobile-menu__nav svg { width: 18px; height: 18px; }

.cr-mobile-menu__btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cr-mobile-menu__btns .cr-btn { width: 100%; }


.cr-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.cr-hero__slider {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}

.cr-hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
}

.cr-hero__slide.active { opacity: 1; }

.cr-hero__slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.6) 55%, rgba(13,13,13,0.15) 100%);
}

.cr-hero__content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 40px 0;
}

.cr-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.35);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cr-orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.cr-hero__title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff;
  text-balance: balance;
}

.cr-hero__title .hl { color: var(--cr-orange); }

.cr-hero__desc {
  font-size: 1.05rem;
  color: rgba(232,232,232,0.85);
  margin-bottom: 28px;
  line-height: 1.65;
}

.cr-hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.cr-hero__stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.cr-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cr-hero__stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cr-orange);
  line-height: 1;
}

.cr-hero__stat-label {
  font-size: 0.75rem;
  color: var(--cr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cr-hero__dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.cr-hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--cr-transition), width var(--cr-transition);
}

.cr-hero__dot.active {
  background: var(--cr-orange);
  width: 24px;
  border-radius: 4px;
}

.cr-hero__arrows {
  position: absolute;
  bottom: 12px;
  right: 20px;
  z-index: 10;
  display: flex;
  gap: 8px;
}

.cr-hero__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--cr-transition);
}

.cr-hero__arrow:hover { background: var(--cr-orange); border-color: var(--cr-orange); }


.cr-info-table-wrap {
  overflow-x: auto;
  border-radius: var(--cr-radius);
  border: 1px solid var(--cr-border);
  box-shadow: var(--cr-shadow);
}

.cr-info-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.cr-info-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--cr-border);
  font-size: 0.93rem;
  vertical-align: middle;
  text-align: left;
}

.cr-info-table tr:last-child td { border-bottom: none; }

.cr-info-table td:first-child {
  background: rgba(255,107,0,0.06);
  font-weight: 600;
  color: var(--cr-text-muted);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  width: 200px;
}

.cr-info-table td:last-child {
  color: var(--cr-text);
  font-weight: 500;
}

.cr-info-table tr:hover td { background: rgba(255,107,0,0.04); }
.cr-info-table tr:hover td:first-child { background: rgba(255,107,0,0.1); }


.cr-advantages { display: flex; flex-wrap: wrap; gap: 20px; }

.cr-advantage-item {
  flex: 1 1 220px;
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--cr-transition), box-shadow var(--cr-transition), border-color var(--cr-transition);
}

.cr-advantage-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--cr-shadow-orange);
  border-color: rgba(255,107,0,0.3);
}

.cr-advantage-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,107,0,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cr-orange);
  flex-shrink: 0;
}

.cr-advantage-icon svg { width: 26px; height: 26px; }

.cr-advantage-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cr-text);
}

.cr-advantage-desc {
  font-size: 0.88rem;
  color: var(--cr-text-muted);
  line-height: 1.6;
}


.cr-proscons { display: flex; flex-wrap: wrap; gap: 20px; }

.cr-proscons__col {
  flex: 1 1 300px;
  background: var(--cr-card);
  border-radius: var(--cr-radius);
  padding: 28px;
  border: 1px solid var(--cr-border);
}

.cr-proscons__col--pros { border-top: 3px solid var(--cr-green); }
.cr-proscons__col--cons { border-top: 3px solid #ef4444; }

.cr-proscons__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cr-proscons__col--pros .cr-proscons__title { color: var(--cr-green); }
.cr-proscons__col--cons .cr-proscons__title { color: #ef4444; }

.cr-proscons__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--cr-border);
  font-size: 0.92rem;
  color: var(--cr-text);
  line-height: 1.55;
}

.cr-proscons__list li:last-child { border-bottom: none; }

.cr-proscons__icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.cr-proscons__col--pros .cr-proscons__icon {
  background: rgba(34,197,94,0.15);
  color: var(--cr-green);
}

.cr-proscons__col--cons .cr-proscons__icon {
  background: rgba(239,68,68,0.15);
  color: #ef4444;
}

.cr-proscons__icon svg { width: 12px; height: 12px; }


.cr-jackpots { display: flex; flex-wrap: wrap; gap: 20px; }

.cr-jackpot {
  flex: 1 1 280px;
  border-radius: var(--cr-radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--cr-border);
}

.cr-jackpot--bronze {
  background: linear-gradient(135deg, #1a1408 0%, #2a1e08 100%);
  border-color: #8b6914;
}

.cr-jackpot--silver {
  background: linear-gradient(135deg, #111318 0%, #1c2030 100%);
  border-color: #4a5568;
}

.cr-jackpot--gold {
  background: linear-gradient(135deg, #1a1200 0%, #2d2000 100%);
  border-color: #d4a017;
  box-shadow: 0 0 30px rgba(212,160,23,0.2);
}

.cr-jackpot__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.cr-jackpot--bronze .cr-jackpot__badge { background: rgba(139,105,20,0.25); color: #cd9b2f; border: 1px solid rgba(139,105,20,0.5); }
.cr-jackpot--silver .cr-jackpot__badge { background: rgba(148,163,184,0.15); color: #94a3b8; border: 1px solid rgba(148,163,184,0.3); }
.cr-jackpot--gold .cr-jackpot__badge { background: rgba(212,160,23,0.2); color: #f0c030; border: 1px solid rgba(212,160,23,0.4); }

.cr-jackpot__amount {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 6px;
  line-height: 1;
}

.cr-jackpot--bronze .cr-jackpot__amount { color: #cd9b2f; }
.cr-jackpot--silver .cr-jackpot__amount { color: #94a3b8; }
.cr-jackpot--gold .cr-jackpot__amount { color: #f0c030; }

.cr-jackpot__label {
  font-size: 0.8rem;
  color: var(--cr-text-muted);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cr-jackpot__players {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cr-jackpot__players-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cr-text-muted);
  margin-bottom: 4px;
}

.cr-jackpot__player {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  background: rgba(0,0,0,0.25);
  border-radius: var(--cr-radius-sm);
}

.cr-jackpot__player-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cr-jackpot__player-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.cr-jackpot--bronze .cr-jackpot__player-avatar { background: #8b6914; }
.cr-jackpot--silver .cr-jackpot__player-avatar { background: #4a5568; }
.cr-jackpot--gold .cr-jackpot__player-avatar { background: #b8860b; }

.cr-jackpot__player-name { font-size: 0.85rem; font-weight: 600; color: var(--cr-text); }
.cr-jackpot__player-win { font-size: 0.82rem; font-weight: 700; }

.cr-jackpot--bronze .cr-jackpot__player-win { color: #cd9b2f; }
.cr-jackpot--silver .cr-jackpot__player-win { color: #94a3b8; }
.cr-jackpot--gold .cr-jackpot__player-win { color: #f0c030; }

.cr-jackpot__glow {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.2;
  pointer-events: none;
}

.cr-jackpot--bronze .cr-jackpot__glow { background: #cd9b2f; }
.cr-jackpot--silver .cr-jackpot__glow { background: #94a3b8; }
.cr-jackpot--gold .cr-jackpot__glow { background: #f0c030; }


.cr-winners-wrap {
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius);
  overflow: hidden;
}

.cr-winners-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--cr-border);
  background: rgba(255,107,0,0.05);
}

.cr-winners-header h3 { font-size: 1rem; font-weight: 700; color: var(--cr-text); }

.cr-winners-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cr-green);
}

.cr-winners-live span {
  width: 7px;
  height: 7px;
  background: var(--cr-green);
  border-radius: 50%;
  animation: cr-pulse 1.5s ease-in-out infinite;
}

.cr-winners-list {
  max-height: 520px;
  overflow-y: auto;
}

.cr-winners-list::-webkit-scrollbar { width: 4px; }
.cr-winners-list::-webkit-scrollbar-track { background: var(--cr-bg); }
.cr-winners-list::-webkit-scrollbar-thumb { background: var(--cr-border); border-radius: 2px; }

.cr-winner-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 24px;
  border-bottom: 1px solid rgba(42,42,42,0.6);
  transition: background var(--cr-transition);
}

.cr-winner-row:hover { background: rgba(255,107,0,0.04); }
.cr-winner-row:last-child { border-bottom: none; }

.cr-winner-rank {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  flex-shrink: 0;
}

.cr-winner-rank.r1 { background: rgba(212,160,23,0.2); color: #f0c030; border: 1px solid rgba(212,160,23,0.4); }
.cr-winner-rank.r2 { background: rgba(148,163,184,0.15); color: #94a3b8; border: 1px solid rgba(148,163,184,0.3); }
.cr-winner-rank.r3 { background: rgba(139,105,20,0.2); color: #cd9b2f; border: 1px solid rgba(139,105,20,0.4); }
.cr-winner-rank.rn { background: rgba(255,255,255,0.05); color: var(--cr-text-muted); border: 1px solid var(--cr-border); }

.cr-winner-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cr-orange), #ff9a3c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.cr-winner-info { flex: 1; min-width: 0; }

.cr-winner-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cr-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cr-winner-time {
  font-size: 0.75rem;
  color: var(--cr-text-muted);
}

.cr-winner-amount {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--cr-green);
  white-space: nowrap;
  flex-shrink: 0;
}

.cr-winner-mult {
  font-size: 0.78rem;
  color: var(--cr-orange);
  font-weight: 600;
  flex-shrink: 0;
  text-align: right;
}


.cr-bonuses { display: flex; flex-wrap: wrap; gap: 20px; }

.cr-bonus-card {
  flex: 1 1 300px;
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius);
  overflow: hidden;
  transition: transform var(--cr-transition), box-shadow var(--cr-transition);
}

.cr-bonus-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--cr-shadow-orange);
}

.cr-bonus-card__top {
  padding: 20px 22px;
  border-bottom: 1px solid var(--cr-border);
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,107,0,0.05);
}

.cr-bonus-card__logo {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: rgba(255,107,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--cr-orange);
  flex-shrink: 0;
  letter-spacing: -1px;
}

.cr-bonus-card__casino { font-size: 1rem; font-weight: 700; color: var(--cr-text); }
.cr-bonus-card__rating { display: flex; align-items: center; gap: 4px; font-size: 0.8rem; color: #f0c030; }

.cr-bonus-card__body { padding: 20px 22px; }

.cr-bonus-card__amount {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--cr-orange);
  line-height: 1;
  margin-bottom: 4px;
}

.cr-bonus-card__desc {
  font-size: 0.85rem;
  color: var(--cr-text-muted);
  margin-bottom: 16px;
  line-height: 1.55;
}

.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.83rem;
  color: var(--cr-text-muted);
}

.cr-bonus-card__feature svg { width: 14px; height: 14px; color: var(--cr-green); flex-shrink: 0; }

.cr-bonus-card__foot { padding: 0 22px 22px; }

.cr-bonus-card__terms {
  font-size: 0.72rem;
  color: var(--cr-text-muted);
  margin-top: 10px;
  line-height: 1.5;
}


.cr-demo {
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius);
  overflow: hidden;
}

.cr-demo__header {
  padding: 18px 24px;
  border-bottom: 1px solid var(--cr-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  background: rgba(255,107,0,0.05);
}

.cr-demo__title { font-size: 1.1rem; font-weight: 700; color: var(--cr-text); }
.cr-demo__header .cr-badge { margin-left: 8px; }

.cr-demo__frame {
  position: relative;
  background: #000;
}

.cr-demo__frame iframe {
  width: 100%;
  height: 520px;
  border: none;
  display: block;
}

.cr-demo__footer {
  padding: 18px 24px;
  border-top: 1px solid var(--cr-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  background: rgba(0,0,0,0.2);
}

.cr-demo__note {
  font-size: 0.82rem;
  color: var(--cr-text-muted);
}


.cr-review {
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius);
  padding: 36px;
}

.cr-review h2,
.cr-review h3,
.cr-review h4 {
  color: var(--cr-text);
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 14px;
  line-height: 1.35;
}

.cr-review h2 { font-size: 1.6rem; border-bottom: 2px solid rgba(255,107,0,0.3); padding-bottom: 10px; }
.cr-review h3 { font-size: 1.25rem; color: var(--cr-orange); }
.cr-review h4 { font-size: 1.05rem; }

.cr-review p {
  color: var(--cr-text);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.97rem;
}

.cr-review ul,
.cr-review ol {
  padding-left: 20px;
  margin-bottom: 18px;
}

.cr-review ul { list-style: disc; }
.cr-review ol { list-style: decimal; }

.cr-review ul li,
.cr-review ol li {
  color: var(--cr-text);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 6px;
  padding-left: 4px;
}

.cr-review a { color: var(--cr-orange); text-decoration: underline; }
.cr-review a:hover { color: var(--cr-orange-hover); }

.cr-review strong { color: var(--cr-text); font-weight: 700; }
.cr-review em { font-style: italic; color: var(--cr-text-muted); }

.cr-review table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  overflow-x: auto;
  display: block;
}

.cr-review table th,
.cr-review table td {
  border: 1px solid var(--cr-border);
  padding: 10px 14px;
  font-size: 0.9rem;
  text-align: left;
  color: var(--cr-text);
}

.cr-review table th {
  background: rgba(255,107,0,0.08);
  font-weight: 700;
  color: var(--cr-orange);
}

.cr-review table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }

.cr-review blockquote {
  border-left: 3px solid var(--cr-orange);
  margin: 20px 0;
  padding: 12px 20px;
  background: rgba(255,107,0,0.06);
  border-radius: 0 var(--cr-radius-sm) var(--cr-radius-sm) 0;
  color: var(--cr-text-muted);
  font-style: italic;
}

.cr-review img { border-radius: var(--cr-radius-sm); max-width: 100%; height: auto; margin: 16px 0; }

.cr-review code {
  background: rgba(255,255,255,0.07);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.88em;
  color: var(--cr-orange);
  font-family: monospace;
}

.cr-review pre {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--cr-border);
  padding: 16px;
  border-radius: var(--cr-radius-sm);
  overflow-x: auto;
  margin-bottom: 16px;
}


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

.cr-faq__item {
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius);
  overflow: hidden;
  transition: border-color var(--cr-transition);
}

.cr-faq__item.open { border-color: rgba(255,107,0,0.35); }

.cr-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--cr-text);
  transition: color var(--cr-transition);
  user-select: none;
}

.cr-faq__q:hover { color: var(--cr-orange); }
.cr-faq__item.open .cr-faq__q { color: var(--cr-orange); }

.cr-faq__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,107,0,0.1);
  color: var(--cr-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--cr-transition), background var(--cr-transition);
}

.cr-faq__icon svg { width: 14px; height: 14px; }
.cr-faq__item.open .cr-faq__icon { transform: rotate(180deg); background: rgba(255,107,0,0.2); }

.cr-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding var(--cr-transition);
}

.cr-faq__item.open .cr-faq__a { max-height: 600px; }

.cr-faq__a-inner {
  padding: 0 22px 18px;
  font-size: 0.92rem;
  color: var(--cr-text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--cr-border);
  padding-top: 16px;
}


.cr-author {
  background: var(--cr-card);
  border: 1px solid var(--cr-border);
  border-radius: var(--cr-radius);
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.cr-author__photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid rgba(255,107,0,0.3);
}

.cr-author__info { flex: 1; min-width: 200px; }
.cr-author__role { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--cr-orange); margin-bottom: 4px; }
.cr-author__name { font-size: 1.3rem; font-weight: 800; color: var(--cr-text); margin-bottom: 10px; }
.cr-author__bio { font-size: 0.9rem; color: var(--cr-text-muted); line-height: 1.7; margin-bottom: 16px; }

.cr-author__socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cr-author__social {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--cr-border);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cr-text);
  transition: background var(--cr-transition), border-color var(--cr-transition), color var(--cr-transition);
}

.cr-author__social:hover { background: rgba(255,107,0,0.1); border-color: rgba(255,107,0,0.4); color: var(--cr-orange); }
.cr-author__social svg { width: 14px; height: 14px; }


.cr-footer {
  background: var(--cr-header);
  border-top: 1px solid var(--cr-border);
  padding: 48px 0 24px;
  margin-top: 80px;
}

.cr-footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--cr-border);
}

.cr-footer__brand { flex: 0 0 260px; }

.cr-footer__logo-text span:first-child {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--cr-orange);
}

.cr-footer__logo-text span:last-child {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--cr-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
}

.cr-footer__tagline {
  font-size: 0.85rem;
  color: var(--cr-text-muted);
  margin-top: 12px;
  line-height: 1.6;
}

.cr-footer__col { flex: 1 1 160px; }

.cr-footer__col-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cr-text);
  margin-bottom: 14px;
}

.cr-footer__links { display: flex; flex-direction: column; gap: 8px; }

.cr-footer__links a {
  font-size: 0.86rem;
  color: var(--cr-text-muted);
  transition: color var(--cr-transition);
}

.cr-footer__links a:hover { color: var(--cr-orange); }

.cr-footer__trust {
  padding: 24px 0;
  border-bottom: 1px solid var(--cr-border);
  margin-bottom: 24px;
}

.cr-footer__trust-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cr-text-muted);
  margin-bottom: 14px;
}

.cr-footer__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.cr-footer__logo-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--cr-border);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cr-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.cr-footer__logo-item svg { width: 18px; height: 18px; }

.cr-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px;
  justify-content: space-between;
}

.cr-footer__copy {
  font-size: 0.8rem;
  color: var(--cr-text-muted);
  line-height: 1.6;
  max-width: 700px;
}

.cr-footer__copy strong { color: var(--cr-text); }


.cr-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, #141414 0%, #1a1a1a 100%);
  border-top: 2px solid var(--cr-orange);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}

.cr-widget__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cr-widget__title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
}

.cr-widget__bonus {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--cr-green);
}

.cr-widget__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--cr-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--cr-transition);
}

.cr-widget__close:hover { background: rgba(255,0,0,0.3); color: #fff; }
.cr-widget__close svg { width: 12px; height: 12px; }

.cr-widget.hidden { display: none; }

body { padding-bottom: 72px; }

.cr-wave-sep {
  display: block;
  width: 100%;
  height: 50px;
  overflow: hidden;
  margin-bottom: -2px;
}

.cr-section--alt { background: rgba(255,107,0,0.03); }


@keyframes cr-fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cr-slideInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes cr-countUp {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cr-animate {
  opacity: 0;
  animation: cr-fadeInUp 0.6s ease forwards;
}

.cr-animate.cr-delay-1 { animation-delay: 0.1s; }
.cr-animate.cr-delay-2 { animation-delay: 0.2s; }
.cr-animate.cr-delay-3 { animation-delay: 0.3s; }

.cr-jackpot__amount { transition: color 0.3s; }


@media (max-width: 768px) {
  .cr-bonuses-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
  }

  .cr-bonuses-slider .cr-bonus-card {
    flex: 0 0 88%;
    scroll-snap-align: start;
  }

  .cr-bonuses-slider::-webkit-scrollbar { height: 4px; }
  .cr-bonuses-slider::-webkit-scrollbar-track { background: var(--cr-bg); }
  .cr-bonuses-slider::-webkit-scrollbar-thumb { background: var(--cr-orange); border-radius: 2px; }
}


@media (max-width: 1024px) {
  .cr-col-4 { flex: 0 0 calc(50% - 10px); }
}

@media (max-width: 900px) {
  .cr-header__nav { display: none; }
  .cr-burger { display: flex; }
  .cr-section-title { font-size: 1.6rem; }
  .cr-hero__title { font-size: 2rem; }
  .cr-hero__slider { height: 480px; }
}

@media (max-width: 640px) {
  .cr-section { padding: 44px 0; }
  .cr-hero__slider { height: 420px; }
  .cr-hero__title { font-size: 1.6rem; }
  .cr-hero__desc { font-size: 0.92rem; }
  .cr-col-2 { flex: 0 0 100%; }
  .cr-col-3 { flex: 0 0 100%; }
  .cr-col-4 { flex: 0 0 100%; }
  .cr-demo__frame iframe { height: 340px; }
  .cr-footer__brand { flex: 0 0 100%; }
  .cr-review { padding: 22px 16px; }
  .cr-author { flex-direction: column; align-items: center; text-align: center; }
  .cr-author__socials { justify-content: center; }
  .cr-widget { padding: 10px 16px; }
  .cr-widget__bonus { font-size: 0.95rem; }
  .kjdfgsd {display: none}
}

@media (max-width: 420px) {
  .cr-hero__btns { flex-direction: column; }
  .cr-hero__btns .cr-btn { width: 100%; }
  .cr-online-badge { display: none; }
}


.wp-block-group,.wp-block-cover,.wp-block-image,.entry-content,.wp-caption,.alignleft,.alignright,.aligncenter,.wp-post-image,.attachment-post-thumbnail,.entry-header,.site-header,.widget-area,.elementor-section,.elementor-widget-wrap,.elementor-column-wrap { display: unset; }
.screen-reader-text { border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important; }
