:root {
  --c-bg: #1b2b38;
  --c-bg-alt: #162230;
  --c-bg-card: #1e3040;
  --c-bg-card2: #22364a;
  --c-accent: #dbfc4f;
  --c-accent-hover: #c8f020;
  --c-btn-login: #1b2c3d;
  --c-btn-login-hover: #243d52;
  --c-text: #e8f0f7;
  --c-text-muted: #8fa8bf;
  --c-text-dim: #5a7a94;
  --c-border: #2d4a62;
  --c-border-light: #3a5a72;
  --c-header: #12202c;
  --c-success: #4caf50;
  --c-danger: #e53935;
  --c-gold: #f5c842;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-btn: 0 2px 12px rgba(219, 252, 79, 0.25);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: "Inter", "Open Sans", sans-serif;
  --font-heading: "Montserrat", "Kanit", sans-serif;
  --font-mono: "Roboto Mono", monospace;
}

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

html {
  scroll-behavior: smooth;
  background: var(--c-bg);
}

body {
  font-family: var(--font-sans);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--c-accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--c-accent-hover);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--c-text);
}

.xp-wrapper {
  display: grid;
  min-height: 100vh;
  grid-template-rows: auto 1fr auto;
}

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

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

.xp-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--c-text);
  text-align: center;
  margin-bottom: 12px;
}

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

.xp-badge {
  display: inline-block;
  background: rgba(219, 252, 79, 0.12);
  color: var(--c-accent);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(219, 252, 79, 0.25);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.xp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.xp-btn-primary {
  background: var(--c-accent);
  color: #0d1a24;
  box-shadow: var(--shadow-btn);
}
.xp-btn-primary:hover {
  background: var(--c-accent-hover);
  color: #0d1a24;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(219, 252, 79, 0.4);
}

.xp-btn-secondary {
  background: var(--c-btn-login);
  color: var(--c-text);
  border: 1px solid var(--c-border-light);
}
.xp-btn-secondary:hover {
  background: var(--c-btn-login-hover);
  color: var(--c-text);
  border-color: var(--c-accent);
  transform: translateY(-2px);
}

.xp-btn-lg {
  font-size: 1.1rem;
  padding: 16px 40px;
  border-radius: var(--radius-lg);
}

.xp-btn-sm {
  font-size: 0.82rem;
  padding: 8px 18px;
}

.xp-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--c-header);
  border-bottom: 1px solid var(--c-border);
  backdrop-filter: blur(12px);
}

.xp-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 14px 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.xp-header__logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.xp-header__logo img {
  height: 38px;
  width: auto;
}

.xp-header__logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--c-text);
  letter-spacing: -0.02em;
}
.xp-header__logo-text span {
  color: var(--c-accent);
}

.xp-header__nav ul {
  display: flex;
  list-style: none;
  gap: 6px;
  align-items: center;
}

.xp-header__nav a {
  color: var(--c-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
}
.xp-header__nav a:hover {
  color: var(--c-text);
  background: rgba(255, 255, 255, 0.06);
}

.xp-header__online {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: var(--c-text-muted);
  white-space: nowrap;
}

.xp-header__online-dot {
  width: 8px;
  height: 8px;
  background: #4cdd80;
  border-radius: 50%;
  box-shadow: 0 0 6px #4cdd80;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.xp-header__online-count {
  font-weight: 700;
  color: #4cdd80;
}

.xp-header__btns {
  display: flex;
  align-items: center;
  gap: 8px;
}

.xp-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
  order: 10;
}
.xp-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--transition);
}
.xp-burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.xp-burger.active span:nth-child(2) {
  opacity: 0;
}
.xp-burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.xp-mobile-menu {
  display: none;
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 16px 20px 20px;
}
.xp-mobile-menu.active {
  display: block;
}

.xp-mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.xp-mobile-menu ul a {
  display: block;
  color: var(--c-text-muted);
  font-size: 0.95rem;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.xp-mobile-menu ul a:hover {
  color: var(--c-text);
  background: rgba(255, 255, 255, 0.06);
}

.xp-hero {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  display: flex;
  align-items: center;
}

.xp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.xp-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.8);
}

.xp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(27, 43, 56, 0.92) 35%,
    rgba(27, 43, 56, 0.5) 100%
  );
  z-index: 1;
}

.xp-hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 80px 0 80px;
}

.xp-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(219, 252, 79, 0.12);
  border: 1px solid rgba(219, 252, 79, 0.3);
  color: var(--c-accent);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.xp-hero__tag::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--c-accent);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

.xp-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 16px;
}
.xp-hero__title span {
  color: var(--c-accent);
}

.xp-hero__subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: #b0c8dc;
  margin-bottom: 32px;
  line-height: 1.6;
}

.xp-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.xp-hero__bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245, 200, 66, 0.1);
  border: 1px solid rgba(245, 200, 66, 0.3);
  border-radius: var(--radius-md);
  padding: 10px 18px;
  font-size: 0.85rem;
  color: var(--c-gold);
  font-weight: 600;
  margin-top: 24px;
}

.xp-hero__bonus-badge svg {
  flex-shrink: 0;
}

.xp-screenshots {
  background: var(--c-bg-alt);
  padding: 72px 0;
}

.xp-screenshots__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.xp-screenshot-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-card);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.xp-screenshot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.xp-screenshot-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.xp-screenshot-card:hover img {
  transform: scale(1.04);
}

.xp-screenshot-card__label {
  background: var(--c-bg-card);
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--c-text-muted);
  font-weight: 500;
}

.xp-winners {
  padding: 72px 0;
  background: var(--c-bg);
}

.xp-winners__table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.xp-winners__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  background: var(--c-bg-card);
}

.xp-winners__table thead tr {
  background: var(--c-bg-card2);
}

.xp-winners__table th {
  padding: 14px 20px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border-bottom: 2px solid var(--c-border);
}

.xp-winners__table td {
  padding: 13px 20px;
  text-align: left;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(45, 74, 98, 0.5);
  color: var(--c-text);
}

.xp-winners__table tbody tr {
  transition: background var(--transition);
}
.xp-winners__table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.xp-winners__table tbody tr:last-child td {
  border-bottom: none;
}

.xp-rank {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.88rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-bg-alt);
  color: var(--c-text-dim);
}
.xp-rank--1 {
  background: linear-gradient(135deg, #f5c842, #e8a800);
  color: #0d1a24;
}
.xp-rank--2 {
  background: linear-gradient(135deg, #b0bec5, #78909c);
  color: #0d1a24;
}
.xp-rank--3 {
  background: linear-gradient(135deg, #cd7f32, #a0522d);
  color: #fff;
}

.xp-winner-amount {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--c-accent);
}

.xp-winner-game {
  color: var(--c-text-muted);
  font-size: 0.84rem;
}

.xp-mirrors {
  background: var(--c-bg-alt);
  padding: 72px 0;
}

.xp-mirrors__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.xp-mirrors__datetime {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--c-text-muted);
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  padding: 8px 16px;
  border-radius: var(--radius-md);
}

.xp-mirrors__datetime-time {
  color: var(--c-accent);
  font-weight: 700;
  font-family: var(--font-mono);
}

.xp-mirrors__table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.xp-mirrors__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  background: var(--c-bg-card);
}

.xp-mirrors__table th {
  padding: 14px 20px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  background: var(--c-bg-card2);
  border-bottom: 2px solid var(--c-border);
}

.xp-mirrors__table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(45, 74, 98, 0.5);
  color: var(--c-text);
}

.xp-mirrors__table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}
.xp-mirrors__table tbody tr:last-child td {
  border-bottom: none;
}

.xp-mirrors__link {
  color: var(--c-accent);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition);
  font-family: var(--font-mono);
  font-size: 0.88rem;
}
.xp-mirrors__link:hover {
  color: var(--c-accent-hover);
}

.xp-status-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
}
.xp-status-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4cdd80;
  box-shadow: 0 0 5px #4cdd80;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}
.xp-status-dot--offline::before {
  background: #e53935;
  box-shadow: 0 0 5px #e53935;
  animation: none;
}

.xp-video {
  padding: 72px 0;
  background: var(--c-bg);
}

.xp-video__embed-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--c-border);
  aspect-ratio: 16/9;
  max-width: 880px;
  margin: 0 auto;
}

.xp-video__embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.xp-wheel-section {
  background: var(--c-bg-alt);
  padding: 72px 0;
}

.xp-wheel-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.xp-wheel-canvas-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.xp-wheel-pointer {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 28px solid var(--c-accent);
  filter: drop-shadow(0 2px 6px rgba(219, 252, 79, 0.5));
  z-index: 10;
}

#xp-wheel-canvas {
  border-radius: 50%;
  box-shadow:
    0 0 40px rgba(219, 252, 79, 0.2),
    0 0 80px rgba(0, 0, 0, 0.4);
  border: 4px solid var(--c-border-light);
  max-width: 100%;
  height: auto;
}

.xp-wheel-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.xp-wheel-info h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.xp-wheel-result {
  min-height: 80px;
  background: var(--c-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--c-text-muted);
  text-align: center;
  transition: all var(--transition);
}

.xp-wheel-result.xp-wheel-win {
  background: rgba(76, 221, 128, 0.1);
  border-color: #4cdd80;
  color: #4cdd80;
  font-weight: 700;
  font-size: 1.05rem;
}

.xp-wheel-result.xp-wheel-loss {
  background: rgba(229, 57, 53, 0.08);
  border-color: #e53935;
  color: #e88;
}

.xp-content-section {
  padding: 72px 0;
  background: var(--c-bg);
}

.xp-content-inner {
  max-width: 860px;
  margin: 0 auto;
  background: var(--c-bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--c-border);
  padding: 48px 52px;
  box-shadow: var(--shadow-card);
}

.xp-content-inner h1,
.xp-content-inner h2,
.xp-content-inner h3,
.xp-content-inner h4,
.xp-content-inner h5 {
  font-family: var(--font-heading);
  color: var(--c-text);
  margin-top: 1.8em;
  margin-bottom: 0.6em;
  line-height: 1.3;
}
.xp-content-inner h1 {
  font-size: 2rem;
}
.xp-content-inner h2 {
  font-size: 1.55rem;
}
.xp-content-inner h3 {
  font-size: 1.25rem;
  color: var(--c-accent);
}
.xp-content-inner h4 {
  font-size: 1.05rem;
}

.xp-content-inner p {
  font-size: 0.97rem;
  color: #c5d8e8;
  line-height: 1.75;
  margin-bottom: 1em;
}

.xp-content-inner ul,
.xp-content-inner ol {
  padding-left: 24px;
  margin-bottom: 1em;
  color: #c5d8e8;
  line-height: 1.7;
}

.xp-content-inner li {
  margin-bottom: 0.4em;
}

.xp-content-inner table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.4em;
  font-size: 0.92rem;
  text-align: left;
}
.xp-content-inner table th {
  background: var(--c-bg-card2);
  padding: 11px 16px;
  color: var(--c-text-muted);
  font-weight: 700;
  border: 1px solid var(--c-border);
  text-align: left;
}
.xp-content-inner table td {
  padding: 10px 16px;
  border: 1px solid var(--c-border);
  color: #c5d8e8;
}
.xp-content-inner table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.xp-content-inner a {
  color: var(--c-accent);
}
.xp-content-inner a:hover {
  color: var(--c-accent-hover);
}

.xp-content-inner blockquote {
  border-left: 3px solid var(--c-accent);
  padding: 12px 20px;
  margin: 1.4em 0;
  background: rgba(219, 252, 79, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--c-text-muted);
  font-style: italic;
}

.xp-content-inner strong {
  color: var(--c-text);
}
.xp-content-inner code {
  background: rgba(219, 252, 79, 0.1);
  color: var(--c-accent);
  padding: 2px 7px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.88em;
}

.xp-content-placeholder {
  padding: 40px 0;
  text-align: center;
  color: var(--c-text-dim);
  border: 2px dashed var(--c-border);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
}

.xp-author {
  padding: 72px 0;
  background: var(--c-bg-alt);
}

.xp-author__card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: start;
  max-width: 760px;
  margin: 0 auto;
  background: var(--c-bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--c-border);
  padding: 36px 40px;
  box-shadow: var(--shadow-card);
}

.xp-author__photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-border-light);
  flex-shrink: 0;
}

.xp-author__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.xp-author__role {
  font-size: 0.85rem;
  color: var(--c-accent);
  font-weight: 600;
  margin-bottom: 14px;
}

.xp-author__bio {
  font-size: 0.93rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

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

.xp-author__social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-text-muted);
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--transition);
}
.xp-author__social-link:hover {
  color: var(--c-text);
  border-color: var(--c-accent);
  background: rgba(219, 252, 79, 0.07);
}

.xp-footer {
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 52px 0 32px;
}

.xp-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.xp-footer__logo-area {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.xp-footer__logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--c-text);
}
.xp-footer__logo-text span {
  color: var(--c-accent);
}

.xp-footer__desc {
  font-size: 0.85rem;
  color: var(--c-text-dim);
  line-height: 1.6;
  max-width: 280px;
}

.xp-footer__menu h4,
.xp-footer__providers h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.xp-footer__menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.xp-footer__menu ul a {
  color: var(--c-text-muted);
  font-size: 0.88rem;
  transition: color var(--transition);
  text-decoration: none;
}
.xp-footer__menu ul a:hover {
  color: var(--c-accent);
}

.xp-footer__providers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.xp-footer__provider-tag {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-text-muted);
  letter-spacing: 0.03em;
}

.xp-footer__payments {
  margin-bottom: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--c-border);
}

.xp-footer__payments h4 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.xp-footer__payments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.xp-payment-badge {
  background: var(--c-bg-card2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-text-muted);
  letter-spacing: 0.04em;
}

.xp-footer__bottom {
  border-top: 1px solid var(--c-border);
  padding-top: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.xp-footer__copy {
  font-size: 0.8rem;
  color: var(--c-text-dim);
  line-height: 1.5;
}

.xp-footer__legal {
  font-size: 0.75rem;
  color: var(--c-text-dim);
  max-width: 500px;
  line-height: 1.5;
  text-align: right;
}

.xp-widget {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--c-header);
  border: 1px solid rgba(219, 252, 79, 0.35);
  border-radius: var(--radius-xl);
  padding: 14px 22px;
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.5),
    0 0 24px rgba(219, 252, 79, 0.12);
  animation: widget-slide-in 0.5s 0.8s both;
  max-width: calc(100vw - 32px);
}

@keyframes widget-slide-in {
  from {
    transform: translateX(-50%) translateY(80px);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

.xp-widget__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  white-space: nowrap;
}

.xp-widget__label {
  font-size: 0.72rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
}

.xp-widget__bonus {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--c-accent);
}

.xp-widget__close {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--c-text-dim);
  font-size: 1.1rem;
  padding: 2px 4px;
  margin-left: 4px;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
  flex-shrink: 0;
}
.xp-widget__close:hover {
  color: var(--c-text);
}

.xp-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.xp-slider__track {
  display: flex;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}
.xp-slider__track > * {
  flex: 0 0 100%;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}
.xp-slider__slide {
  padding: 0 4px;
  box-sizing: border-box;
}

.xp-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.xp-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-border);
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
  border: none;
}
.xp-slider__dot.active {
  background: var(--c-accent);
  transform: scale(1.3);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.xp-anim-fade-up {
  animation: fade-up 0.55s ease both;
}

.xp-anim-delay-1 {
  animation-delay: 0.1s;
}
.xp-anim-delay-2 {
  animation-delay: 0.2s;
}
.xp-anim-delay-3 {
  animation-delay: 0.3s;
}

.wp-block-group {
  display: block;
}
.wp-block-separator {
  display: none;
}
.wp-block-spacer {
  display: block;
}
.wp-caption {
  display: inline-block;
}
.aligncenter {
  margin: 0 auto;
}
.alignright {
  float: right;
}
.alignleft {
  float: left;
}
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.entry-content {
  display: block;
}
.post-thumbnail {
  display: block;
}
.site-branding {
  display: flex;
  align-items: center;
}
.elementor-widget {
  display: block;
}
.elementor-section {
  display: block;
}
.wp-site-blocks {
  display: block;
}

@media (max-width: 1024px) {
  .xp-header__inner {
    grid-template-columns: auto 1fr auto auto;
  }
  .xp-header__nav {
    display: none;
  }
  .xp-burger {
    display: flex;
  }
  .xp-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .xp-wheel-container {
    grid-template-columns: 1fr;
  }
  .xp-wheel-canvas-wrap {
    align-items: center;
  }
  .xp-wheel-info {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .xp-section-gap {
    padding: 48px 0;
  }
  .xp-screenshots__grid {
    display: block;
  }
  .xp-screenshots__grid .xp-screenshot-card {
    display: none;
  }
  .xp-screenshots__grid .xp-screenshot-card:first-child {
    display: block;
  }

  .xp-author__card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 28px 24px;
  }
  .xp-author__socials {
    justify-content: center;
  }
  .xp-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .xp-footer__legal {
    text-align: left;
  }
  .xp-footer__bottom {
    flex-direction: column;
  }
  .xp-widget {
    padding: 12px 16px;
    gap: 10px;
  }
  .xp-widget__bonus {
    font-size: 0.9rem;
  }
  .xp-hero__content {
    padding: 60px 0;
  }
  .xp-content-inner {
    padding: 28px 20px;
  }
  .xp-mirrors__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .xp-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .xp-btn-lg {
    width: 100%;
    justify-content: center;
  }
  .xp-header__btns .xp-btn {
    padding: 9px 14px;
    font-size: 0.78rem;
  }
}
