/* World Cup — mobile-first */
.worldcup-page {
  padding: 90px 0 calc(110px + env(safe-area-inset-bottom, 0px));
  min-height: 60vh;
  -webkit-tap-highlight-color: transparent;
}

.worldcup-page .container {
  padding-left: 12px;
  padding-right: 12px;
}

.worldcup-page .back {
  margin-top: 0;
  margin-bottom: 12px;
}

.worldcup-page .back h1 {
  font-size: 14px;
  line-height: 1.3;
  gap: 8px;
}

.worldcup-page .back h1 img {
  width: 18px;
  height: 18px;
  filter: none;
  flex-shrink: 0;
}

/* Hero */
.wc-hero {
  padding: 14px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(245, 134, 70, 0.18) 0%, rgba(20, 20, 24, 0.95) 55%);
  border: 1px solid rgba(245, 134, 70, 0.25);
}

.wc-badge {
  display: inline-block;
  padding: 3px 8px;
  margin-bottom: 6px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f58646;
  background: rgba(245, 134, 70, 0.15);
}

.wc-hero-text h2 {
  margin: 0 0 4px;
  font-size: 20px;
  line-height: 1.2;
}

.wc-hero-desc {
  margin: 0;
  color: #a4a4a4;
  font-size: 13px;
  line-height: 1.4;
}

/* Stats — horizontal scroll on mobile */
.wc-stats-scroll {
  margin-top: 12px;
  margin-left: -14px;
  margin-right: -14px;
  padding: 0 14px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.wc-stats-scroll::-webkit-scrollbar {
  display: none;
}

.wc-stats {
  display: flex;
  gap: 8px;
  min-width: min-content;
}

.wc-stat {
  flex: 0 0 auto;
  min-width: 72px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.wc-stat strong {
  display: block;
  font-size: 22px;
  line-height: 1;
  color: #fff;
}

.wc-stat span {
  display: none;
}

.wc-stat small {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  color: #a4a4a4;
  line-height: 1.2;
}

.wc-stat-today strong { color: #f58646; }
.wc-stat-correct strong { color: #4caf7d; }
.wc-stat-wrong strong { color: #e05d5d; }

/* Toolbar */
.wc-toolbar {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin-bottom: 12px;
  position: sticky;
  top: 56px;
  z-index: 30;
  padding: 10px 0;
  background: #0f0f0f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.wc-toolbar-filters {
  width: 100%;
  min-width: 0;
}

.wc-toolbar-views {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 2px 0;
}

.wc-toolbar-views-label {
  font-size: 12px;
  font-weight: 600;
  color: #888;
  flex-shrink: 0;
}

.wc-filters-scroll {
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}

.wc-filters-scroll::-webkit-scrollbar {
  display: none;
}

.wc-filters {
  display: flex;
  gap: 8px;
  min-width: min-content;
  padding: 2px 0;
}

.wc-filter,
.wc-view-btn {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #d8d8d8;
  border-radius: 999px;
  padding: 10px 16px;
  min-height: 44px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  position: relative;
  z-index: 1;
}

.wc-filter.active,
.wc-view-btn.active {
  background: #f58646;
  border-color: #f58646;
  color: #fff;
}

.wc-view-toggle {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}

.wc-view-btn {
  width: 48px;
  height: 48px;
  min-height: 48px;
  min-width: 48px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.wc-view-btn svg {
  pointer-events: none;
}

@media (max-width: 767px) {
  .wc-view-btn[data-view="grid"] {
    display: none;
  }
}

.wc-view-toggle--desktop {
  display: none;
}

.wc-login-hint {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 10px;
  background: rgba(245, 134, 70, 0.1);
  border: 1px solid rgba(245, 134, 70, 0.25);
  font-size: 13px;
  line-height: 1.45;
  color: #ddd;
}

.wc-login-hint img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.wc-login-link {
  border: none;
  background: none;
  padding: 0;
  color: #f58646;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  touch-action: manipulation;
}

.wc-once-hint {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 10px;
  background: rgba(76, 175, 125, 0.08);
  border: 1px solid rgba(76, 175, 125, 0.25);
}

.wc-once-hint img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.wc-once-hint p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: #ddd;
}

.wc-saved-pick {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.wc-saved-pick span:not(.wc-sep) {
  font-size: 22px;
  font-weight: 800;
  color: #4caf7d;
}

.wc-saved-badge {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 700;
  color: #4caf7d;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.wc-match.is-saved {
  border-color: rgba(76, 175, 125, 0.3);
}

.wc-live-badge--red {
  background: rgba(224, 93, 93, 0.2);
  color: #e05d5d;
}

.wc-match.is-live {
  border-color: rgba(224, 93, 93, 0.35);
}

/* Confirm modal */
.wc-confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 12px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
}

.wc-confirm-modal[hidden] {
  display: none !important;
}

.wc-confirm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.wc-confirm-box {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 20px 16px;
  border-radius: 14px 14px 12px 12px;
  background: #1a1a1e;
  border: 1px solid rgba(245, 134, 70, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.wc-confirm-box h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.wc-confirm-box p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #ccc;
}

.wc-confirm-summary {
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  white-space: pre-line;
  color: #f58646;
  max-height: 180px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.wc-confirm-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.wc-confirm-actions .red-button,
.wc-confirm-actions .grey-button {
  width: 100%;
  min-height: 48px;
  justify-content: center;
}

@media (min-width: 768px) {
  .wc-confirm-modal {
    align-items: center;
    padding: 20px;
  }

  .wc-confirm-box {
    border-radius: 14px;
  }

  .wc-confirm-actions {
    flex-direction: row-reverse;
  }

  .wc-confirm-actions .red-button,
  .wc-confirm-actions .grey-button {
    width: auto;
    flex: 1;
    min-height: auto;
  }
}

/* Day groups */
.wc-day-group {
  margin-bottom: 18px;
}

.wc-day-group.is-today .wc-day-head h3 {
  color: #f58646;
}

.wc-day-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wc-day-head h3 {
  margin: 0;
  font-size: 15px;
}

.wc-day-head span {
  font-size: 11px;
  color: #888;
}

.wc-day-matches {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Match card */
.wc-match {
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.wc-match.is-today {
  border-color: rgba(245, 134, 70, 0.45);
  box-shadow: 0 0 0 1px rgba(245, 134, 70, 0.12);
}

.wc-match.is-finished.is-correct {
  border-color: rgba(76, 175, 125, 0.5);
}

.wc-match.is-finished.is-wrong {
  border-color: rgba(224, 93, 93, 0.35);
}

.wc-match.is-locked:not(.is-finished) {
  opacity: 0.8;
}

.wc-match-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 11px;
  color: #888;
  flex-wrap: wrap;
}

.wc-group {
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.wc-live-badge {
  margin-left: auto;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(245, 134, 70, 0.2);
  color: #f58646;
  font-weight: 700;
  font-size: 10px;
}

/* Teams row — mobile classic layout */
.wc-match-body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 6px;
  align-items: center;
}

.wc-team-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 0;
  text-align: center;
}

.wc-team-away {
  /* column order handled by grid */
}

.wc-flag {
  width: 40px;
  height: 28px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}

.wc-team-name {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
  max-width: 100%;
}

.wc-score-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 0 4px;
}

.wc-inputs,
.wc-final-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.wc-score-input {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  padding: 0;
  touch-action: manipulation;
  -webkit-appearance: none;
  appearance: none;
}

.wc-score-input:focus {
  outline: none;
  border-color: #f58646;
  box-shadow: 0 0 0 3px rgba(245, 134, 70, 0.25);
}

.wc-score-input:disabled {
  opacity: 0.45;
}

.wc-sep {
  font-size: 18px;
  font-weight: 700;
  color: #888;
  line-height: 1;
}

.wc-final-score span:not(.wc-sep) {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  min-width: 20px;
  text-align: center;
}

.wc-locked-pill {
  font-size: 11px;
  color: #888;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.wc-mini-pick {
  margin-top: 4px;
  font-size: 11px;
  color: #a4a4a4;
}

/* Finished result panel */
.wc-result-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.wc-result-box {
  text-align: center;
  padding: 8px 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.wc-result-box-label {
  display: block;
  font-size: 10px;
  color: #888;
  margin-bottom: 4px;
}

.wc-result-box strong {
  font-size: 16px;
  font-weight: 700;
  color: #ddd;
}

.wc-result-box--real {
  background: rgba(245, 134, 70, 0.1);
  border: 1px solid rgba(245, 134, 70, 0.2);
}

.wc-result-box--real strong {
  color: #f58646;
}

.wc-result-badge {
  grid-column: 1 / -1;
  display: block;
  text-align: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.wc-result-badge--correct {
  background: rgba(76, 175, 125, 0.18);
  color: #4caf7d;
}

.wc-result-badge--wrong {
  background: rgba(224, 93, 93, 0.15);
  color: #e05d5d;
}

.wc-result-panel--single {
  grid-template-columns: 1fr;
}

.wc-result-panel--single .wc-result-box--real {
  grid-column: auto;
}

.wc-venue {
  margin-top: 8px;
  font-size: 10px;
  color: #666;
  text-align: center;
  line-height: 1.3;
}

.wc-empty {
  text-align: center;
  padding: 48px 16px;
  color: #888;
}

.wc-empty img {
  width: 44px;
  opacity: 0.5;
  margin-bottom: 12px;
}

/* Save bar */
.wc-save-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(12, 12, 14, 0.97);
  border-top: 1px solid rgba(245, 134, 70, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
}

.wc-save-bar-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wc-save-bar-inner span {
  font-size: 12px;
  color: #a4a4a4;
  text-align: center;
}

.wc-save-bar .red-button {
  width: 100%;
  min-height: 48px;
  justify-content: center;
  font-size: 15px;
  touch-action: manipulation;
}

.wc-match.is-hidden,
.wc-day-group.is-hidden {
  display: none !important;
}

/* Grid view — desktop only */
.wc-view-grid .wc-day-matches {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 12px;
}

/* ── Tablet / Desktop ── */
@media (min-width: 768px) {
  .worldcup-page {
    padding: 24px 0 120px;
  }

  .worldcup-page .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .worldcup-page .back h1 {
    font-size: 16px;
  }

  .wc-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-start;
    padding: 24px;
  }

  .wc-hero-text h2 {
    font-size: 28px;
  }

  .wc-hero-desc {
    max-width: 520px;
    font-size: 14px;
  }

  .wc-stats-scroll {
    margin: 0;
    padding: 0;
    overflow: visible;
  }

  .wc-stats {
    flex-wrap: wrap;
  }

  .wc-stat {
    min-width: 110px;
    padding: 14px 16px;
  }

  .wc-stat strong {
    font-size: 24px;
  }

  .wc-stat small {
    font-size: 12px;
    margin-top: 6px;
  }

  .wc-toolbar {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    position: static;
    padding: 0;
    background: none;
    border-bottom: none;
    gap: 12px;
  }

  .wc-toolbar-filters {
    flex: 1 1 auto;
    min-width: 0;
  }

  .wc-toolbar-views {
    width: auto;
    flex-shrink: 0;
    justify-content: flex-end;
    padding: 0;
  }

  .wc-toolbar-views-label {
    display: none;
  }

  .wc-filters-scroll {
    overflow: visible;
  }

  .wc-filters {
    flex-wrap: wrap;
  }

  .wc-filter {
    padding: 8px 14px;
    min-height: auto;
    font-size: 13px;
  }

  .wc-view-toggle--desktop {
    display: flex;
    gap: 8px;
  }

  .wc-view-btn {
    width: 40px;
    height: 40px;
    min-height: 40px;
    min-width: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
  }

  .wc-view-btn[data-view="grid"] {
    display: inline-flex;
  }

  .wc-filter:hover,
  .wc-view-btn:hover {
    border-color: rgba(245, 134, 70, 0.45);
    color: #fff;
  }

  .wc-team-name {
    font-size: 14px;
    -webkit-line-clamp: 3;
  }

  .wc-flag {
    width: 36px;
    height: 24px;
  }

  .wc-score-input {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .wc-save-bar-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 720px;
    margin: 0 auto;
  }

  .wc-save-bar .red-button {
    width: auto;
    min-height: auto;
  }

  .wc-save-bar-inner span {
    text-align: left;
    font-size: 14px;
    color: #ddd;
  }
}

@media (min-width: 992px) {
  .wc-match-body {
    gap: 12px;
  }

  .wc-score-center {
    min-width: 96px;
  }

  .wc-group-compare {
    grid-template-columns: 1fr 1fr;
  }
}

/* Group standings view */
.wc-groups[hidden] {
  display: none !important;
}

.wc-groups-intro {
  margin-bottom: 14px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.wc-groups-intro p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: #ccc;
}

.wc-groups-legend {
  margin-top: 6px !important;
  font-size: 11px !important;
  color: #888 !important;
}

.wc-group-card {
  margin-bottom: 16px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.wc-group-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.wc-group-card-head h3 {
  margin: 0;
  font-size: 18px;
  color: #f58646;
}

.wc-group-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wc-group-meta-item {
  font-size: 11px;
  color: #a4a4a4;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.wc-group-compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.wc-standings-panel {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(76, 175, 125, 0.25);
  background: rgba(76, 175, 125, 0.04);
}

.wc-standings-panel--real {
  border-color: rgba(245, 134, 70, 0.25);
  background: rgba(245, 134, 70, 0.04);
}

.wc-standings-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.wc-standings-panel-head h4 {
  margin: 0;
  font-size: 14px;
}

.wc-standings-note {
  font-size: 11px;
  color: #a4a4a4;
}

.wc-standings-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.wc-standings-table {
  width: 100%;
  min-width: 320px;
  border-collapse: collapse;
  font-size: 12px;
}

.wc-standings-table th,
.wc-standings-table td {
  padding: 8px 6px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wc-standings-table th {
  font-size: 10px;
  font-weight: 700;
  color: #a4a4a4;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.wc-standings-table td.wc-team-cell {
  text-align: left;
  min-width: 110px;
}

.wc-standings-table td.wc-pos {
  font-weight: 800;
  color: #888;
  width: 28px;
}

.wc-standings-table tr.is-qualifier td.wc-pos {
  color: #4caf7d;
}

.wc-standings-table tr.is-qualifier {
  background: rgba(76, 175, 125, 0.08);
}

.wc-standings-table tr.is-diff {
  box-shadow: inset 3px 0 0 #e05d5d;
}

.wc-team-cell {
  display: flex;
  align-items: center;
  gap: 6px;
}

.wc-team-cell span {
  font-weight: 600;
  line-height: 1.2;
}

.wc-flag-sm {
  width: 22px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

.wc-flag-xs {
  width: 18px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

.wc-qualifiers-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  font-size: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.wc-qualifiers-bar > span:first-child {
  color: #a4a4a4;
  font-weight: 700;
}

.wc-qualifier-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 11px;
  font-weight: 600;
}

.wc-qualifiers-bar--pred .wc-qualifier-chip {
  border: 1px solid rgba(76, 175, 125, 0.35);
}

.wc-qualifiers-bar--real .wc-qualifier-chip {
  border: 1px solid rgba(245, 134, 70, 0.35);
}

.wc-group-alert {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(224, 93, 93, 0.1);
  border: 1px solid rgba(224, 93, 93, 0.25);
  font-size: 12px;
  color: #e8b4b4;
}

.wc-group-alert img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.wc-group-fixtures {
  margin-top: 12px;
}

.wc-group-fixtures summary {
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: #ccc;
  padding: 8px 0;
  touch-action: manipulation;
}

.wc-fixtures-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wc-fixture-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.wc-fixture-row:last-child {
  border-bottom: none;
}

.wc-fixture-teams {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 12px;
}

.wc-fixture-team {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.wc-fixture-vs {
  color: #666;
  font-size: 11px;
}

.wc-fixture-scores {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}

.wc-fixture-pred {
  color: #4caf7d;
}

.wc-fixture-real {
  color: #f58646;
}

.wc-fixture-empty {
  color: #555;
  font-weight: 400;
}

.wc-fixture-badge {
  font-size: 12px;
  font-weight: 800;
}

.wc-fixture-badge--ok {
  color: #4caf7d;
}

.wc-fixture-badge--bad {
  color: #e05d5d;
}

@media (min-width: 768px) {
  .wc-fixture-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
