:root {
  --wm-red: #e30613;
  --wm-red-dark: #b8000d;
  --wm-black: #111111;
  --wm-white: #ffffff;
  --wm-bg: #f4f4f5;
  --wm-card: #ffffff;
  --wm-muted: #666666;
  --wm-border: #e3e3e6;
  --wm-blue-dark: #10284a;
  --radius: 20px;
  --radius-sm: 14px;
  --max: 1160px;
  --shadow: 0 8px 28px rgba(17, 17, 17, 0.08);
  --shadow-lg: 0 16px 40px rgba(17, 17, 17, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--wm-black);
  background: var(--wm-bg);
  line-height: 1.55;
}

a {
  color: inherit;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--wm-white);
  border-bottom: 1px solid var(--wm-border);
  box-shadow: 0 2px 12px rgba(17, 17, 17, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
  flex-shrink: 1;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

.brand .name {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.15;
  min-width: 0;
}

.brand .name strong {
  font-weight: 800;
  letter-spacing: 0.2px;
  color: var(--wm-black);
}

.brand .name span {
  font-size: 0.84rem;
  color: var(--wm-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--wm-black);
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  transition: color 0.15s ease, background 0.15s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--wm-red);
  background: rgba(227, 6, 19, 0.06);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  background: var(--wm-red);
  color: var(--wm-white);
  font-weight: 800;
  letter-spacing: 0.2px;
  box-shadow: 0 4px 14px rgba(227, 6, 19, 0.35);
  transition: transform 0.12s ease, background 0.12s ease, box-shadow 0.12s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.cta:hover {
  background: var(--wm-red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(227, 6, 19, 0.4);
}

.cta:active {
  transform: translateY(0);
}

.cta:focus-visible {
  outline: 3px solid rgba(227, 6, 19, 0.35);
  outline-offset: 2px;
}

.cta-full {
  width: 100%;
  margin-bottom: 12px;
}

/* Hero / Banner */
.wm-hero {
  padding: 24px 0 0;
}

.wm-hero-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 22px;
  outline: none;
}

.wm-hero-link:focus-visible {
  outline: 3px solid rgba(227, 6, 19, 0.45);
  outline-offset: 4px;
}

.wm-hero-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: clamp(260px, 32vw, 400px);
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 80% at 85% 30%, rgba(227, 6, 19, 0.55) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 15% 80%, rgba(227, 6, 19, 0.25) 0%, transparent 50%),
    linear-gradient(115deg, #0a0a0a 0%, #141414 40%, #1a0508 75%, #0d0d0d 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.wm-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
}

.wm-hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.55) 45%, rgba(10, 10, 10, 0.2) 100%),
    radial-gradient(ellipse 60% 100% at 0% 50%, rgba(227, 6, 19, 0.18) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.wm-hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 5vw, 48px) clamp(20px, 4vw, 44px);
  max-width: 620px;
}

.wm-hero-title {
  font-size: clamp(1.6rem, 4vw, 2.75rem);
  font-weight: 900;
  letter-spacing: 0.2px;
  margin: 0 0 12px;
  color: var(--wm-white);
  line-height: 1.12;
}

.wm-hero-subtitle {
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin: 0 0 22px;
  font-size: clamp(0.92rem, 2vw, 1.05rem);
  line-height: 1.5;
}

.wm-hero-subtitle strong {
  color: var(--wm-white);
}

.wm-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--wm-red);
  color: var(--wm-white);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  box-shadow: 0 4px 16px rgba(227, 6, 19, 0.45);
  transition: background 0.15s ease, transform 0.12s ease, box-shadow 0.15s ease;
  white-space: nowrap;
  max-width: 100%;
}

.wm-hero-link:hover .wm-hero-cta {
  background: var(--wm-red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(227, 6, 19, 0.5);
}

/* Promo strip */
.wm-promo-strip {
  margin-top: 32px;
  padding-bottom: 8px;
}

.wm-promo-list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.wm-promo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 88px;
  text-decoration: none;
  color: var(--wm-black);
  flex-shrink: 0;
  transition: transform 0.15s ease;
}

.wm-promo-card:hover,
.wm-promo-card:focus-visible {
  transform: translateY(-3px);
}

.wm-promo-card:focus-visible {
  outline: 3px solid rgba(227, 6, 19, 0.35);
  outline-offset: 3px;
  border-radius: 12px;
}

.wm-promo-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--wm-white);
  border: 2px solid var(--wm-border);
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 2px 8px rgba(17, 17, 17, 0.06);
}

.wm-promo-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wm-promo-card:hover .wm-promo-image,
.wm-promo-card:focus-visible .wm-promo-image {
  border-color: var(--wm-red);
  box-shadow: 0 4px 14px rgba(227, 6, 19, 0.2);
}

.wm-promo-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
  color: var(--wm-muted);
  max-width: 88px;
  transition: color 0.15s ease;
}

.wm-promo-card:hover .wm-promo-label,
.wm-promo-card:focus-visible .wm-promo-label {
  color: var(--wm-red);
}

/* Main layout */
main {
  padding: 32px 0 52px;
}

.wm-main-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.wm-welcome-section,
.wm-guide-section {
  width: 100%;
}

.card {
  border-radius: var(--radius);
  background: var(--wm-card);
  border: 1px solid var(--wm-border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-inner {
  padding: 22px;
}

.section-spaced {
  margin-top: 20px;
}

.section-title {
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.2px;
  margin: 0 0 12px;
  color: var(--wm-black);
}

.section-title--flush {
  margin: 0;
}

.soft {
  color: var(--wm-muted);
  margin: 0;
}

/* TOC */
.toc {
  border-radius: var(--radius-sm);
  background: var(--wm-bg);
  border: 1px solid var(--wm-border);
  border-left: 4px solid var(--wm-red);
  padding: 16px 18px;
  margin-bottom: 18px;
}

.toc .label {
  display: block;
  color: var(--wm-red);
  font-size: 0.82rem;
  margin-bottom: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Content */
.content {
  color: var(--wm-black);
}

.content h1,
.content h2,
.content h3,
.content h4 {
  color: var(--wm-black);
  font-weight: 900;
  line-height: 1.25;
  margin: 1.4em 0 0.6em;
}

.content h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.content h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
}

.content h3 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.content h4 {
  font-size: 1.05rem;
}

.content p {
  color: var(--wm-muted);
  margin: 0 0 14px;
}

.content ul,
.content ol {
  color: var(--wm-muted);
  margin: 0 0 14px;
  padding-left: 1.4em;
}

.content li {
  margin-bottom: 6px;
}

.content a {
  color: var(--wm-red);
  text-decoration: underline;
  text-decoration-color: rgba(227, 6, 19, 0.35);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.15s ease, color 0.15s ease;
}

.content a:hover,
.content a:focus-visible {
  color: var(--wm-red-dark);
  text-decoration-color: var(--wm-red);
}

.content strong {
  color: var(--wm-black);
  font-weight: 800;
}

/* Showcase sections */
.wm-showcase-section {
  background: #eef1f2;
  border-radius: 24px;
  padding: clamp(16px, 3vw, 24px);
}

.wm-showcase-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.wm-showcase-title {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 800;
  color: var(--wm-black);
  letter-spacing: 0.2px;
}

.wm-slider-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.wm-round-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--wm-white);
  border: 1px solid var(--wm-border);
  color: var(--wm-muted);
  text-decoration: none;
  font-size: 1.2rem;
  line-height: 1;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.wm-round-arrow:hover,
.wm-round-arrow:focus-visible {
  border-color: var(--wm-red);
  color: var(--wm-red);
  background: var(--wm-white);
}

.wm-round-arrow:focus-visible {
  outline: 3px solid rgba(227, 6, 19, 0.3);
  outline-offset: 2px;
}

.wm-deposit-banner {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  line-height: 0;
}

.wm-deposit-banner img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 160px;
  max-height: 280px;
  object-fit: cover;
  border-radius: 20px;
}

.wm-deposit-banner:focus-visible {
  outline: 3px solid rgba(227, 6, 19, 0.35);
  outline-offset: 3px;
}

.wm-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.wm-highlight-card {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  line-height: 0;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.wm-highlight-card img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 140px;
  object-fit: cover;
  border-radius: 20px;
}

.wm-highlight-card:hover,
.wm-highlight-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.1);
}

.wm-highlight-card:focus-visible {
  outline: 3px solid rgba(227, 6, 19, 0.35);
  outline-offset: 3px;
}

.wm-sport-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.wm-sport-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--wm-white);
  border: 1px solid var(--wm-border);
  color: var(--wm-muted);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.wm-sport-tab--active {
  background: var(--wm-red);
  border-color: var(--wm-red);
  color: var(--wm-white);
}

.wm-sport-tab:not(.wm-sport-tab--active):hover,
.wm-sport-tab:not(.wm-sport-tab--active):focus-visible {
  border-color: var(--wm-red);
  color: var(--wm-red);
}

.wm-sport-tab:focus-visible {
  outline: 3px solid rgba(227, 6, 19, 0.3);
  outline-offset: 2px;
}

.wm-live-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.wm-match-card {
  background: var(--wm-white);
  border-radius: 18px;
  border: 1px solid var(--wm-border);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(17, 17, 17, 0.04);
}

.wm-match-link {
  display: block;
  padding: 14px 14px 10px;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.wm-match-link:focus-visible {
  outline: 3px solid rgba(227, 6, 19, 0.3);
  outline-offset: -3px;
}

.wm-match-league {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--wm-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.wm-match-teams {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--wm-black);
  line-height: 1.35;
  padding-right: 52px;
}

.wm-live-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--wm-red);
  color: var(--wm-white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.wm-odds-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 10px 12px;
}

.wm-odd-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 44px;
  padding: 6px 8px;
  border-radius: 10px;
  background: #f4f6f7;
  border: 1px solid var(--wm-border);
  text-decoration: none;
  color: var(--wm-black);
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.12s ease;
}

.wm-odd-link:hover,
.wm-odd-link:focus-visible {
  border-color: var(--wm-red);
  background: rgba(227, 6, 19, 0.05);
  transform: translateY(-1px);
}

.wm-odd-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.25);
}

.wm-odd-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--wm-muted);
}

.wm-odd-value {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--wm-black);
}

.wm-collections-row,
.wm-slots-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.wm-collections-row::-webkit-scrollbar,
.wm-slots-row::-webkit-scrollbar {
  display: none;
}

.wm-collection-card,
.wm-slot-card {
  display: block;
  flex: 0 0 auto;
  text-decoration: none;
  border-radius: 18px;
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  line-height: 0;
}

.wm-collection-card {
  min-width: 140px;
  width: calc((100% - 70px) / 6);
}

.wm-collection-card img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 180px;
  object-fit: cover;
  border-radius: 18px;
}

.wm-slot-card {
  min-width: 120px;
  width: 132px;
}

.wm-slot-card img {
  display: block;
  width: 132px;
  height: 176px;
  object-fit: cover;
  border-radius: 16px;
}

.wm-collection-card:hover,
.wm-collection-card:focus-visible,
.wm-slot-card:hover,
.wm-slot-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.12);
}

.wm-collection-card:focus-visible,
.wm-slot-card:focus-visible {
  outline: 3px solid rgba(227, 6, 19, 0.35);
  outline-offset: 3px;
}

.bonus-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.badge {
  font-size: 0.78rem;
  color: var(--wm-white);
  background: var(--wm-red);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.bonus-text {
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 900;
  margin: 0 0 10px;
  color: var(--wm-black);
  line-height: 1.25;
}

.bonus-note {
  margin: 0 0 16px;
  color: var(--wm-muted);
  font-size: 0.95rem;
}

.mini-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.mini-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--wm-border);
  background: var(--wm-bg);
  color: var(--wm-muted);
  font-size: 0.95rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 5px;
  background: var(--wm-red);
  box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.15);
  flex: 0 0 auto;
}

/* FAQ */
.faq details {
  margin: 10px 0;
  padding: 0;
  border-radius: var(--radius-sm);
  background: var(--wm-card);
  border: 1px solid var(--wm-border);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  padding: 14px 16px;
  color: var(--wm-black);
  list-style: none;
  outline: none;
  transition: color 0.15s ease, background 0.15s ease;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--wm-red);
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1;
}

.faq details[open] {
  border-color: rgba(227, 6, 19, 0.35);
  box-shadow: 0 4px 16px rgba(227, 6, 19, 0.08);
}

.faq details[open] summary {
  color: var(--wm-red);
  background: rgba(227, 6, 19, 0.04);
  border-bottom: 1px solid var(--wm-border);
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  margin: 0;
  padding: 14px 16px;
  color: var(--wm-muted);
  line-height: 1.65;
}

.faq summary:focus-visible {
  outline: 3px solid rgba(227, 6, 19, 0.3);
  outline-offset: -3px;
}

/* Reviews */
.comment {
  background: var(--wm-card);
  padding: 1em 1.2em;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  border: 1px solid var(--wm-border);
  box-shadow: 0 2px 8px rgba(17, 17, 17, 0.04);
}

.comment-author {
  font-weight: 900;
  font-size: 1.02em;
  color: var(--wm-red);
}

.comment-date {
  opacity: 0.85;
  font-size: 0.85em;
  margin-top: 2px;
  color: var(--wm-muted);
}

.comment-text {
  margin-top: 0.5em;
  line-height: 1.6;
  color: var(--wm-muted);
}

.review-form {
  margin-top: 14px;
}

.review-form .form-title {
  font-weight: 900;
  font-size: 1.05rem;
  margin: 0 0 12px;
  color: var(--wm-black);
}

form .field {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

textarea,
input[type="text"] {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--wm-border);
  background: var(--wm-white);
  color: var(--wm-black);
  padding: 12px 14px;
  outline: none;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.14s ease, box-shadow 0.14s ease;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

textarea:focus,
input[type="text"]:focus {
  border-color: var(--wm-red);
  box-shadow: 0 0 0 4px rgba(227, 6, 19, 0.12);
}

textarea:focus-visible,
input[type="text"]:focus-visible {
  outline: none;
}

.btn-submit {
  width: 100%;
  border: none;
  background: var(--wm-red);
  color: var(--wm-white);
  font-weight: 900;
  padding: 12px 14px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(227, 6, 19, 0.3);
  transition: transform 0.12s ease, background 0.12s ease;
  font-family: inherit;
  font-size: 1rem;
}

.btn-submit:hover {
  background: var(--wm-red-dark);
  transform: translateY(-1px);
}

.btn-submit:focus-visible {
  outline: 3px solid rgba(227, 6, 19, 0.35);
  outline-offset: 2px;
}

/* Author */
.author {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--wm-red) 0%, var(--wm-red-dark) 100%);
  border: 2px solid var(--wm-border);
  box-shadow: 0 4px 12px rgba(227, 6, 19, 0.2);
  flex: 0 0 auto;
  position: relative;
}

.avatar::after {
  content: "";
  position: absolute;
  inset: 14px 16px 16px 16px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
}

.author-name {
  font-weight: 900;
  font-size: 1.1rem;
  margin: 0 0 6px;
  color: var(--wm-black);
}

.author-bio {
  margin: 0;
  color: var(--wm-muted);
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-sm);
  border: 1px solid var(--wm-border);
  background: var(--wm-white);
  margin: 14px 0 18px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

thead th {
  text-align: left;
  font-weight: 800;
  color: var(--wm-black);
  background: rgba(227, 6, 19, 0.06);
  border-bottom: 1px solid var(--wm-border);
  padding: 12px 14px;
  font-size: 0.95rem;
}

tbody td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--wm-border);
  color: var(--wm-muted);
  vertical-align: top;
}

tbody tr:last-child td {
  border-bottom: none;
}

tbody tr:hover td {
  background: rgba(227, 6, 19, 0.03);
  color: var(--wm-black);
}

/* Footer — winmasters light style */
.wm-footer {
  background: var(--wm-bg);
  color: var(--wm-black);
  margin-top: 0;
  overflow-x: hidden;
}

.wm-footer-top {
  padding: 40px 0 32px;
  border-top: 1px solid var(--wm-border);
}

.wm-footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.85fr 1.55fr 1.05fr;
  gap: 28px 24px;
  align-items: start;
}

.wm-footer-col {
  min-width: 0;
}

.wm-footer-title {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wm-black);
  line-height: 1.3;
}

.wm-footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.wm-footer-links a {
  font-size: 0.82rem;
  color: #5f6872;
  text-decoration: none;
  line-height: 1.45;
  transition: color 0.15s ease;
}

.wm-footer-links a:hover,
.wm-footer-links a:focus-visible {
  color: var(--wm-red);
}

.wm-payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wm-payment-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  max-width: calc(50% - 4px);
  height: 40px;
  padding: 6px 10px;
  background: #e4e9ec;
  border-radius: 9px;
  text-decoration: none;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

.wm-payment-item:hover,
.wm-payment-item:focus-visible {
  background: #d8dee3;
  box-shadow: 0 2px 6px rgba(17, 17, 17, 0.08);
}

.wm-payment-item img {
  display: block;
  max-width: 80px;
  max-height: 24px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.wm-app-card {
  padding: 0;
}

.wm-app-title {
  margin: 0 0 10px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--wm-black);
  line-height: 1.35;
}

.wm-app-desc {
  margin: 0 0 16px;
  font-size: 0.82rem;
  color: #5f6872;
  line-height: 1.5;
}

.wm-app-buttons {
  display: grid;
  gap: 10px;
}

.wm-store-button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 200px;
  padding: 8px 14px;
  background: #333333;
  border-radius: 11px;
  text-decoration: none;
  color: var(--wm-white);
  transition: background 0.15s ease, transform 0.12s ease;
}

.wm-store-button:hover,
.wm-store-button:focus-visible {
  background: #222222;
  transform: translateY(-1px);
}

.wm-store-button:focus-visible {
  outline: 3px solid rgba(227, 6, 19, 0.35);
  outline-offset: 2px;
}

.wm-store-icon {
  flex-shrink: 0;
  width: 22px;
  font-size: 1.25rem;
  line-height: 1;
  text-align: center;
  opacity: 0.95;
}

.wm-store-icon--play {
  font-size: 0.85rem;
}

.wm-store-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.wm-store-label {
  font-size: 0.62rem;
  line-height: 1.2;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.wm-store-name {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.15;
}

.wm-footer-middle {
  padding: 28px 0 32px;
  border-top: 1px solid var(--wm-border);
}

.wm-footer-middle-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px 40px;
  flex-wrap: wrap;
}

.wm-regulatory {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.wm-regulatory-logo {
  display: block;
  line-height: 0;
  text-decoration: none;
}

.wm-regulatory-logo img {
  display: block;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.wm-regulatory-logo:focus-visible {
  outline: 3px solid rgba(227, 6, 19, 0.35);
  outline-offset: 3px;
  border-radius: 4px;
}

.wm-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

.wm-badge--hotline {
  min-width: 52px;
  height: 36px;
  padding: 0 12px;
  background: #f58220;
  color: var(--wm-white);
  font-size: 1rem;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

.wm-badge--age {
  width: 44px;
  height: 44px;
  background: var(--wm-white);
  border: 2px solid #c5ccd3;
  color: var(--wm-black);
  font-size: 0.85rem;
  border-radius: 50%;
}

.wm-social {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.wm-social-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--wm-black);
}

.wm-social-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wm-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e4e9ec;
  color: #5f6872;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  transition: background 0.15s ease, color 0.15s ease;
}

.wm-social-btn:hover,
.wm-social-btn:focus-visible {
  background: #d8dee3;
  color: var(--wm-red);
}

.wm-social-btn:focus-visible {
  outline: 3px solid rgba(227, 6, 19, 0.35);
  outline-offset: 2px;
}

.wm-certification {
  padding: 8px 0 24px;
  text-align: center;
}

.wm-certification a {
  display: inline-block;
  text-decoration: none;
  line-height: 0;
}

.wm-certification img {
  display: block;
  max-width: min(640px, 100%);
  width: 100%;
  height: auto;
  margin: 0 auto;
  opacity: 0.88;
  object-fit: contain;
}

.wm-certification a:focus-visible {
  outline: 3px solid rgba(227, 6, 19, 0.35);
  outline-offset: 4px;
  border-radius: 4px;
}

.wm-legal {
  padding: 0 0 8px;
}

.wm-legal p {
  margin: 0 auto;
  max-width: 1050px;
  font-size: 11.5px;
  line-height: 1.55;
  color: #5f6872;
  text-align: center;
}

.wm-copyright {
  padding: 0 0 32px;
}

.wm-copyright p {
  margin: 22px 0 0;
  font-size: 12px;
  color: var(--wm-black);
  text-align: center;
}

/* Responsive */
@media (min-width: 981px) {
  .wm-collections-row {
    overflow-x: visible;
    flex-wrap: nowrap;
  }

  .wm-collection-card {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
  }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .wm-live-grid {
    grid-template-columns: 1fr;
  }

  .wm-highlights-grid {
    grid-template-columns: 1fr;
  }

  .wm-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
  }

  .wm-footer-middle-inner {
    justify-content: center;
  }

  .wm-regulatory,
  .wm-social {
    justify-content: center;
  }

  .wm-hero-banner {
    min-height: clamp(220px, 28vw, 320px);
  }

  .wm-promo-list {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 2px 12px;
    margin: 0 -2px;
  }

  .wm-promo-list::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 600px) {
  .wm-hero {
    padding: 16px 0 0;
  }

  .wm-hero-banner {
    min-height: 240px;
    border-radius: 18px;
  }

  .wm-hero-link {
    border-radius: 18px;
  }

  .wm-hero-content {
    padding: 24px 18px;
    text-align: center;
    max-width: 100%;
  }

  .wm-hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .wm-hero-cta {
    font-size: 0.88rem;
    padding: 11px 20px;
    white-space: normal;
    text-align: center;
  }

  .wm-promo-strip {
    margin-top: 28px;
  }

  .wm-promo-list {
    gap: 12px;
  }

  .wm-main-stack {
    gap: 28px;
  }

  .wm-showcase-section {
    border-radius: 20px;
    padding: 14px;
  }

  .wm-showcase-head {
    margin-bottom: 12px;
  }

  .wm-sport-tabs {
    gap: 6px;
  }

  .wm-sport-tab {
    padding: 6px 10px;
    font-size: 0.82rem;
  }

  .wm-match-teams {
    font-size: 0.88rem;
  }

  .wm-slot-card {
    min-width: 110px;
    width: 110px;
  }

  .wm-slot-card img {
    width: 110px;
    height: 148px;
  }

  .wm-collection-card {
    min-width: 130px;
    width: 130px;
  }

  .card-inner {
    padding: 16px;
  }

  .comment {
    padding: 1em 1em;
  }

  .author {
    flex-direction: column;
    align-items: flex-start;
  }

  .avatar {
    width: 60px;
    height: 60px;
  }

  .brand .name span {
    display: none;
  }

  .cta {
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .wm-footer-top {
    padding: 28px 0 24px;
  }

  .wm-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .wm-payment-item {
    width: calc(50% - 4px);
    max-width: none;
    flex: 1 1 calc(50% - 4px);
  }

  .wm-store-button {
    max-width: 100%;
  }

  .wm-footer-middle {
    padding: 24px 0 28px;
  }

  .wm-footer-middle-inner {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .wm-regulatory {
    justify-content: center;
  }

  .wm-social {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .wm-certification {
    padding: 4px 0 20px;
  }

  .wm-legal p {
    font-size: 11px;
    padding: 0 4px;
  }

  .wm-copyright p {
    margin-top: 20px;
    padding: 0 4px;
  }

  /* Table: card layout */
  thead {
    display: none;
  }

  table {
    min-width: 0;
  }

  tbody,
  tr,
  td {
    display: block;
    width: 100%;
  }

  tr {
    margin-bottom: 1em;
    border: 1px solid var(--wm-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--wm-white);
  }

  tbody td {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 0.7em 1em;
    border-bottom: 1px solid var(--wm-border);
  }

  tbody td:last-child {
    border-bottom: none;
  }

  tbody td::before {
    content: attr(data-label);
    font-weight: 800;
    color: var(--wm-black);
    flex: 0 0 44%;
  }
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand:focus-visible,
.nav-links a:focus-visible {
  outline: 3px solid rgba(227, 6, 19, 0.35);
  outline-offset: 2px;
  border-radius: 8px;
}
