:root {
  --clr-bg: #ffffff;
  --clr-dark: #1a1a1a;
  --clr-dark-alt: #222222;
  --clr-red: #e10600;
  --clr-red-bright: #ff1e1e;
  --clr-text: #1a1a1a;
  --clr-text-light: #555555;
  --clr-border: #e2e2e2;
  --clr-card: #f8f8f8;
  --clr-gold: #f5c518;
  --clr-success: #28a745;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.18);
  --transition: .25s ease;
  --font-main: 'Roboto', sans-serif;
  --container-max: 1200px;
}

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

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

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

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

.xc-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 16px;
}

.xc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.xc-btn:active { transform: scale(.97); }

.xc-btn--login {
  background: var(--clr-red);
  color: #fff;
}
.xc-btn--login:hover {
  background: #c50500;
  color: #fff;
  box-shadow: 0 4px 14px rgba(225,6,0,.4);
}

.xc-btn--register {
  background: var(--clr-red-bright);
  color: #fff;
}
.xc-btn--register:hover {
  background: #e51010;
  color: #fff;
  box-shadow: 0 4px 14px rgba(255,30,30,.4);
}

.xc-btn--hero {
  background: var(--clr-red-bright);
  color: #fff;
  padding: 14px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 24px rgba(255,30,30,.45);
}
.xc-btn--hero:hover {
  background: #e51010;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255,30,30,.55);
}

.xc-btn--outline {
  background: transparent;
  border: 2px solid var(--clr-red);
  color: var(--clr-red);
}
.xc-btn--outline:hover {
  background: var(--clr-red);
  color: #fff;
}

.xc-section { padding: 56px 0; }
.xc-section--alt { background: var(--clr-card); }

.xc-heading {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--clr-text);
  position: relative;
  padding-bottom: 12px;
}
.xc-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 48px; height: 3px;
  background: var(--clr-red);
  border-radius: 2px;
}

.xc-card {
  background: var(--clr-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.xc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* ========= HEADER ========= */
.xc-header {
  background: var(--clr-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,.4);
}

.xc-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.xc-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.xc-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.xc-header__nav {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.xc-header__nav a {
  color: #cccccc;
  font-size: .88rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}
.xc-header__nav a:hover { color: #fff; background: rgba(255,255,255,.08); }

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

.xc-header__online {
  font-size: .75rem;
  color: #aaa;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}
.xc-header__online::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #22d55a;
  border-radius: 50%;
  display: inline-block;
  animation: xc-pulse 1.8s infinite;
}

@keyframes xc-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}

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

.xc-mobile-menu {
  display: none;
  background: var(--clr-dark-alt);
  border-top: 1px solid #333;
}
.xc-mobile-menu.is-open { display: block; }
.xc-mobile-menu__nav {
  list-style: none;
  padding: 12px 16px;
}
.xc-mobile-menu__nav li { border-bottom: 1px solid #333; }
.xc-mobile-menu__nav a {
  display: block;
  padding: 12px 0;
  color: #ccc;
  font-size: .95rem;
  text-decoration: none;
  transition: color var(--transition);
}
.xc-mobile-menu__nav a:hover { color: #fff; }

/* ========= HERO ========= */
.xc-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clr-dark);
}
.xc-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/x-banner.png');
  background-size: cover;
  background-position: center;
  opacity: .55;
  transition: opacity .6s ease;
}
.xc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,.85) 0%, rgba(225,6,0,.2) 100%);
}
.xc-hero__content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding: 60px 16px;
  margin: 0 auto;
  width: 100%;
}
.xc-hero__badge {
  display: inline-block;
  background: var(--clr-red);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.xc-hero__title {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.xc-hero__title span { color: var(--clr-red-bright); }
.xc-hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 28px;
  line-height: 1.6;
}
.xc-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.xc-hero__bonus {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-md);
  padding: 10px 18px;
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
  margin-top: 20px;
}

/* ========= BREADCRUMBS ========= */
.xc-breadcrumb {
  background: var(--clr-card);
  border-bottom: 1px solid var(--clr-border);
  padding: 10px 0;
}
.xc-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  flex-wrap: wrap;
  font-size: .82rem;
}
.xc-breadcrumb__list li { display: flex; align-items: center; gap: 6px; }
.xc-breadcrumb__list li:not(:last-child)::after {
  content: '›';
  color: #999;
  font-size: .9rem;
}
.xc-breadcrumb__list a { color: var(--clr-text-light); text-decoration: none; }
.xc-breadcrumb__list a:hover { color: var(--clr-red); }
.xc-breadcrumb__list li:last-child span { color: var(--clr-text-light); }

/* ========= TABLE OF CONTENTS ========= */
.xc-toc {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-left: 4px solid var(--clr-red);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 8px;
}
.xc-toc__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--clr-text);
}
.xc-toc__list {
  list-style: none;
  columns: 2;
  column-gap: 24px;
}
.xc-toc__list li { margin-bottom: 8px; break-inside: avoid; }
.xc-toc__list a {
  color: var(--clr-text-light);
  font-size: .88rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.xc-toc__list a::before {
  content: '›';
  color: var(--clr-red);
  font-weight: 700;
}
.xc-toc__list a:hover { color: var(--clr-red); }

/* ========= ADVANTAGES ========= */
.xc-advantages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.xc-adv-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.xc-adv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-red), var(--clr-red-bright));
}
.xc-adv-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.xc-adv-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.xc-adv-card__title {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--clr-text);
}
.xc-adv-card__text {
  font-size: .83rem;
  color: var(--clr-text-light);
  line-height: 1.5;
}

/* ========= PROS CONS ========= */
.xc-proscons__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.xc-proscons__col {
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--clr-border);
}
.xc-proscons__col--pros { background: #f0fff4; border-color: #b7e8c5; }
.xc-proscons__col--cons { background: #fff5f5; border-color: #fac5c5; }
.xc-proscons__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.xc-proscons__col--pros .xc-proscons__title { color: #166534; }
.xc-proscons__col--cons .xc-proscons__title { color: #991b1b; }
.xc-proscons__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.xc-proscons__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  line-height: 1.5;
  color: var(--clr-text);
}
.xc-proscons__col--pros .xc-proscons__list li::before { content: '✓'; color: #16a34a; font-weight: 700; flex-shrink: 0; }
.xc-proscons__col--cons .xc-proscons__list li::before { content: '✗'; color: #dc2626; font-weight: 700; flex-shrink: 0; }

/* ========= MIRRORS TABLE ========= */
.xc-mirrors__meta {
  font-size: .82rem;
  color: var(--clr-text-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.xc-mirrors__meta strong { color: var(--clr-red); }
.xc-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-md); }
.xc-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
}
.xc-table th {
  background: var(--clr-dark);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-size: .85rem;
  font-weight: 600;
  white-space: nowrap;
}
.xc-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.xc-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.xc-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--clr-border);
  font-size: .88rem;
  color: var(--clr-text);
}
.xc-table tr:last-child td { border-bottom: none; }
.xc-table tr:nth-child(even) td { background: var(--clr-card); }
.xc-table tr:hover td { background: #fff3f3; }
.xc-badge-active {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #dcfce7;
  color: #166534;
  font-size: .75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}
.xc-badge-active::before { content: '●'; color: #16a34a; font-size: .55rem; }

/* ========= WINNERS ========= */
.xc-winners__table {
  width: 100%;
  border-collapse: collapse;
}
.xc-winners__table th {
  background: var(--clr-dark);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-size: .85rem;
}
.xc-winners__table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--clr-border);
  font-size: .88rem;
}
.xc-winners__table tr:nth-child(even) td { background: var(--clr-card); }
.xc-winners__table tr:hover td { background: #fff3f3; }
.xc-rank {
  font-weight: 800;
  font-size: .9rem;
  color: var(--clr-text-light);
  width: 36px;
  text-align: center;
}
.xc-rank--1 { color: #f5c518; font-size: 1.1rem; }
.xc-rank--2 { color: #aab8c2; }
.xc-rank--3 { color: #cd7f32; }
.xc-win-amount {
  font-weight: 700;
  color: var(--clr-red);
}
.xc-nick { font-weight: 600; }

/* ========= VIDEO ========= */
.xc-video__wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.xc-video__wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ========= SLOTS SLIDER ========= */
.xc-slots__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.xc-slot-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.xc-slot-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.xc-slot-card__img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.xc-slot-card__body { padding: 14px 16px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.xc-slot-card__name { font-weight: 700; font-size: .95rem; color: var(--clr-text); }
.xc-slot-card__provider { font-size: .78rem; color: var(--clr-text-light); }

.xc-slots-slider { display: none; position: relative; overflow: hidden; }
.xc-slider__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.xc-slider__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--clr-border);
  background: var(--clr-bg);
  color: var(--clr-text);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  flex-shrink: 0;
}
.xc-slider__btn:active { background: var(--clr-red); border-color: var(--clr-red); color: #fff; }
.xc-slider__btn:disabled { opacity: .3; pointer-events: none; }
.xc-slider__counter {
  font-size: .82rem;
  color: var(--clr-text-light);
  font-weight: 500;
}
.xc-slider__track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.xc-slider__track::-webkit-scrollbar { display: none; }
.xc-slider__item {
  min-width: 100%;
  flex-shrink: 0;
  scroll-snap-align: start;
  padding: 0 4px;
}
.xc-slider__item .xc-slot-card__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  aspect-ratio: unset;
}
.xc-slider__dots { display: flex; justify-content: center; gap: 8px; margin-top: 14px; }
.xc-slider__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--clr-border);
  cursor: pointer;
  transition: background var(--transition), width var(--transition);
  border: none;
  padding: 0;
}
.xc-slider__dot.is-active { background: var(--clr-red); width: 22px; border-radius: 4px; }

/* ========= REVIEW CONTENT ========= */
.xc-review-content {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--clr-text);
}
.xc-review-content h2 { font-size: 1.45rem; font-weight: 700; margin: 32px 0 14px; color: var(--clr-text); }
.xc-review-content h3 { font-size: 1.2rem; font-weight: 600; margin: 24px 0 10px; color: var(--clr-text); }
.xc-review-content h4 { font-size: 1rem; font-weight: 600; margin: 18px 0 8px; }
.xc-review-content p { margin-bottom: 16px; }
.xc-review-content ul, .xc-review-content ol { margin: 0 0 16px 22px; }
.xc-review-content li { margin-bottom: 6px; }
.xc-review-content a { color: var(--clr-red); text-decoration: underline; }
.xc-review-content table { width: 100%; border-collapse: collapse; margin-bottom: 20px; overflow-x: auto; display: block; }
.xc-review-content th { background: var(--clr-dark); color: #fff; padding: 10px 14px; text-align: left; font-size: .85rem; }
.xc-review-content td { padding: 10px 14px; border: 1px solid var(--clr-border); font-size: .88rem; }
.xc-review-content tr:nth-child(even) td { background: var(--clr-card); }
.xc-review-content blockquote { border-left: 4px solid var(--clr-red); padding: 12px 20px; background: var(--clr-card); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin-bottom: 16px; }
.xc-review-content img { border-radius: var(--radius-sm); margin-bottom: 16px; }
.xc-review-content strong { font-weight: 700; }
.xc-review-content em { font-style: italic; }
.xc-review-content code { background: var(--clr-card); padding: 2px 6px; border-radius: 4px; font-size: .9em; }
.xc-review-content hr { border: none; border-top: 1px solid var(--clr-border); margin: 24px 0; }

/* ========= REVIEWS ========= */
.xc-reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.xc-review-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.xc-review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.xc-review-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.xc-review-card__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-red) 0%, #ff6b35 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.xc-review-card__name { font-weight: 700; font-size: .9rem; color: var(--clr-text); }
.xc-review-card__stars { color: var(--clr-gold); display: flex; gap: 2px; margin-top: 2px; }
.xc-review-card__text { font-size: .85rem; color: var(--clr-text-light); line-height: 1.6; }

.xc-review-form {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 28px;
  max-width: 600px;
}
.xc-review-form__title { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; color: var(--clr-text); }
.xc-form-group { margin-bottom: 16px; }
.xc-form-label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 6px; color: var(--clr-text); }
.xc-form-input,
.xc-form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: .9rem;
  color: var(--clr-text);
  background: var(--clr-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.xc-form-input:focus,
.xc-form-textarea:focus {
  border-color: var(--clr-red);
  box-shadow: 0 0 0 3px rgba(225,6,0,.12);
}
.xc-form-textarea { resize: vertical; min-height: 110px; }
.xc-form-success {
  display: none;
  background: #dcfce7;
  border: 1px solid #86efac;
  color: #166534;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: .9rem;
  font-weight: 500;
  margin-top: 14px;
}
.xc-form-success.is-visible { display: flex; align-items: center; gap: 8px; }

/* ========= AUTHOR ========= */
.xc-author {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.xc-author__photo {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--clr-red);
}
.xc-author__name { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; color: var(--clr-text); }
.xc-author__role { font-size: .82rem; color: var(--clr-red); font-weight: 600; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .04em; }
.xc-author__bio { font-size: .88rem; color: var(--clr-text-light); line-height: 1.6; margin-bottom: 14px; }
.xc-author__socials { display: flex; gap: 10px; }
.xc-author__social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--clr-border);
  color: var(--clr-text);
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.xc-author__social-link:hover { border-color: var(--clr-red); color: var(--clr-red); background: #fff3f3; }

/* ========= FOOTER ========= */
.xc-footer {
  background: var(--clr-dark);
  color: #aaa;
  padding: 48px 0 24px;
}
.xc-footer__top {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.xc-footer__logo img {
  height: 40px;
  width: auto;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}
.xc-footer__desc { font-size: .82rem; line-height: 1.6; color: #888; }
.xc-footer__col-title {
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.xc-footer__nav { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.xc-footer__nav a { color: #888; font-size: .84rem; text-decoration: none; transition: color var(--transition); }
.xc-footer__nav a:hover { color: #fff; }
.xc-footer__payments { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.xc-footer__pay-badge {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: .78rem;
  color: #ccc;
  font-weight: 600;
}
.xc-footer__providers { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 28px; }
.xc-footer__prov-badge {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: .73rem;
  color: #888;
}
.xc-footer__bottom {
  border-top: 1px solid #2e2e2e;
  padding-top: 20px;
  font-size: .78rem;
  color: #666;
  line-height: 1.7;
}
.xc-footer__copyright { margin-bottom: 8px; }
.xc-footer__legal { font-size: .73rem; color: #555; }

/* ========= WIDGET ========= */
.xc-widget {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: linear-gradient(90deg, var(--clr-dark) 0%, #2a0000 100%);
  border-top: 2px solid var(--clr-red);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.35);
}
.xc-widget__text {
  color: #fff;
  font-size: .88rem;
  font-weight: 500;
}
.xc-widget__text strong { color: var(--clr-red-bright); }
.xc-widget__close {
  position: absolute;
  right: 14px;
  top: 50%; transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #888;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  padding: 4px;
  transition: color var(--transition);
}
.xc-widget__close:hover { color: #fff; }

/* ========= FAKE/DECOY WP ELEMENTS ========= */
.wp-block-group { display: block; }
.wp-block-columns { display: flex; gap: 24px; }
.entry-content { display: block; }
.elementor-section { display: block; }
.screen-reader-text { position: absolute; left: -999em; top: auto; width: 1px; height: 1px; overflow: hidden; }
.wpcf7-form-control-wrap { display: inline-block; }

/* ========= UTILITIES ========= */
.xc-mt-8 { margin-top: 8px; }
.xc-mt-16 { margin-top: 16px; }
.xc-mt-24 { margin-top: 24px; }
.xc-mb-24 { margin-bottom: 24px; }
.xc-text-center { text-align: center; }
.xc-d-none { display: none !important; }

/* ========= ANIMATIONS ========= */
@keyframes xc-fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.xc-anim-fadeup {
  animation: xc-fadeUp .55s ease both;
}
.xc-anim-delay-1 { animation-delay: .1s; }
.xc-anim-delay-2 { animation-delay: .2s; }
.xc-anim-delay-3 { animation-delay: .3s; }

/* ========= RESPONSIVE ========= */
@media (max-width: 900px) {
  .xc-footer__top { grid-template-columns: 1fr 1fr; }
  .xc-footer__logo { grid-column: span 2; }
  .xc-proscons__grid { gap: 16px; }
}

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

  .xc-hero { min-height: 380px; }
  .xc-hero__content { padding: 40px 16px; }

  .xc-slots__grid { display: none; }
  .xc-slots-slider { display: block; }

  .xc-proscons__grid { grid-template-columns: 1fr; }

  .xc-author { flex-direction: column; align-items: center; text-align: center; }
  .xc-author__socials { justify-content: center; }

  .xc-footer__top { grid-template-columns: 1fr; }
  .xc-footer__logo { grid-column: span 1; }

  .xc-toc__list { columns: 1; }

  .xc-widget { flex-wrap: wrap; padding: 10px 44px 10px 16px; }
  .xc-widget__text { font-size: .8rem; }

  .xc-heading { font-size: 1.4rem; }
}

@media (max-width: 480px) {
  .xc-reviews__grid { grid-template-columns: 1fr; }
  .xc-advantages__grid { grid-template-columns: 1fr; }
}

/* ========= FAKE UNUSED CSS (obfuscation) ========= */
.qx7b2f1 { display: flex; align-items: center; }
.mf3k9p2 { color: transparent; font-size: 0; }
.zt8n1c6 { position: absolute; left: -9999px; }
.bk4w7r3 { opacity: 0; pointer-events: none; }
.zr6p1k9::after { content: ''; display: none; }
.wp-content { display: block; }
.elementor-widget { display: block; }
.yoast-schema-graph { display: none; }
