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

:root {
  --cr-purple: #3E0D61;
  --cr-purple-dark: #2d0948;
  --cr-purple-light: #5a1a8a;
  --cr-green: #00FF6C;
  --cr-green-dark: #00d45a;
  --cr-white: #FFFFFF;
  --cr-bg: #FFFFFF;
  --cr-text: #1a1a2e;
  --cr-text-muted: #6b7280;
  --cr-border: #e5e7eb;
  --cr-card-bg: #f9fafb;
  --cr-card-border: #ede9f5;
  --cr-radius: 12px;
  --cr-radius-sm: 8px;
  --cr-shadow: 0 4px 24px rgba(62,13,97,0.10);
  --cr-shadow-lg: 0 8px 40px rgba(62,13,97,0.18);
  --transition: 0.22s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; background: #2d0948; }

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--cr-purple); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--cr-purple-light); }

.xw9k2 { display: none; }
.pq7r3 { visibility: hidden; position: absolute; }
.mf4t8 { opacity: 0; pointer-events: none; position: absolute; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.wrapper { min-height: 100vh; display: flex; flex-direction: column; }

.box { border-radius: var(--cr-radius); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.btn--primary {
  background: var(--cr-green);
  color: #0a0a0a;
  padding: 12px 28px;
  box-shadow: 0 4px 20px rgba(0,255,108,0.35);
}
.btn--primary:hover {
  background: var(--cr-green-dark);
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0,255,108,0.45);
}

.btn--secondary {
  background: var(--cr-purple);
  color: var(--cr-white);
  padding: 12px 28px;
}
.btn--secondary:hover {
  background: var(--cr-purple-dark);
  color: var(--cr-white);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--cr-purple);
  padding: 10px 22px;
  border: 2px solid var(--cr-purple);
}
.btn--outline:hover {
  background: var(--cr-purple);
  color: var(--cr-white);
}

.btn--sm { font-size: 0.8rem; padding: 8px 18px; }
.btn--lg { font-size: 1rem; padding: 16px 40px; }

.cr-header {
  background: var(--cr-purple);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(62,13,97,0.3);
}

.cr-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
}

.cr-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.cr-logo img { height: 42px; width: auto; }

.cr-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.cr-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all var(--transition);
}
.cr-nav a:hover, .cr-nav a.active {
  color: var(--cr-green);
  background: rgba(255,255,255,0.08);
}
.cr-nav a svg { width: 16px; height: 16px; flex-shrink: 0; }

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

.cr-online-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,255,108,0.12);
  border: 1px solid rgba(0,255,108,0.25);
  border-radius: 50px;
  padding: 5px 12px;
  font-size: 0.75rem;
  color: var(--cr-green);
  font-weight: 500;
  white-space: nowrap;
}
.cr-online-dot {
  width: 7px;
  height: 7px;
  background: var(--cr-green);
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.cr-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: background var(--transition);
}
.cr-burger:hover { background: rgba(255,255,255,0.1); }
.cr-burger span {
  display: block;
  height: 2px;
  background: var(--cr-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.cr-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.cr-burger.open span:nth-child(2) { opacity: 0; }
.cr-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.cr-mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--cr-purple-dark);
  padding: 16px 20px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  z-index: 999;
  animation: slideDown 0.25s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.cr-mobile-menu.open { display: block; }
.cr-mobile-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem;
  font-weight: 500;
}
.cr-mobile-menu a:hover { color: var(--cr-green); }
.cr-mobile-menu a svg { width: 18px; height: 18px; }

.cr-mobile-menu-actions {
  display: flex;
  gap: 10px;
  padding: 16px 0 4px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.cr-hero {
  background: linear-gradient(135deg, var(--cr-purple-dark) 0%, var(--cr-purple) 50%, #6b21a8 100%);
  min-height: 520px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cr-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/stellar-spins-banner.jpg') center/cover no-repeat;
  opacity: 0.18;
  z-index: 0;
}
.cr-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--cr-bg));
  z-index: 1;
}
.cr-hero .container {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 80px;
}
.cr-hero-content { max-width: 620px; }
.cr-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,255,108,0.15);
  border: 1px solid rgba(0,255,108,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.78rem;
  color: var(--cr-green);
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cr-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--cr-white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.cr-hero h1 span { color: var(--cr-green); }
.cr-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  line-height: 1.65;
}
.cr-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cr-hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.cr-hero-stat { }
.cr-hero-stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--cr-green);
  line-height: 1;
}
.cr-hero-stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  margin-top: 4px;
  display: block;
}

.cr-breadcrumbs {
  padding: 14px 0;
  background: var(--cr-card-bg);
  border-bottom: 1px solid var(--cr-border);
}
.cr-breadcrumbs ol {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  flex-wrap: wrap;
}
.cr-breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--cr-text-muted);
}
.cr-breadcrumbs li a {
  color: var(--cr-purple);
  font-weight: 500;
}
.cr-breadcrumbs li a:hover { color: var(--cr-purple-light); }
.cr-breadcrumbs li::after {
  content: '/';
  color: var(--cr-border);
}
.cr-breadcrumbs li:last-child::after { display: none; }
.cr-breadcrumbs li:last-child { color: var(--cr-text); font-weight: 500; }

.cr-section {
  padding: 56px 0;
}
.cr-section--bg {
  background: linear-gradient(180deg, #f5f0fa 0%, #faf8fd 100%);
}

.cr-section-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--cr-purple);
  margin-bottom: 8px;
  line-height: 1.25;
}
.cr-section-sub {
  font-size: 0.95rem;
  color: var(--cr-text-muted);
  margin-bottom: 36px;
  line-height: 1.6;
}

.cr-toc {
  background: var(--cr-white);
  border: 2px solid var(--cr-card-border);
  border-radius: var(--cr-radius);
  padding: 28px 32px;
  box-shadow: var(--cr-shadow);
  margin-bottom: 40px;
}
.cr-toc-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cr-purple);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cr-toc-title svg { width: 20px; height: 20px; color: var(--cr-purple); }
.cr-toc ol {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px;
}
.cr-toc ol li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cr-text);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 9px 14px;
  border-radius: 8px;
  border: 1px solid var(--cr-border);
  transition: all var(--transition);
}
.cr-toc ol li a:hover {
  background: var(--cr-purple);
  color: var(--cr-white);
  border-color: var(--cr-purple);
}
.cr-toc ol li a svg { width: 16px; height: 16px; flex-shrink: 0; opacity: 0.7; }
.cr-toc ol li a:hover svg { opacity: 1; }
.cr-toc ol li span.toc-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--cr-purple);
  color: var(--cr-white);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: background var(--transition);
}
.cr-toc ol li a:hover .toc-num { background: var(--cr-green); color: #0a0a0a; }

.cr-advantages {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.cr-adv-card {
  background: var(--cr-white);
  border: 1.5px solid var(--cr-card-border);
  border-radius: var(--cr-radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--cr-shadow);
  transition: all var(--transition);
}
.cr-adv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--cr-shadow-lg);
  border-color: var(--cr-purple-light);
}
.cr-adv-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--cr-purple) 0%, var(--cr-purple-light) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.cr-adv-icon svg { width: 28px; height: 28px; color: var(--cr-green); }
.cr-adv-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cr-purple);
  margin-bottom: 8px;
}
.cr-adv-card p {
  font-size: 0.82rem;
  color: var(--cr-text-muted);
  line-height: 1.55;
}

.cr-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--cr-radius);
  box-shadow: var(--cr-shadow);
  border: 1.5px solid var(--cr-card-border);
}
.cr-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  background: var(--cr-white);
  font-size: 0.87rem;
}
.cr-table thead th {
  background: var(--cr-purple);
  color: var(--cr-white);
  font-weight: 600;
  padding: 14px 16px;
  text-align: left;
  white-space: nowrap;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.cr-table thead th:first-child { border-radius: 0; }
.cr-table tbody tr:nth-child(even) { background: #f9f5fd; }
.cr-table tbody tr:hover { background: #ede9f5; }
.cr-table tbody td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--cr-border);
  color: var(--cr-text);
  vertical-align: middle;
}
.cr-table tbody td:first-child {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cr-pm-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 28px;
  background: var(--cr-card-bg);
  border: 1px solid var(--cr-border);
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--cr-purple);
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.cr-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 50px;
  white-space: nowrap;
}
.cr-badge--green { background: rgba(0,255,108,0.12); color: #00a046; }
.cr-badge--purple { background: rgba(62,13,97,0.1); color: var(--cr-purple); }

.cr-video-wrap {
  position: relative;
  border-radius: var(--cr-radius);
  overflow: hidden;
  box-shadow: var(--cr-shadow-lg);
  background: #000;
  aspect-ratio: 16/9;
  max-width: 860px;
  margin: 0 auto;
}
.cr-video-wrap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border: none;
}

.cr-games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cr-game-card {
  background: var(--cr-white);
  border: 1.5px solid var(--cr-card-border);
  border-radius: var(--cr-radius);
  overflow: hidden;
  box-shadow: var(--cr-shadow);
  transition: all var(--transition);
}
.cr-game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--cr-shadow-lg);
}
.cr-game-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--cr-purple-dark) 0%, var(--cr-purple) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.cr-game-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cr-game-thumb-placeholder {
  font-size: 2.5rem;
  opacity: 0.35;
  color: var(--cr-white);
}
.cr-game-info { padding: 16px; }
.cr-game-info h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cr-text);
  margin-bottom: 4px;
}
.cr-game-info p {
  font-size: 0.78rem;
  color: var(--cr-text-muted);
  margin-bottom: 14px;
}

.cr-games-slider-wrap { position: relative; }
.cr-games-slider {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 12px;
}
.cr-games-slider::-webkit-scrollbar { display: none; }
.cr-games-slider .cr-game-card {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.cr-slider-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--cr-purple);
  color: var(--cr-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: var(--cr-shadow);
  transition: all var(--transition);
}
.cr-slider-btn:hover { background: var(--cr-purple-light); }
.cr-slider-btn--prev { left: 8px; }
.cr-slider-btn--next { right: 8px; }

.cr-demo-wrap {
  border-radius: var(--cr-radius);
  overflow: hidden;
  box-shadow: var(--cr-shadow-lg);
  background: #000;
  aspect-ratio: 4/3;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.cr-demo-wrap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border: none;
}

.cr-slot-machine {
  background: linear-gradient(135deg, var(--cr-purple-dark) 0%, var(--cr-purple) 100%);
  border-radius: var(--cr-radius);
  padding: 36px 28px;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: var(--cr-shadow-lg);
}
.cr-slot-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cr-white);
  margin-bottom: 24px;
}
.cr-slot-reels {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
.cr-reel {
  width: 80px;
  height: 90px;
  background: rgba(255,255,255,0.07);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  position: relative;
  overflow: hidden;
  transition: all 0.1s;
}
.cr-reel.spinning {
  animation: spin-blur 0.12s linear infinite;
}
@keyframes spin-blur {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}
.cr-slot-result {
  min-height: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.cr-slot-win {
  display: none;
  color: var(--cr-green);
  font-weight: 700;
  font-size: 1.05rem;
  animation: fadeInUp 0.4s ease;
}
.cr-slot-win.visible { display: block; }
.cr-slot-lose {
  display: none;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  animation: fadeInUp 0.4s ease;
}
.cr-slot-lose.visible { display: block; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.cr-slot-balance {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.cr-slot-balance strong { color: var(--cr-green); }

.cr-review-content {
  background: var(--cr-white);
  border: 1.5px solid var(--cr-card-border);
  border-radius: var(--cr-radius);
  padding: 36px 40px;
  box-shadow: var(--cr-shadow);
  line-height: 1.75;
}
.cr-review-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cr-purple);
  margin: 28px 0 14px;
}
.cr-review-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cr-purple);
  margin: 22px 0 10px;
}
.cr-review-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--cr-text);
  margin: 18px 0 8px;
}
.cr-review-content p { margin-bottom: 16px; color: var(--cr-text); font-size: 0.95rem; }
.cr-review-content ul, .cr-review-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.cr-review-content li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--cr-text);
}
.cr-review-content ul li::marker { color: var(--cr-purple); }
.cr-review-content ol li::marker { color: var(--cr-purple); font-weight: 600; }
.cr-review-content a { color: var(--cr-purple); font-weight: 500; text-decoration: underline; }
.cr-review-content a:hover { color: var(--cr-purple-light); }
.cr-review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.87rem;
}
.cr-review-content table th {
  background: var(--cr-purple);
  color: var(--cr-white);
  padding: 11px 14px;
  text-align: left;
  font-weight: 600;
}
.cr-review-content table td {
  padding: 11px 14px;
  border: 1px solid var(--cr-border);
  color: var(--cr-text);
}
.cr-review-content table tr:nth-child(even) td { background: #f9f5fd; }
.cr-review-content blockquote {
  border-left: 4px solid var(--cr-purple);
  background: #f5f0fa;
  padding: 16px 20px;
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--cr-text-muted);
}

.cr-faq { max-width: 820px; margin: 0 auto; }
.cr-faq-item {
  border: 1.5px solid var(--cr-card-border);
  border-radius: var(--cr-radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.cr-faq-item.open { border-color: var(--cr-purple); }
.cr-faq-btn {
  width: 100%;
  background: var(--cr-white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cr-text);
  text-align: left;
  transition: background var(--transition);
}
.cr-faq-btn:hover { background: #faf6ff; }
.cr-faq-item.open .cr-faq-btn { background: #f5f0fa; color: var(--cr-purple); }
.cr-faq-icon {
  width: 26px;
  height: 26px;
  background: var(--cr-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.cr-faq-item.open .cr-faq-icon { background: var(--cr-green); transform: rotate(45deg); }
.cr-faq-icon svg { width: 14px; height: 14px; color: var(--cr-white); }
.cr-faq-item.open .cr-faq-icon svg { color: #0a0a0a; }
.cr-faq-body {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--cr-text-muted);
  line-height: 1.7;
  background: var(--cr-white);
}
.cr-faq-item.open .cr-faq-body { display: block; animation: fadeInUp 0.2s ease; }

.cr-author-card {
  background: var(--cr-white);
  border: 1.5px solid var(--cr-card-border);
  border-radius: var(--cr-radius);
  padding: 32px 36px;
  display: flex;
  gap: 28px;
  box-shadow: var(--cr-shadow);
  align-items: flex-start;
}
.cr-author-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--cr-purple);
}
.cr-author-avatar-placeholder {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cr-purple), var(--cr-purple-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cr-white);
  font-size: 2rem;
  font-weight: 700;
}
.cr-author-body { flex: 1; }
.cr-author-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cr-text);
  margin-bottom: 3px;
}
.cr-author-role {
  font-size: 0.83rem;
  color: var(--cr-purple);
  font-weight: 600;
  margin-bottom: 12px;
}
.cr-author-bio {
  font-size: 0.87rem;
  color: var(--cr-text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.cr-author-meta {
  font-size: 0.8rem;
  color: var(--cr-text-muted);
  margin-bottom: 14px;
}
.cr-author-meta span + span { margin-left: 16px; }
.cr-author-links { display: flex; gap: 10px; flex-wrap: wrap; }
.cr-author-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cr-purple);
  border: 1.5px solid var(--cr-purple);
  padding: 5px 12px;
  border-radius: 50px;
  transition: all var(--transition);
}
.cr-author-links a:hover {
  background: var(--cr-purple);
  color: var(--cr-white);
}
.cr-author-links a svg { width: 14px; height: 14px; }

.cr-footer {
  background: var(--cr-purple-dark);
  padding: 48px 0 0;
  margin-top: auto;
}
.cr-footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.cr-footer-brand {}
.cr-footer-logo { height: 40px; margin-bottom: 14px; }
.cr-footer-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 16px;
}
.cr-footer-country {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.cr-footer-flag { font-size: 1.4rem; }
.cr-footer-col-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cr-green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cr-footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.cr-footer-links a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.cr-footer-links a:hover { color: var(--cr-green); }

.cr-footer-middle {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.cr-footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}
.cr-footer-logo-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  transition: all var(--transition);
}
.cr-footer-logo-badge:hover {
  background: rgba(255,255,255,0.14);
  color: var(--cr-white);
}
.cr-footer-logo-badge--green {
  border-color: rgba(0,255,108,0.25);
  color: var(--cr-green);
}

.cr-footer-socials {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.cr-footer-socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.cr-footer-socials a:hover {
  background: var(--cr-green);
  color: #0a0a0a;
}
.cr-footer-socials a svg { width: 18px; height: 18px; }

.cr-footer-bottom {
  padding: 20px 0 24px;
}
.cr-footer-bottom .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cr-footer-legal {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
}
.cr-footer-copyright {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.cr-footer-copyright a { color: rgba(255,255,255,0.55); }
.cr-footer-copyright a:hover { color: var(--cr-green); }

.cr-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: linear-gradient(90deg, var(--cr-purple-dark) 0%, var(--cr-purple) 100%);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 24px rgba(62,13,97,0.35);
}
.cr-widget-text {
  font-size: 0.85rem;
  color: var(--cr-white);
  font-weight: 500;
  flex: 1;
}
.cr-widget-text strong { color: var(--cr-green); }
.cr-widget-close {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
  flex-shrink: 0;
}
.cr-widget-close:hover { background: rgba(255,255,255,0.22); color: var(--cr-white); }
.cr-widget-close svg { width: 14px; height: 14px; }
.cr-widget.hidden { display: none; }

body { padding-bottom: 72px; }

.cr-info-page {
  padding: 48px 0 64px;
}
.cr-info-page h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--cr-purple);
  margin-bottom: 24px;
}
.cr-info-page h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cr-purple);
  margin: 28px 0 12px;
}
.cr-info-page h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cr-text);
  margin: 22px 0 10px;
}
.cr-info-page p, .cr-info-page li {
  font-size: 0.95rem;
  color: var(--cr-text);
  line-height: 1.75;
  margin-bottom: 14px;
}
.cr-info-page ul, .cr-info-page ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.cr-info-page a { color: var(--cr-purple); text-decoration: underline; }

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

@media (max-width: 1024px) {
  .cr-footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .cr-nav { display: none; }
  .cr-online-badge { display: none; }
  .cr-header-actions .btn { display: none; }
  .cr-burger { display: flex; }
  .cr-header { position: sticky; }
  .cr-games-grid { display: none; }
  .cr-games-slider-wrap { display: block; padding: 0 0 20px; }
  .cr-author-card { flex-direction: column; align-items: center; text-align: center; }
  .cr-author-links { justify-content: center; }
  .cr-footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cr-toc ol { grid-template-columns: 1fr; }
  .cr-advantages { grid-template-columns: repeat(2, 1fr); }
  .cr-widget { flex-wrap: wrap; }
  .cr-review-content { padding: 24px 20px; }
  .cr-hero p { font-size: 0.95rem; }
}

@media (min-width: 769px) {
  .cr-games-slider-wrap { display: none; }
  .cr-games-grid { display: grid; }
}

@media (max-width: 480px) {
  .cr-advantages { grid-template-columns: 1fr; }
  .cr-footer-top { grid-template-columns: 1fr; }
  .cr-hero-stats { gap: 20px; }
  .cr-reel { width: 64px; height: 74px; font-size: 2rem; }
  .cr-toc { padding: 20px 16px; }
}

.wp-block-group { display: block; }
.wp-block-columns { display: flex; gap: 16px; }
.wp-block-column { flex: 1; }
.elementor-section { display: block; }
.elementor-widget-wrap { display: block; }

input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cr-border);
  border-radius: var(--cr-radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--cr-text);
  background: var(--cr-white);
  transition: border-color var(--transition);
  appearance: none;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--cr-purple);
  box-shadow: 0 0 0 3px rgba(62,13,97,0.08);
}
label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cr-text);
  margin-bottom: 6px;
}
.cr-form-group { margin-bottom: 18px; }
.cr-form { max-width: 480px; }

.cr-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.cr-stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; }
.cr-rating-val { font-size: 1rem; font-weight: 700; color: var(--cr-text); }
.cr-rating-count { font-size: 0.8rem; color: var(--cr-text-muted); }

.cr-bonus-banner {
  background: linear-gradient(90deg, var(--cr-purple) 0%, #6b21a8 100%);
  border-radius: var(--cr-radius);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  box-shadow: var(--cr-shadow-lg);
  flex-wrap: wrap;
}
.cr-bonus-banner-text h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--cr-white);
  margin-bottom: 6px;
}
.cr-bonus-banner-text p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}

.d-none { display: none !important; }
.text-center { text-align: center; }
.mt1 { margin-top: 8px; }
.mt2 { margin-top: 16px; }
.mt3 { margin-top: 24px; }
.mb1 { margin-bottom: 8px; }
.mb2 { margin-bottom: 16px; }
.mb3 { margin-bottom: 24px; }
