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

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

:root {
  --c-bg: #121212;
  --c-bg2: #1a1a1a;
  --c-bg3: #1e1e1e;
  --c-card: #1c1c1c;
  --c-border: #2a2a2a;
  --c-red: #ad0f0a;
  --c-red-hover: #c9120c;
  --c-dark: #121212;
  --c-text: #f0f0f0;
  --c-text-muted: #999;
  --c-text-dim: #bbb;
  --c-gold: #f5c518;
  --c-green: #27ae60;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
  background: var(--c-bg);
}
body {
  font-family: "Inter", Arial, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: inherit;
}

.x7k2m {
  display: none;
}
.wp-site-icon {
}
.elementor-kit-placeholder {
  visibility: hidden;
  position: absolute;
}
.yoast-seo-meta-tag {
}

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

.cs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  border: none;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  gap: 6px;
}
.cs-btn--dark {
  background: var(--c-dark);
  color: #fff;
}
.cs-btn--dark:hover {
  background: #222;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}
.cs-btn--red {
  background: var(--c-red);
  color: #fff;
}
.cs-btn--red:hover {
  background: var(--c-red-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(173, 15, 10, 0.45);
}
.cs-btn--lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 10px;
}
.cs-btn--sm {
  padding: 7px 16px;
  font-size: 13px;
}

.cs-section {
  padding: 72px 0;
}
.cs-section--sm {
  padding: 48px 0;
}

.cs-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 4vw, 34px);
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}
.cs-subtitle {
  color: var(--c-text-muted);
  font-size: 15px;
  margin-bottom: 36px;
}
.cs-section-head {
  margin-bottom: 40px;
}
.cs-section-head .cs-title {
  margin-bottom: 8px;
}

.cs-block {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin-bottom: 0;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

#cs-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--c-dark);
  border-bottom: 1px solid #222;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}
.cs-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  height: 64px;
}
.cs-logo img {
  height: 44px;
  width: auto;
  display: block;
}
.cs-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.cs-nav a {
  color: #ccc;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition:
    color var(--transition),
    background var(--transition);
}
.cs-nav a:hover {
  color: #fff;
  background: #ffffff0f;
}
.cs-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cs-online-count {
  font-size: 12px;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: #ffffff08;
  border-radius: 20px;
  border: 1px solid #333;
  white-space: nowrap;
}
.cs-online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-green);
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

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

.cs-mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(12, 12, 12, 0.98);
  z-index: 999;
  padding: 24px 20px;
  overflow-y: auto;
  flex-direction: column;
  gap: 8px;
}
.cs-mobile-menu.open {
  display: flex;
}
.cs-mobile-menu a {
  color: #ddd;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid #222;
}

#cs-hero {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  display: flex;
  align-items: center;
}
.cs-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a0505 50%, #0d0d0d 100%);
}
.cs-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.cs-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(12, 12, 12, 0.85) 40%,
    rgba(12, 12, 12, 0.3) 100%
  );
}
.cs-hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}
.cs-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(173, 15, 10, 0.15);
  border: 1px solid rgba(173, 15, 10, 0.4);
  color: #ff6b6b;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cs-hero-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
}
.cs-hero-title span {
  color: var(--c-red);
}
.cs-hero-desc {
  color: var(--c-text-dim);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}
.cs-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cs-hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.cs-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cs-hero-stat strong {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}
.cs-hero-stat span {
  font-size: 12px;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cs-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cs-pros-block {
  background: rgba(39, 174, 96, 0.06);
  border: 1px solid rgba(39, 174, 96, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.cs-cons-block {
  background: rgba(173, 15, 10, 0.06);
  border: 1px solid rgba(173, 15, 10, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.cs-pros-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--c-green);
  font-size: 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cs-cons-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #e74c3c;
  font-size: 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cs-pros-list li,
.cs-cons-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14px;
  color: var(--c-text-dim);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.cs-pros-list li:last-child,
.cs-cons-list li:last-child {
  border-bottom: none;
}
.cs-pros-list li::before {
  content: "✓";
  color: var(--c-green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.cs-cons-list li::before {
  content: "✗";
  color: #e74c3c;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.cs-mirrors-time {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--c-text-muted);
  margin-bottom: 20px;
}
.cs-mirrors-time strong {
  color: var(--c-gold);
  font-family: "Montserrat", sans-serif;
}
.cs-mirrors-time .cs-online-dot {
  background: var(--c-green);
}

.cs-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
}
.cs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 480px;
}
.cs-table th {
  background: #222;
  color: var(--c-text-muted);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--c-border);
}
.cs-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text-dim);
  text-align: left;
}
.cs-table tr:last-child td {
  border-bottom: none;
}
.cs-table tr:hover td {
  background: rgba(255, 255, 255, 0.025);
}
.cs-table a {
  color: var(--c-gold);
  font-weight: 600;
}
.cs-table a:hover {
  text-decoration: underline;
}
.cs-status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-green);
  margin-right: 6px;
}
.cs-status-dot.red {
  background: var(--c-red);
}

.cs-winners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.cs-winner-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color var(--transition);
}
.cs-winner-card:hover {
  border-color: rgba(245, 197, 24, 0.3);
}
.cs-winner-rank {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--c-text-muted);
  min-width: 28px;
  text-align: center;
}
.cs-winner-rank.top1 {
  color: var(--c-gold);
}
.cs-winner-rank.top2 {
  color: #c0c0c0;
}
.cs-winner-rank.top3 {
  color: #cd7f32;
}
.cs-winner-ava {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-red), #5c0806);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}
.cs-winner-info {
  flex: 1;
  min-width: 0;
}
.cs-winner-nick {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cs-winner-amount {
  font-size: 13px;
  color: var(--c-gold);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.cs-app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.cs-app-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.cs-app-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  color: #fff;
  font-weight: 600;
  transition: all var(--transition);
  font-family: "Montserrat", sans-serif;
}
.cs-app-btn:hover {
  border-color: rgba(173, 15, 10, 0.4);
  background: rgba(173, 15, 10, 0.06);
  transform: translateX(4px);
}
.cs-app-btn-icon {
  font-size: 24px;
}
.cs-app-btn-text {
  display: flex;
  flex-direction: column;
}
.cs-app-btn-sub {
  font-size: 11px;
  color: var(--c-text-muted);
  font-weight: 400;
}
.cs-app-btn-label {
  font-size: 15px;
}

.cs-slot-wrap {
  max-width: 420px;
  margin: 0 auto;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.cs-slot-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 6px;
  color: #fff;
}
.cs-slot-desc {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-bottom: 24px;
}
.cs-reels {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}
.cs-reel {
  width: 80px;
  height: 80px;
  background: #0d0d0d;
  border: 2px solid var(--c-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  transition: all 0.15s;
  overflow: hidden;
  position: relative;
}
.cs-reel.spinning {
  animation: reel-spin 0.12s linear infinite;
  border-color: var(--c-red);
}
@keyframes reel-spin {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-6px);
  }
  75% {
    transform: translateY(6px);
  }
  100% {
    transform: translateY(0);
  }
}
.cs-slot-result {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.cs-slot-win {
  color: var(--c-gold);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 18px;
  animation: win-pop 0.4s ease;
}
.cs-slot-lose {
  color: var(--c-text-muted);
  font-size: 14px;
}
@keyframes win-pop {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.cs-slot-controls {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.cs-review-section {
}
.cs-author-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  margin-bottom: 28px;
}
.cs-author-ava {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ad0f0a, #5c0806);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.cs-author-name {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin-bottom: 2px;
}
.cs-author-bio {
  font-size: 12px;
  color: var(--c-text-muted);
  line-height: 1.5;
}
.cs-author-link {
  font-size: 12px;
  color: var(--c-gold);
  margin-top: 4px;
  display: inline-block;
}
.cs-author-link:hover {
  text-decoration: underline;
}

.cs-content-body {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.cs-content-body h1,
.cs-content-body h2,
.cs-content-body h3,
.cs-content-body h4,
.cs-content-body h5,
.cs-content-body h6 {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  margin: 24px 0 12px;
  line-height: 1.3;
}
.cs-content-body h2 {
  font-size: 22px;
  font-weight: 800;
}
.cs-content-body h3 {
  font-size: 18px;
  font-weight: 700;
}
.cs-content-body p {
  color: var(--c-text-dim);
  line-height: 1.75;
  margin-bottom: 16px;
}
.cs-content-body a {
  color: var(--c-gold);
}
.cs-content-body a:hover {
  text-decoration: underline;
}
.cs-content-body ul,
.cs-content-body ol {
  padding-left: 20px;
  margin-bottom: 16px;
}
.cs-content-body li {
  color: var(--c-text-dim);
  margin-bottom: 8px;
  line-height: 1.6;
}
.cs-content-body ul li {
  list-style: disc;
}
.cs-content-body ol li {
  list-style: decimal;
}
.cs-content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}
.cs-content-body table th {
  background: #222;
  color: var(--c-text-muted);
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--c-border);
}
.cs-content-body table td {
  padding: 10px 14px;
  border: 1px solid var(--c-border);
  color: var(--c-text-dim);
}
.cs-content-body blockquote {
  border-left: 3px solid var(--c-red);
  padding: 12px 20px;
  background: rgba(173, 15, 10, 0.07);
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
}
.cs-content-body blockquote p {
  margin: 0;
  color: #ddd;
  font-style: italic;
}
.cs-content-body img {
  border-radius: 8px;
  margin: 12px 0;
}
.cs-content-body strong {
  color: #fff;
  font-weight: 700;
}
.cs-content-body em {
  color: #ddd;
}
.cs-content-body hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 24px 0;
}

.cs-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 36px;
}
.cs-review-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: border-color var(--transition);
}
.cs-review-card:hover {
  border-color: rgba(245, 197, 24, 0.25);
}
.cs-review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cs-review-ava {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #333, #555);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}
.cs-review-name {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}
.cs-review-date {
  font-size: 11px;
  color: var(--c-text-muted);
  margin-top: 2px;
}
.cs-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 8px;
}
.cs-star {
  width: 16px;
  height: 16px;
}
.cs-review-text {
  font-size: 13px;
  color: var(--c-text-dim);
  line-height: 1.6;
}

.cs-review-form-wrap {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  max-width: 540px;
}
.cs-review-form-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 20px;
  color: #fff;
}
.cs-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cs-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cs-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-muted);
}
.cs-field input,
.cs-field textarea {
  background: #0f0f0f;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--c-text);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  transition: border-color var(--transition);
  outline: none;
}
.cs-field input::placeholder,
.cs-field textarea::placeholder {
  color: #555;
}
.cs-field input:focus,
.cs-field textarea:focus {
  border-color: rgba(173, 15, 10, 0.5);
}
.cs-field textarea {
  resize: vertical;
  min-height: 100px;
}
.cs-form-success {
  display: none;
  background: rgba(39, 174, 96, 0.1);
  border: 1px solid rgba(39, 174, 96, 0.3);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--c-green);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}
.cs-form-success.show {
  display: block;
}

#cs-footer {
  background: var(--c-dark);
  border-top: 1px solid #1e1e1e;
  padding: 48px 0 24px;
}
.cs-footer-grid {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.cs-footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
}
.cs-footer-desc {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-top: 8px;
}
.cs-footer-col-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.cs-footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cs-footer-links a {
  font-size: 14px;
  color: #888;
  transition: color var(--transition);
}
.cs-footer-links a:hover {
  color: #fff;
}
.cs-footer-divider {
  border: none;
  border-top: 1px solid #1e1e1e;
  margin: 0 0 24px;
}
.cs-footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.cs-provider-badge,
.cs-payment-badge {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  color: #888;
  font-weight: 600;
  white-space: nowrap;
}
.cs-footer-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.cs-footer-legal {
  font-size: 12px;
  color: #555;
  line-height: 1.8;
}
.cs-footer-legal a {
  color: #666;
}
.cs-footer-legal a:hover {
  color: #999;
}

#cs-widget {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  animation: widget-slide-in 0.6s 1s both;
}
@keyframes widget-slide-in {
  from {
    transform: translateX(-50%) translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}
.cs-widget-inner {
  background: linear-gradient(90deg, #1a0303 0%, #2a0604 100%);
  border: 1px solid rgba(173, 15, 10, 0.4);
  border-radius: 50px;
  padding: 10px 20px 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(173, 15, 10, 0.3);
  backdrop-filter: blur(10px);
}
.cs-widget-bonus {
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}
.cs-widget-bonus span {
  color: var(--c-gold);
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}
.cs-widget-btn {
  background: var(--c-red);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.cs-widget-btn:hover {
  background: var(--c-red-hover);
  transform: scale(1.04);
}
.cs-widget-close {
  background: none;
  border: none;
  color: #666;
  font-size: 16px;
  cursor: pointer;
  padding: 0 0 0 4px;
  transition: color var(--transition);
  line-height: 1;
}
.cs-widget-close:hover {
  color: #999;
}

.cs-sep {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--c-border) 30%,
    var(--c-border) 70%,
    transparent
  );
  margin: 0;
}

@media (max-width: 900px) {
  .cs-header-inner {
    grid-template-columns: auto 1fr auto;
  }
  .cs-nav {
    display: none;
  }
  .cs-burger {
    display: flex;
  }
  .cs-pros-cons {
    grid-template-columns: 1fr;
  }
  .cs-app-grid {
    grid-template-columns: 1fr;
  }
  .cs-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .cs-section {
    padding: 48px 0;
  }
  .cs-hero-stats {
    gap: 16px;
  }
  .cs-winners-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cs-footer-grid {
    grid-template-columns: 1fr;
  }
  .cs-reviews-grid {
    grid-template-columns: 1fr;
  }
  .cs-reel {
    width: 64px;
    height: 64px;
    font-size: 34px;
  }
  .cs-online-count {
    display: none;
  }
}

.wp-a4f9b {
  display: none;
}
.cs-x9r2 {
}
.elementor-section-wrap {
  display: none;
}
#wpadminbar {
  display: none !important;
}
.wpcf7-not-valid-tip {
}
input[name="wp-nonce"] {
}

.cs-slot-credits {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-top: 10px;
}
.cs-slot-credits strong {
  color: var(--c-gold);
  font-family: "Montserrat", sans-serif;
}

.cs-mirrors-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(39, 174, 96, 0.1);
  border: 1px solid rgba(39, 174, 96, 0.25);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 12px;
  color: var(--c-green);
  font-weight: 600;
  margin-bottom: 16px;
}

.cs-winners-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.cs-winners-total {
  font-size: 13px;
  color: var(--c-text-muted);
}

.cs-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cs-faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.cs-faq-q {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background var(--transition);
}
.cs-faq-q:hover {
  background: rgba(255, 255, 255, 0.03);
}
.cs-faq-icon {
  font-size: 18px;
  color: var(--c-text-muted);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.cs-faq-item.open .cs-faq-icon {
  transform: rotate(45deg);
  color: var(--c-red);
}
.cs-faq-a {
  display: none;
  padding: 0 20px 16px;
  font-size: 14px;
  color: var(--c-text-dim);
  line-height: 1.7;
}
.cs-faq-item.open .cs-faq-a {
  display: block;
}

.cs-badge-new {
  background: var(--c-red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  vertical-align: middle;
}

@media (max-width: 600px) {
  .cs-app-grid {
    grid-template-columns: 1fr;
  }

  .cs-block {
    padding: 16px 12px;
  }

  .cs-table {
    min-width: unset;
    font-size: 13px;
  }

  .cs-table th,
  .cs-table td {
    padding: 10px 10px;
  }

  .cs-app-btns {
    margin-top: 16px;
  }

  .cs-app-btn {
    padding: 10px 14px;
  }

  .cs-app-btn-label {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .cs-winners-grid {
    grid-template-columns: 1fr;
  }

  .cs-winners-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .cs-winner-card {
    padding: 12px 14px;
  }

  .cs-winner-nick {
    font-size: 12px;
  }

  .cs-winner-amount {
    font-size: 12px;
  }
}
