:root {
  --bg: #110d0e;
  --hdr: #450b17;
  --hdr-dark: #350810;
  --btn-login: #e0e0e0;
  --btn-login-txt: #110d0e;
  --btn-reg: #c7051d;
  --btn-reg-hover: #e50820;
  --text: #f2e8e8;
  --text-muted: #b89090;
  --gold: #e4b84a;
  --gold2: #f5d070;
  --card-bg: #1b1214;
  --card-bg2: #221519;
  --card-border: #3d1525;
  --radius: 12px;
  --radius-lg: 20px;
  --font: "Manrope", sans-serif;
  --tr: 0.3s ease;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
  --glow: 0 0 20px rgba(199, 5, 29, 0.35);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font);
}
input,
textarea {
  font-family: var(--font);
}

.x7k-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.x7k-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.x7k-section {
  padding: 72px 0;
}
.x7k-section-sm {
  padding: 48px 0;
}
.x7k-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.x7k-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 10px;
}
.x7k-heading {
  margin-bottom: 40px;
}
.x7k-heading .x7k-title span {
  color: var(--gold);
}

.xbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    transform var(--tr),
    box-shadow var(--tr),
    background var(--tr),
    color var(--tr);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.xbtn-login {
  background: var(--btn-login);
  color: var(--btn-login-txt);
}
.xbtn-login:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(224, 224, 224, 0.25);
}
.xbtn-reg {
  background: var(--btn-reg);
  color: #fff;
}
.xbtn-reg:hover {
  background: var(--btn-reg-hover);
  transform: translateY(-2px);
  box-shadow: var(--glow);
}
.xbtn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #110d0e;
  font-weight: 800;
}
.xbtn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(228, 184, 74, 0.4);
}
.xbtn-outline {
  border: 2px solid var(--card-border);
  color: var(--text);
  background: transparent;
}
.xbtn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.xbtn-lg {
  padding: 15px 34px;
  font-size: 1.05rem;
  border-radius: 10px;
}

.xhdr {
  background: var(--hdr);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}
.xhdr-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
  height: 68px;
  max-width: 1240px;
  margin: 0 auto;
}
.xhdr-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}
.xhdr-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.xhdr-nav a {
  padding: 7px 14px;
  border-radius: 7px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #f2d0d0;
  transition:
    background var(--tr),
    color var(--tr);
}
.xhdr-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.xhdr-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.xhdr-online {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.xhdr-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  animation: xpulse 2s infinite;
}
@keyframes xpulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}
.xhdr-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  cursor: pointer;
  padding: 4px;
}
.xhdr-burger span {
  display: block;
  height: 2.5px;
  background: #f2d0d0;
  border-radius: 2px;
  transition:
    transform var(--tr),
    opacity var(--tr);
}
.xhdr-burger.is-active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.xhdr-burger.is-active span:nth-child(2) {
  opacity: 0;
}
.xhdr-burger.is-active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}
.xhdr-mob-nav {
  display: none;
  background: var(--hdr-dark);
  padding: 16px 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.xhdr-mob-nav.is-open {
  display: block;
}
.xhdr-mob-nav a {
  display: block;
  padding: 10px 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #f2d0d0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.xhdr-mob-nav a:last-child {
  border-bottom: 0;
}

.xhero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.xhero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.xhero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.xhero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17, 13, 14, 0.92) 40%,
    rgba(69, 11, 23, 0.7)
  );
}
.xhero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}
.xhero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(228, 184, 74, 0.15);
  border: 1px solid rgba(228, 184, 74, 0.35);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.xhero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.xhero-title span {
  color: var(--gold);
}
.xhero-desc {
  font-size: 1.05rem;
  color: #d4b8b8;
  margin-bottom: 32px;
  max-width: 500px;
}
.xhero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.xhero-stat {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.xhero-stat-item {
  text-align: center;
}
.xhero-stat-item strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
}
.xhero-stat-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.xwin-block {
  background: linear-gradient(180deg, var(--bg) 0%, #160f10 100%);
}
.xwin-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
}
.xwin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 420px;
}
.xwin-table thead th {
  background: var(--hdr);
  color: #f2d0d0;
  padding: 13px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.xwin-table thead th:first-child {
  border-radius: var(--radius-lg) 0 0 0;
  width: 52px;
  text-align: center;
}
.xwin-table thead th:last-child {
  border-radius: 0 var(--radius-lg) 0 0;
}
.xwin-table tbody tr {
  transition: background var(--tr);
  border-bottom: 1px solid rgba(61, 21, 37, 0.5);
}
.xwin-table tbody tr:hover {
  background: rgba(199, 5, 29, 0.07);
}
.xwin-table tbody td {
  padding: 11px 18px;
  font-size: 0.92rem;
}
.xwin-table tbody td:first-child {
  text-align: center;
  font-weight: 800;
  color: var(--text-muted);
}
.xwin-rank-1 td:first-child {
  color: var(--gold);
}
.xwin-rank-2 td:first-child {
  color: #c0c0c0;
}
.xwin-rank-3 td:first-child {
  color: #cd7f32;
}
.xwin-nick {
  font-weight: 700;
  color: var(--text);
}
.xwin-amount {
  font-weight: 800;
  color: #2ecc71;
}
.xwin-game {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.xtourn-block {
  background: #130e0f;
}
.xtourn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.xtourn-card {
  background: var(--card-bg2);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform var(--tr),
    box-shadow var(--tr);
}
.xtourn-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow), var(--glow);
}
.xtourn-card-top {
  background: linear-gradient(135deg, var(--hdr), var(--hdr-dark));
  padding: 20px 22px 14px;
  position: relative;
  overflow: hidden;
}
.xtourn-card-top::after {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}
.xtourn-card-label {
  font-size: 0.73rem;
  font-weight: 700;
  color: rgba(242, 208, 208, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.xtourn-card-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}
.xtourn-prize-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(228, 184, 74, 0.2);
  border: 1px solid rgba(228, 184, 74, 0.4);
  color: var(--gold);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 800;
  margin-top: 10px;
}
.xtourn-card-body {
  padding: 18px 22px 22px;
}
.xtourn-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}
.xtourn-timer {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}
.xtourn-timer-unit {
  flex: 1;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 8px 4px;
  text-align: center;
}
.xtourn-timer-unit strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}
.xtourn-timer-unit span {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 4px;
}

.xapp-block {
  background: linear-gradient(180deg, #130e0f 0%, var(--bg) 100%);
}
.xapp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.xapp-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
}
.xapp-table {
  width: 100%;
  border-collapse: collapse;
}
.xapp-table tr {
  border-bottom: 1px solid rgba(61, 21, 37, 0.6);
}
.xapp-table tr:last-child {
  border-bottom: 0;
}
.xapp-table td {
  padding: 13px 18px;
  font-size: 0.92rem;
}
.xapp-table td:first-child {
  color: var(--text-muted);
  font-weight: 600;
  width: 45%;
  background: rgba(255, 255, 255, 0.02);
}
.xapp-table td:last-child {
  color: var(--text);
  font-weight: 700;
}
.xapp-dl-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.xapp-dl-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card-bg2);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 13px 20px;
  transition:
    transform var(--tr),
    border-color var(--tr),
    box-shadow var(--tr);
}
.xapp-dl-btn:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(228, 184, 74, 0.2);
}
.xapp-dl-btn-icon {
  font-size: 1.8rem;
  line-height: 1;
}
.xapp-dl-btn-text {
  display: flex;
  flex-direction: column;
}
.xapp-dl-btn-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.xapp-dl-btn-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
}
.xapp-right-head .x7k-title {
  margin-bottom: 16px;
}
.xapp-desc {
  color: var(--text-muted);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.xgames-block {
  background: #0f0b0c;
}
.xgames-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.xgame-card {
  background: var(--card-bg2);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform var(--tr),
    box-shadow var(--tr);
  display: flex;
  flex-direction: column;
}
.xgame-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.xgame-card-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: linear-gradient(135deg, #2a1520, #1a0e14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.xgame-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.xgame-card:hover .xgame-card-img img {
  transform: scale(1.06);
}
.xgame-card-body {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.xgame-card-name {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
}
.xgame-card-provider {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.xslot-block {
  background: linear-gradient(135deg, #1a0d12 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.xslot-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--btn-reg), transparent);
}
.xslot-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.xslot-machine {
  background: var(--card-bg2);
  border: 2px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 32px auto 0;
  box-shadow: var(--shadow);
}
.xslot-reels {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}
.xslot-reel {
  width: 90px;
  height: 90px;
  background: #0d0a0b;
  border: 2px solid var(--card-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  line-height: 1;
  overflow: hidden;
  position: relative;
  transition: border-color var(--tr);
}
.xslot-reel.spinning {
  animation: xreel-spin 0.1s linear infinite;
}
@keyframes xreel-spin {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-4px);
  }
  75% {
    transform: translateY(4px);
  }
  100% {
    transform: translateY(0);
  }
}
.xslot-reel.win-reel {
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(228, 184, 74, 0.5);
}
.xslot-win-msg {
  display: none;
  background: linear-gradient(
    135deg,
    rgba(228, 184, 74, 0.15),
    rgba(228, 184, 74, 0.05)
  );
  border: 1px solid rgba(228, 184, 74, 0.4);
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 20px;
  animation: xfade-in 0.4s ease;
}
.xslot-win-msg.show {
  display: block;
}
.xslot-win-msg-title {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 6px;
}
.xslot-win-msg-text {
  font-size: 0.9rem;
  color: #d4c08a;
}
.xslot-lose-msg {
  display: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.xslot-lose-msg.show {
  display: block;
}
.xslot-spin-btn {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--btn-reg), #8c0316);
  color: #fff;
  transition:
    transform var(--tr),
    box-shadow var(--tr);
  letter-spacing: 0.03em;
}
.xslot-spin-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow);
}
.xslot-spin-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.xslot-credits {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
}

.xcontent-block {
  background: var(--bg);
}
.xcontent-inner {
  max-width: 860px;
  margin: 0 auto;
}
.xcontent-author {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card-bg2);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 36px;
}
.xcontent-author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--hdr);
  flex-shrink: 0;
}
.xcontent-author-name {
  font-weight: 800;
  font-size: 0.95rem;
}
.xcontent-author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.xcontent-author-link {
  font-size: 0.78rem;
  color: var(--gold);
  margin-top: 3px;
  display: inline-block;
}
.xcontent-body {
  background: var(--card-bg2);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}
.xcontent-body h1,
.xcontent-body h2,
.xcontent-body h3,
.xcontent-body h4 {
  color: var(--text);
  font-weight: 800;
  margin-bottom: 14px;
  margin-top: 28px;
  line-height: 1.3;
}
.xcontent-body h1 {
  font-size: 1.9rem;
}
.xcontent-body h2 {
  font-size: 1.5rem;
}
.xcontent-body h3 {
  font-size: 1.2rem;
}
.xcontent-body h4 {
  font-size: 1rem;
}
.xcontent-body p {
  margin-bottom: 16px;
  color: #d8cccc;
  line-height: 1.8;
}
.xcontent-body a {
  color: var(--gold);
  text-decoration: underline;
}
.xcontent-body ul,
.xcontent-body ol {
  margin: 0 0 16px 24px;
  color: #d8cccc;
}
.xcontent-body ul li,
.xcontent-body ol li {
  margin-bottom: 8px;
  line-height: 1.7;
}
.xcontent-body ul {
  list-style: disc;
}
.xcontent-body ol {
  list-style: decimal;
}
.xcontent-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  text-align: left;
}
.xcontent-body table th {
  background: var(--hdr);
  color: #f2d0d0;
  padding: 10px 14px;
  font-size: 0.85rem;
}
.xcontent-body table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--card-border);
  color: #d8cccc;
}
.xcontent-body table tr:hover td {
  background: rgba(199, 5, 29, 0.05);
}
.xcontent-body blockquote {
  border-left: 3px solid var(--btn-reg);
  padding: 12px 20px;
  margin: 20px 0;
  background: rgba(199, 5, 29, 0.07);
  border-radius: 0 8px 8px 0;
  color: #d8cccc;
  font-style: italic;
}
.xcontent-body strong,
.xcontent-body b {
  color: var(--text);
  font-weight: 700;
}
.xcontent-body img {
  max-width: 100%;
  border-radius: 8px;
  margin: 16px 0;
}

.xrev-block {
  background: #0f0b0c;
}
.xrev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.xrev-card {
  background: var(--card-bg2);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--tr);
}
.xrev-card:hover {
  transform: translateY(-4px);
}
.xrev-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
}
.xrev-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--hdr);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: #f2d0d0;
}
.xrev-name {
  font-weight: 800;
  font-size: 0.95rem;
}
.xrev-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.xrev-stars {
  display: flex;
  gap: 3px;
}
.xrev-stars svg {
  fill: var(--gold);
  width: 16px;
  height: 16px;
}
.xrev-text {
  font-size: 0.88rem;
  color: #d8cccc;
  line-height: 1.7;
}
.xrev-form {
  background: var(--card-bg2);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  max-width: 620px;
}
.xrev-form-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 22px;
}
.xform-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.xform-field label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}
.xform-field input,
.xform-field textarea {
  background: #0d0a0b;
  border: 1.5px solid var(--card-border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text);
  font-size: 0.93rem;
  outline: none;
  transition:
    border-color var(--tr),
    box-shadow var(--tr);
}
.xform-field input:focus,
.xform-field textarea:focus {
  border-color: var(--btn-reg);
  box-shadow: 0 0 0 3px rgba(199, 5, 29, 0.15);
}
.xform-field textarea {
  resize: vertical;
  min-height: 110px;
}
.xform-success {
  display: none;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.35);
  color: #2ecc71;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 14px;
}
.xform-success.show {
  display: block;
}

.xftr {
  background: var(--hdr-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.xftr-top {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 40px;
  padding: 48px 0 36px;
}
.xftr-logo img {
  height: 38px;
  margin-bottom: 14px;
}
.xftr-desc {
  font-size: 0.83rem;
  color: rgba(242, 208, 208, 0.6);
  line-height: 1.7;
  max-width: 180px;
}
.xftr-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(242, 208, 208, 0.5);
  margin-bottom: 14px;
}
.xftr-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.xftr-links a {
  font-size: 0.88rem;
  color: rgba(242, 208, 208, 0.7);
  transition: color var(--tr);
}
.xftr-links a:hover {
  color: var(--gold);
}
.xftr-payments {
  margin-bottom: 28px;
}
.xftr-payments-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(242, 208, 208, 0.5);
  margin-bottom: 14px;
}
.xftr-pay-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.xftr-pay-logo {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(242, 208, 208, 0.8);
}
.xftr-providers {
  margin-bottom: 28px;
}
.xftr-prov-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.xftr-prov-logo {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.7rem;
  color: rgba(242, 208, 208, 0.5);
}
.xftr-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin: 0;
}
.xftr-bottom {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}
.xftr-copy {
  font-size: 0.78rem;
  color: rgba(242, 208, 208, 0.4);
}
.xftr-legal {
  font-size: 0.72rem;
  color: rgba(242, 208, 208, 0.3);
  max-width: 860px;
  line-height: 1.6;
}
.xftr-lic {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.72rem;
  color: rgba(242, 208, 208, 0.5);
}

.xwidget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: linear-gradient(135deg, #3a0916, var(--btn-reg));
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 -4px 24px rgba(199, 5, 29, 0.4);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.xwidget.visible {
  transform: translateY(0);
}
.xwidget-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}
.xwidget-text strong {
  color: #fff;
  font-weight: 900;
}
.xwidget-btn {
  background: #fff;
  color: var(--btn-reg);
  font-weight: 900;
  font-size: 0.95rem;
  padding: 10px 24px;
  border-radius: 8px;
  transition: transform var(--tr);
  text-decoration: none;
}
.xwidget-btn:hover {
  transform: scale(1.04);
}
.xwidget-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.xfade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.xfade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}
.xfade-up-d1 {
  transition-delay: 0.1s;
}
.xfade-up-d2 {
  transition-delay: 0.2s;
}
.xfade-up-d3 {
  transition-delay: 0.3s;
}

.xslider-wrap {
  position: relative;
  overflow: hidden;
}
.xslider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}
.xslider-nav {
  display: none;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.xslider-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--card-bg2);
  border: 1px solid var(--card-border);
  color: var(--text);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--tr);
}
.xslider-btn:hover {
  background: var(--hdr);
}

.x9ba2e {
  display: none;
}
.xdf820 {
  visibility: hidden;
}
.xac091::after {
  content: "";
}
.xe8c12 {
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

@media (max-width: 1100px) {
  .xgames-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .xhdr-inner {
    grid-template-columns: auto auto auto;
  }
  .xhdr-nav {
    display: none;
  }
  .xhdr-burger {
    display: flex;
  }
  .xtourn-grid {
    grid-template-columns: 1fr;
  }
  .xapp-grid {
    grid-template-columns: 1fr;
  }
  .xftr-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .xftr-top > div:first-child {
    grid-column: 1/-1;
  }
  .xrev-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .xhero {
    min-height: 420px;
  }
  .xhero-stat {
    gap: 20px;
  }
  .xgames-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .xrev-grid {
    grid-template-columns: 1fr;
  }
  .xcontent-body {
    padding: 22px 20px;
  }
  .xrev-form {
    padding: 22px 20px;
  }
  .xftr-top {
    grid-template-columns: 1fr;
  }
  .xwidget {
    flex-direction: column;
    padding: 16px;
    text-align: center;
  }
  .xwidget-close {
    top: 10px;
    transform: none;
  }
  .x7k-section {
    padding: 48px 0;
  }
}
@media (max-width: 900px) {
  .xtourn-grid {
    display: block;
  }
  .xslider-track.tourn-track {
    display: flex;
    gap: 20px;
  }
  .xtourn-card {
    min-width: 80vw;
    flex-shrink: 0;
  }
  .xslider-nav {
    display: flex;
  }
  .xgames-slider-wrap .xslider-track {
    display: flex;
  }
  .xgames-slider-wrap .xgame-card {
    min-width: 200px;
    flex-shrink: 0;
  }
}

.xhero-slider-wrap {
  position: relative;
  overflow: hidden;
  height: 520px;
  background: var(--bg);
}
.xhero-slides {
  display: flex;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.77, 0, 0.175, 1);
}
.xhero-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.xhero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.xhero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(17, 13, 14, 0.93) 35%,
    rgba(69, 11, 23, 0.7)
  );
}
.xhero-dots {
  position: absolute;
  bottom: 28px;
  left: 60px;
  display: flex;
  gap: 8px;
  z-index: 5;
}
.xhero-dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.xhero-dot.is-active {
  background: var(--btn-reg);
  width: 24px;
  border-radius: 4px;
}
.xhero-arrows {
  position: absolute;
  bottom: 22px;
  right: 60px;
  display: flex;
  gap: 10px;
  z-index: 5;
}
.xhero-arrow {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  line-height: 1;
}
.xhero-arrow:hover {
  background: rgba(255, 255, 255, 0.28);
}

.xbread {
  padding: 11px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}
.xbread a {
  color: var(--text-muted);
  transition: color 0.3s;
}
.xbread a:hover {
  color: var(--btn-login);
}
.xbread-sep {
  color: rgba(255, 255, 255, 0.2);
  margin: 0 2px;
}

.xinfo-block {
  background: #130e0f;
}
.xinfo-table td:first-child {
  min-width: 160px;
}
.xinfo-table td:last-child {
  color: var(--text);
}

.xmirrors-block {
  background: linear-gradient(180deg, #130e0f 0%, var(--bg) 100%);
}
.xmirrors-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.xmirror-time-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 204, 113, 0.08);
  border: 1px solid rgba(46, 204, 113, 0.25);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.83rem;
  color: #4dce7a;
}
.xmirror-dot {
  width: 8px;
  height: 8px;
  background: #2ecc71;
  border-radius: 50%;
  flex-shrink: 0;
  animation: xpulse 1.5s infinite;
}
.xmirror-upd-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.xmirror-link {
  color: var(--btn-reg);
  font-weight: 700;
  font-size: 0.92rem;
}
.xmirror-link:hover {
  color: var(--btn-reg-hover);
}
.xmirror-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #4dce7a;
  font-size: 0.85rem;
  font-weight: 600;
}
.xmirror-status::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: #2ecc71;
  border-radius: 50%;
}
.xmirror-badge {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}
.xmirror-badge-main {
  background: rgba(228, 184, 74, 0.15);
  color: var(--gold);
  border: 1px solid rgba(228, 184, 74, 0.3);
}
.xmirror-badge-alt {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.xmirrors-note {
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 16px 20px;
}
.xmirrors-note p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.xwheel-block {
  background: #130e0f;
}
.xwheel-inner {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.xwheel-canvas-wrap {
  position: relative;
  width: 320px;
  height: 320px;
  flex-shrink: 0;
}
#wf-canvas {
  border-radius: 50%;
  box-shadow:
    0 0 48px rgba(199, 5, 29, 0.22),
    0 0 0 4px var(--card-border);
}
.xwheel-pointer {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-top: 24px solid var(--btn-reg);
  filter: drop-shadow(0 3px 8px rgba(199, 5, 29, 0.6));
  z-index: 10;
}
.xwheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: var(--bg);
  border: 3px solid var(--card-border);
  border-radius: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-muted);
}
.xwheel-side {
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.xwheel-side-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
}
.xwheel-prizes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.xwheel-prizes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.xwheel-prize-ico {
  font-size: 1.1rem;
  flex-shrink: 0;
}
.xwheel-hint {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.xwheel-hint strong {
  color: var(--gold);
}
#wf-spin-btn {
  width: 100%;
  justify-content: center;
}
#wf-result {
  margin-top: 4px;
}
.xwheel-result-win {
  background: rgba(39, 174, 96, 0.08);
  border: 1px solid rgba(39, 174, 96, 0.3);
  border-radius: 12px;
  padding: 22px;
  text-align: center;
  animation: xfade-in 0.5s ease;
}
@keyframes xfade-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.xwheel-result-lose {
  background: rgba(199, 5, 29, 0.07);
  border: 1px solid rgba(199, 5, 29, 0.2);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  animation: xfade-in 0.5s ease;
}
.xwf-ico {
  font-size: 2rem;
  margin-bottom: 6px;
}
.xwf-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
}
.xwf-bonus {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.xwf-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.xauthor-block {
  background: var(--bg);
}
.xauthor-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--card-bg2);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.xauthor-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3px solid var(--card-border);
  object-fit: cover;
  flex-shrink: 0;
}
.xauthor-body {
  flex: 1;
}
.xauthor-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 3px;
}
.xauthor-role {
  font-size: 0.82rem;
  color: var(--btn-reg);
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.xauthor-role::before {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background: var(--btn-reg);
  border-radius: 1px;
  flex-shrink: 0;
}
.xauthor-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.xauthor-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.xauthor-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 0.83rem;
  color: var(--text-muted);
  transition: all 0.3s;
}
.xauthor-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 640px) {
  .xhero-slider-wrap {
    height: 340px;
  }
  .xhero-dot,
  .xhero-dots {
    left: 20px;
  }
  .xhero-arrows {
    right: 20px;
  }
  .xwheel-inner {
    gap: 28px;
  }
  .xwheel-canvas-wrap {
    width: 264px;
    height: 264px;
  }
  .xauthor-card {
    flex-direction: column;
  }
  .xauthor-avatar {
    align-self: flex-start;
  }
}
@media (max-width: 480px) {
  .xhero-slider-wrap {
    height: 300px;
  }
}

.xprocon-block {
  background: #130e0f;
}
.xprocon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.xprocon-col {
  background: var(--card-bg2);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.xprocon-col--pros {
  border-top: 3px solid #2ecc71;
}
.xprocon-pros {
  border-top: 3px solid #2ecc71;
}
.xprocon-cons {
  border-top: 3px solid var(--btn-reg);
}
.xprocon-col-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.xprocon-pros .xprocon-col-title {
  color: #4dce7a;
}
.xprocon-cons .xprocon-col-title {
  color: #f87171;
}
.xprocon-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.xprocon-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(242, 232, 232, 0.88);
}
.xprocon-ico {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  margin-top: 1px;
}
.xprocon-ico--pro {
  background: rgba(46, 204, 113, 0.18);
  color: #4dce7a;
}
.xprocon-ico--con {
  background: rgba(248, 113, 113, 0.18);
  color: #f87171;
}

.xvid-block {
  background: var(--bg);
}
.xvid-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  max-width: 880px;
  margin: 0 auto;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}
.xvid-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.xlive-block {
  background: #130e0f;
}
.xlive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.xlive-slider {
  display: none;
  overflow-x: auto;
  gap: 16px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}
.xlive-slider::-webkit-scrollbar {
  height: 4px;
}
.xlive-slider::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
}
.xlive-slider::-webkit-scrollbar-thumb {
  background: var(--btn-reg);
  border-radius: 2px;
}
.xlive-card {
  background: var(--card-bg2);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform var(--tr),
    box-shadow var(--tr);
  position: relative;
  display: flex;
  flex-direction: column;
}
.xlive-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.xlive-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #2a1520, #1a0e14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.xlive-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--btn-reg);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.xlive-card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.xlive-card-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
}
.xlive-card-provider {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.xlive-card-btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.xdemo-block {
  background: var(--bg);
}
.xdemo-inner {
  max-width: 900px;
  margin: 0 auto;
}
.xdemo-wrap {
  border-radius: var(--radius-lg);
  aspect-ratio: 16/9;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  background: #0a0608;
  margin-bottom: 24px;
}
.xdemo-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.xdemo-cta {
  background: var(--card-bg2);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.xdemo-cta p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 500px;
}
.xdemo-cta p strong {
  color: var(--gold);
}

.xfaq-block {
  background: #130e0f;
}
.xfaq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}
.xfaq-item {
  background: var(--card-bg2);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--tr);
}
.xfaq-item.is-open {
  border-color: rgba(199, 5, 29, 0.45);
}
.xfaq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text);
  transition: color var(--tr);
}
.xfaq-q:hover {
  color: #fff;
}
.xfaq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(199, 5, 29, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform var(--tr),
    background var(--tr);
  color: var(--text-muted);
}
.xfaq-item.is-open .xfaq-icon {
  transform: rotate(180deg);
  background: rgba(199, 5, 29, 0.35);
  color: #fff;
}
.xfaq-a {
  display: none;
  padding: 0 22px 20px;
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(242, 208, 208, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.xfaq-a p {
  margin-top: 14px;
}
.xfaq-item.is-open .xfaq-a {
  display: block;
}

.xftr-top {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 36px;
  padding: 44px 0 32px;
}
.xftr-logo {
  display: inline-block;
  margin-bottom: 14px;
}
.xftr-logo img {
  height: 36px;
  width: auto;
  border-radius: 6px;
}

@media (max-width: 900px) {
  .xprocon-grid {
    grid-template-columns: 1fr;
  }
  .xlive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .xftr-top {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .xftr-top > div:first-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 640px) {
  .xlive-grid {
    display: none;
  }
  .xlive-slider {
    display: flex;
  }
  .xlive-slider .xlive-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
  }
  .xdemo-cta {
    flex-direction: column;
    text-align: center;
  }
  .xftr-top {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .xdemo-cta {
    padding: 18px 16px;
  }

  .xdemo-cta .xbtn {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.88rem;
    white-space: normal;
    line-height: 1.3;
    min-height: 44px;
  }
}
@media (max-width: 640px) {
  .xdemo-cta {
    padding: 18px 12px;
  }

  .xdemo-cta p {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }

  .xdemo-cta .xbtn-lg {
    width: 100%;
    padding: 11px 14px;
    font-size: 0.82rem;
    white-space: normal;
    line-height: 1.35;
    height: auto;
    min-height: 42px;
    text-align: center;
    word-wrap: break-word;
  }
}
