:root {
  --clr-bg: #1d1d1d;
  --clr-header: #8d0d0f;
  --clr-btn-dark: #363636;
  --clr-btn-green: #29b149;
  --clr-text: #f0f0f0;
  --clr-text-muted: #b0b0b0;
  --clr-card: #252525;
  --clr-card2: #2c2c2c;
  --clr-border: #3a3a3a;
  --clr-gold: #f5a623;
  --clr-accent: #c0392b;
  --radius: 10px;
  --radius-sm: 6px;
  --font-main: "Roboto", "Open Sans", Arial, Helvetica, sans-serif;
  --tr: 0.25s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: var(--clr-bg);
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.x9f2a-wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}

.b3k7p-section {
  padding: 60px 0;
}

.b3k7p-section + .b3k7p-section {
  margin-top: 0;
}

.hd-root {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--clr-header);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hd-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  max-width: 1240px;
  margin: 0 auto;
}

.hd-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

.hd-nav {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.hd-nav a {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: background var(--tr);
}

.hd-nav a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hd-online {
  font-size: 12px;
  color: #ffd08a;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.hd-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #29b149;
  animation: pulse-dot 1.4s infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(41, 177, 73, 0.6);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(41, 177, 73, 0);
  }
}

.hd-btns {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition:
    transform var(--tr),
    box-shadow var(--tr),
    filter var(--tr);
  text-align: center;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  filter: brightness(1.1);
}

.btn:active {
  transform: translateY(0);
}

.btn-login {
  background: var(--clr-btn-dark);
  color: #fff;
  padding: 8px 18px;
}

.btn-signup {
  background: var(--clr-btn-green);
  color: #fff;
  padding: 8px 18px;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: var(--radius);
}

.btn-bonus {
  background: var(--clr-btn-green);
  color: #fff;
  padding: 8px 18px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: transparent;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hd-mobile-nav {
  display: block;
  flex-direction: column;
  background: var(--clr-header);
  padding: 0 16px;
  overflow: hidden;
  max-height: 0;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
  position: relative;
}

.hd-mobile-nav.open {
  max-height: 500px;
  padding: 16px;
}

.hd-mobile-nav a {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
}

.hd-mobile-nav a:last-child {
  border-bottom: none;
}

.hd-mobile-nav a:hover {
  color: var(--clr-gold);
  padding-left: 8px;
}

.hero-block {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-slide {
  display: none;
  position: absolute;
  inset: 0;
  animation: fadeSlide 0.6s ease;
}

.hero-slide.active {
  display: block;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: scale(1.03);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(141, 13, 15, 0.72) 0%,
    rgba(29, 29, 29, 0.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 16px;
  max-width: 680px;
}

.hero-content h1 {
  font-size: clamp(26px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: clamp(15px, 2.5vw, 20px);
  color: #ffe0b2;
  margin-bottom: 28px;
  line-height: 1.5;
}

.hero-badge {
  display: inline-block;
  background: var(--clr-gold);
  color: #1a1a1a;
  font-weight: 800;
  font-size: 13px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: background var(--tr);
  padding: 0;
}

.hero-dot.active {
  background: #fff;
}

.hero-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 12px;
  pointer-events: none;
}

.hero-arrow {
  pointer-events: all;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(141, 13, 15, 0.7);
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--tr);
}

.hero-arrow:hover {
  background: var(--clr-header);
}

.bc-block {
  background: #252525;
  border-bottom: 1px solid var(--clr-border);
}

.bc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  padding: 10px 0;
  font-size: 13px;
  color: var(--clr-text-muted);
}

.bc-list a {
  color: var(--clr-gold);
  transition: color var(--tr);
}

.bc-list a:hover {
  color: #fff;
}

.bc-list span.sep {
  color: var(--clr-border);
}

.sec-title {
  font-size: clamp(20px, 3.5vw, 32px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.sec-sub {
  font-size: 15px;
  color: var(--clr-text-muted);
  margin-bottom: 32px;
  line-height: 1.55;
}

.sec-head {
  margin-bottom: 36px;
}

.scr-wrapper {
  position: relative;
  width: 100%;
}

.scr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.scr-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--clr-card);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
  transition: transform var(--tr);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.scr-card:hover {
  transform: translateY(-4px);
}

.scr-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.scr-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.7) 50%,
    transparent
  );
  color: #fff;
  font-size: 14px;
  padding: 50px 16px 16px;
  font-weight: 500;
  line-height: 1.4;
}

.winners-block {
  background: var(--clr-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--clr-border);
}

.winners-table {
  width: 100%;
  border-collapse: collapse;
}

.winners-table th {
  background: var(--clr-header);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  text-align: left;
}

.winners-table td {
  padding: 9px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--clr-border);
}

.winners-table tr:last-child td {
  border-bottom: none;
}

.winners-table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.03);
}

.winners-table tr:hover td {
  background: rgba(141, 13, 15, 0.12);
}

.w-rank {
  font-weight: 700;
  color: var(--clr-gold);
  min-width: 32px;
}

.w-top1 {
  color: #ffd700;
}

.w-top2 {
  color: #c0c0c0;
}

.w-top3 {
  color: #cd7f32;
}

.w-amount {
  color: #29b149;
  font-weight: 700;
  white-space: nowrap;
}

.tourn-wrapper {
  position: relative;
  width: 100%;
}

.tourn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  align-items: stretch;
}

.tourn-card {
  background: var(--clr-card);
  border-radius: var(--radius);
  border: 1px solid var(--clr-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--tr),
    box-shadow var(--tr);
  width: 100%;
  height: 100%;
  min-height: 380px;
}

.tourn-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(141, 13, 15, 0.35);
}

.tourn-head {
  background: var(--clr-header);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.tourn-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.tourn-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.tourn-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tourn-desc {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.6;
  flex: 1;
}

.tourn-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: auto;
  padding-top: 8px;
}

.tourn-prize {
  background: rgba(41, 177, 73, 0.18);
  color: #29b149;
  font-weight: 700;
  font-size: 14px;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(41, 177, 73, 0.3);
  white-space: nowrap;
}

.tourn-timer {
  font-size: 13px;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.tourn-timer-val {
  color: #fff;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.tourn-footer {
  padding: 12px 16px;
  border-top: 1px solid var(--clr-border);
  flex-shrink: 0;
}

.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.app-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.app-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 320px;
}

.app-table td {
  padding: 11px 16px;
  font-size: 14px;
  border: 1px solid var(--clr-border);
  vertical-align: top;
}

.app-table tr:nth-child(odd) td:first-child {
  background: rgba(141, 13, 15, 0.18);
  color: #ffc8c8;
  font-weight: 600;
}

.app-table tr:nth-child(even) td:first-child {
  background: rgba(0, 0, 0, 0.25);
  color: #ffc8c8;
  font-weight: 600;
}

.app-dl-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.app-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-store {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--clr-card2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 12px 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition:
    background var(--tr),
    transform var(--tr);
}

.btn-store:hover {
  background: #333;
  transform: translateY(-2px);
}

.btn-store .store-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.btn-store .store-sub {
  font-size: 11px;
  color: var(--clr-text-muted);
  font-weight: 400;
}

.btn-apk {
  background: rgba(41, 177, 73, 0.2);
  border-color: rgba(41, 177, 73, 0.4);
}

.btn-apk:hover {
  background: rgba(41, 177, 73, 0.3);
}

.wheel-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 100%;
  padding: 0 16px;
}

.wheel-container {
  position: relative;
  width: 320px;
  height: 320px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wheel-canvas {
  border-radius: 50%;
  display: block;
  filter: drop-shadow(0 0 18px rgba(245, 166, 35, 0.5));
  width: 100%;
  height: 100%;
}

.wheel-pointer {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 28px solid var(--clr-gold);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
  z-index: 10;
}

.wheel-spin-btn {
  background: linear-gradient(135deg, var(--clr-gold), #e8920a);
  color: #1a1a1a;
  font-weight: 800;
  font-size: 16px;
  padding: 14px 48px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition:
    transform var(--tr),
    box-shadow var(--tr);
  box-shadow: 0 4px 18px rgba(245, 166, 35, 0.5);
  letter-spacing: 0.5px;
  width: auto;
  max-width: 100%;
}

.wheel-spin-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.7);
}

.wheel-spin-btn:active {
  transform: translateY(0);
}

.wheel-spin-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.wheel-result {
  text-align: center;
  padding: 20px 32px;
  background: var(--clr-card);
  border-radius: var(--radius);
  border: 1px solid var(--clr-border);
  max-width: 400px;
  width: 100%;
  animation: fadeIn 0.4s ease;
}

.wheel-result.win {
  border-color: #29b149;
  background: rgba(41, 177, 73, 0.1);
}

.wheel-result.lose {
  border-color: var(--clr-accent);
}

.wheel-result h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.wheel-result.win h3 {
  color: #29b149;
}

.wheel-result.lose h3 {
  color: var(--clr-accent);
}

.wheel-result p {
  color: var(--clr-text-muted);
  font-size: 15px;
  margin-bottom: 14px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-block {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 32px;
}

.content-block h1,
.content-block h2,
.content-block h3,
.content-block h4 {
  color: #fff;
  margin: 1.4em 0 0.6em;
  line-height: 1.3;
}

.content-block h1 {
  font-size: 2em;
}

.content-block h2 {
  font-size: 1.6em;
  border-bottom: 2px solid var(--clr-header);
  padding-bottom: 0.3em;
}

.content-block h3 {
  font-size: 1.3em;
}

.content-block h4 {
  font-size: 1.1em;
}

.content-block p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--clr-text);
  margin: 0.8em 0;
}

.content-block ul,
.content-block ol {
  margin: 0.8em 0 0.8em 1.5em;
  padding: 0;
}

.content-block li {
  font-size: 15px;
  line-height: 1.6;
  margin: 0.4em 0;
  color: var(--clr-text);
}

.content-block ul li {
  list-style: disc;
}

.content-block ol li {
  list-style: decimal;
}

.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
  overflow-x: auto;
  display: block;
}

.content-block table th {
  background: var(--clr-header);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-size: 14px;
}

.content-block table td {
  padding: 9px 14px;
  border: 1px solid var(--clr-border);
  font-size: 14px;
  text-align: left;
}

.content-block table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.04);
}

.content-block a {
  color: var(--clr-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.content-block blockquote {
  border-left: 4px solid var(--clr-header);
  padding: 0.6em 1.2em;
  margin: 1em 0;
  background: rgba(141, 13, 15, 0.12);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--clr-text-muted);
}

.content-block strong {
  color: #fff;
  font-weight: 700;
}

.content-block em {
  color: var(--clr-gold);
}

.content-block code {
  background: #111;
  color: #e8a87c;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 13px;
}

.content-block hr {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: 1.5em 0;
}

.content-block img {
  border-radius: var(--radius-sm);
  margin: 1em 0;
}

.author-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 28px;
  align-items: start;
}

.author-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--clr-header);
}

.author-name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.author-role {
  font-size: 13px;
  color: var(--clr-gold);
  margin-bottom: 10px;
  font-weight: 600;
}

.author-bio {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.author-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.author-social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--clr-card2);
  border: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 20px;
  transition:
    border-color var(--tr),
    color var(--tr);
}

.author-social-link:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

.ft-root {
  background: var(--clr-header);
  margin-top: 0;
  padding: 40px 0 20px;
}

.ft-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}

.ft-top {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.ft-logo img {
  height: 44px;
  border-radius: 4px;
}

.ft-nav-title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.ft-nav a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 7px;
  transition: color var(--tr);
}

.ft-nav a:hover {
  color: #fff;
}

.ft-payments {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  margin-bottom: 16px;
}

.ft-payments-title,
.ft-providers-title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 10px;
}

.ft-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.ft-logo-badge {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

.ft-providers {
  margin-bottom: 24px;
}

.ft-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 16px;
  text-align: center;
}

.ft-copy p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 6px;
}

.ft-legal {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.5;
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, var(--clr-header) 0%, #6b0709 100%);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -3px 20px rgba(0, 0, 0, 0.5);
}

.sw-text {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  flex: 1;
}

.sw-text span {
  color: var(--clr-gold);
  font-weight: 800;
}

.sw-btn {
  background: var(--clr-btn-green);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  padding: 10px 28px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  flex-shrink: 0;
  transition:
    transform var(--tr),
    box-shadow var(--tr);
}

.sw-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(41, 177, 73, 0.6);
}

.sw-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  transition: color var(--tr);
  flex-shrink: 0;
}

.sw-close:hover {
  color: #fff;
}

.swiper-track {
  display: flex;
  transition: transform 0.4s ease;
  width: 100%;
}

.swiper-slide-item {
  flex: 0 0 100%;
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.swiper-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.swiper-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.swiper-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.swiper-dot.active {
  background: var(--clr-gold);
  transform: scale(1.2);
}

.c-sep {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--clr-header),
    transparent
  );
  margin: 0;
}

.badge-new {
  display: inline-block;
  background: var(--clr-header);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 6px;
  vertical-align: middle;
}

.tag-pill {
  display: inline-block;
  background: rgba(141, 13, 15, 0.25);
  color: #ffc8c8;
  border: 1px solid rgba(141, 13, 15, 0.4);
  font-size: 12px;
  padding: 3px 9px;
  border-radius: 12px;
}

.wp-widget-area {
  display: none;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

@media (max-width: 900px) {
  .hd-inner {
    grid-template-columns: auto 1fr auto;
  }

  .hd-nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .scr-grid {
    display: block;
    overflow: hidden;
  }

  .scr-grid .swiper-track {
    display: flex;
  }

  .scr-grid .swiper-slide-item {
    flex: 0 0 100%;
    padding: 0;
  }

  .scr-card img {
    height: 220px;
  }

  .tourn-grid {
    display: block;
    overflow: hidden;
  }

  .tourn-grid .swiper-track {
    display: flex;
  }

  .tourn-grid .swiper-slide-item {
    flex: 0 0 100%;
    padding: 0;
  }

  .app-grid {
    grid-template-columns: 1fr;
  }

  .ft-top {
    grid-template-columns: 1fr 1fr;
  }

  .ft-top > *:first-child {
    grid-column: 1/-1;
  }

  .author-card {
    grid-template-columns: 80px 1fr;
    gap: 16px;
  }

  .author-photo {
    width: 72px;
    height: 72px;
  }
}

@media (max-width: 768px) {
  .wheel-wrap {
    gap: 20px;
    padding: 0 12px;
  }

  .wheel-container {
    width: 280px;
    height: 280px;
  }

  .wheel-pointer {
    top: -14px;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 24px solid var(--clr-gold);
  }

  .wheel-spin-btn {
    font-size: 15px;
    padding: 12px 36px;
  }

  .wheel-result {
    padding: 16px 24px;
    margin: 0 12px;
  }

  .wheel-result h3 {
    font-size: 20px;
  }

  .wheel-result p {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .hd-inner {
    grid-template-columns: auto 1fr auto auto;
    gap: 8px;
  }

  .hd-mobile-nav.open {
    max-height: 600px;
  }

  .hero-block {
    min-height: 380px;
  }

  .hero-content h1 {
    font-size: 22px;
  }

  .sticky-widget {
    flex-wrap: wrap;
    gap: 6px;
  }

  .sw-text {
    font-size: 12px;
    order: 0;
    width: 100%;
    flex: none;
  }

  .sw-btn {
    padding: 9px 20px;
    font-size: 13px;
    flex: 1;
  }

  .sw-close {
    order: -1;
    margin-left: auto;
  }

  .ft-top {
    grid-template-columns: 1fr;
  }

  .winners-table {
    font-size: 13px;
  }

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

  .app-btns {
    gap: 10px;
  }

  .author-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .author-socials {
    justify-content: center;
  }

  .scr-card img {
    height: 200px;
  }

  .scr-label {
    font-size: 13px;
    padding: 40px 12px 12px;
  }

  .tourn-desc {
    font-size: 13px;
  }

  .swiper-dot {
    width: 10px;
    height: 10px;
  }

  .wheel-wrap {
    gap: 16px;
  }

  .wheel-container {
    width: 260px;
    height: 260px;
  }

  .wheel-pointer {
    top: -12px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 20px solid var(--clr-gold);
  }

  .wheel-spin-btn {
    font-size: 14px;
    padding: 10px 28px;
  }
}

@media (max-width: 400px) {
  .wheel-wrap {
    padding: 0 8px;
  }

  .wheel-container {
    width: 240px;
    height: 240px;
  }

  .wheel-spin-btn {
    font-size: 13px;
    padding: 9px 24px;
  }

  .wheel-result {
    padding: 14px 20px;
  }
}

@media (min-width: 901px) {
  .scr-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .scr-grid .swiper-track {
    display: contents !important;
  }

  .scr-grid .swiper-slide-item {
    display: block !important;
    width: 100% !important;
  }

  .scr-wrapper .swiper-controls {
    display: none !important;
  }

  .tourn-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .tourn-grid .swiper-track {
    display: contents !important;
  }

  .tourn-grid .swiper-slide-item {
    display: block !important;
    width: 100% !important;
  }

  .tourn-wrapper .swiper-controls {
    display: none !important;
  }
}
