/* =====================================================================
   ჩემპიონთა ლიგის პროგნოზების გვერდი.

   მსოფლიო ჩემპიონატის დიზაინის ზუსტი ასლი, `.wc-` → `.cl-` პრეფიქსით.
   ცალკე ფაილია, რომ worldcup.css-ს არ ეხებოდეს — ის ხელუხლებელი რჩება.

   განსხვავება: დროშის ნაცვლად კლუბის გერბი (.cl-crest), ხოლო გერბის
   გარეშე — მონოგრამა კოდიდან (.cl-crest--text).
   ===================================================================== */

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

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

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

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

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

/* Hero */
.cl-hero {
  padding: 14px;
  margin-bottom: 10px;
  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);
  overflow: hidden;
}

.cl-hero-inner {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cl-hero-text {
  flex: 1;
  min-width: 0;
}

.cl-hero-prize-visual {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: -6px -8px -10px 0;
}

.cl-hero-ps5 {
  width: 96px;
  height: auto;
  max-height: 110px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
  pointer-events: none;
  user-select: none;
}

.cl-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);
}

.cl-hero-title {
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1.25;
}

.cl-hero-prize {
  display: inline;
  color: #fff;
  white-space: nowrap;
}

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

/* Stats — separate panel below hero */
.cl-stats-panel {
  margin-bottom: 14px;
}

.cl-stats-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

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

.cl-stats {
  display: flex;
  gap: 8px;
  min-width: min-content;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cl-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;
}

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

.cl-stat span {
  display: none;
}

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

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

/* Toolbar */
.cl-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);
}

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

.cl-show-all-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;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
  user-select: none;
  position: relative;
  z-index: 1;
}

.cl-show-all-btn.active {
  background: #f58646;
  border-color: #f58646;
  color: #fff;
}

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

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

.cl-filters-scroll {
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  mask-image: linear-gradient(to right, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, #000 92%, transparent);
}

.cl-filters-scroll::after {
  content: '';
  display: block;
  flex: 0 0 12px;
  width: 12px;
  height: 1px;
}

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

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

.cl-filter,
.cl-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 14px;
  min-height: 40px;
  font-size: 13px;
  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;
}

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

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

.cl-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;
}

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

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

  .cl-toolbar {
    flex-direction: row;
    align-items: center;
    gap: 6px;
    margin-left: -12px;
    margin-right: -12px;
    margin-bottom: 8px;
    padding: 4px 12px 5px;
    top: env(safe-area-inset-top, 0px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
  }

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

  .cl-toolbar-views {
    width: auto;
    flex-shrink: 0;
    justify-content: flex-end;
    padding: 0;
    gap: 4px;
  }

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

  .cl-filters {
    gap: 6px;
    padding: 0;
  }

  .cl-filter,
  .cl-show-all-btn {
    padding: 5px 10px;
    min-height: 32px;
    font-size: 11px;
  }

  .cl-show-all-btn {
    padding: 5px 11px;
  }

  .cl-view-toggle {
    gap: 4px;
  }

  .cl-view-btn {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
    border-radius: 8px;
  }

  .cl-view-btn svg {
    width: 15px;
    height: 15px;
  }

  .cl-filters-scroll::after {
    flex: 0 0 6px;
    width: 6px;
  }
}

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

.cl-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;
}

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

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

.cl-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);
}

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

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

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

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

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

.cl-saved-badge--editable {
  color: #f58646;
}

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

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

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

/* Confirm modal */
.cl-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));
}

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

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

.cl-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);
}

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

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

.cl-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;
}

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

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

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

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

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

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

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

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

.cl-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);
}

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

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

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

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

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

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

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

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

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

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

.cl-stage {
  background: rgba(255, 193, 7, 0.12);
  color: #ffc107;
}

.cl-tz {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.75;
}

.cl-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 */
.cl-match-body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 6px;
  align-items: center;
}

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

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

.cl-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;
}

.cl-team-code {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: #f0f0f0;
  text-transform: uppercase;
  white-space: nowrap;
}

.cl-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%;
}

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

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

.cl-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;
}

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

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

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

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

.cl-final-score--empty span:not(.cl-sep) {
  color: #666;
}

.cl-final-score-empty {
  font-size: 22px !important;
  font-weight: 600 !important;
  color: #666 !important;
}

.cl-final-score-caption {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 600;
  color: #888;
  text-align: center;
  line-height: 1.2;
}

.cl-final-score-caption--missed {
  color: #888;
}

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

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

/* Finished result panel */
.cl-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);
}

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

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

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

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

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

.cl-result-box--missed {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.12);
}

.cl-result-missed-text {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #777 !important;
  letter-spacing: 0.02em;
}

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

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

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

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

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

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

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

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

/* Save bar */
.cl-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);
}

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

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

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

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

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

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

  .champions-page .back {
    margin-top: 8px;
    margin-bottom: 16px;
  }

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

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

  .cl-hero {
    padding: 24px 28px;
    margin-bottom: 12px;
  }

  .cl-hero-inner {
    gap: 24px;
  }

  .cl-hero-title {
    font-size: 28px;
    line-height: 1.2;
    max-width: 560px;
  }

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

  .cl-hero-ps5 {
    width: 150px;
    max-height: 168px;
  }

  .cl-stats-panel {
    margin-bottom: 18px;
  }

  .cl-stats-scroll {
    overflow: visible;
  }

  .cl-stats {
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px 18px;
  }

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

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

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

  .cl-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;
  }

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

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

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

  .cl-filters-scroll {
    overflow: visible;
    mask-image: none;
    -webkit-mask-image: none;
  }

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

  .cl-filter,
  .cl-show-all-btn {
    padding: 8px 14px;
    min-height: auto;
    font-size: 13px;
  }

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

  .cl-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;
  }

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

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

  .cl-team-code {
    font-size: 14px;
  }

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

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

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

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

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

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

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

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

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

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

.cl-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);
}

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

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

.cl-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);
}

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

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

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

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

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

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

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

.cl-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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cl-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);
}

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

.cl-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;
}

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

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

.cl-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Share button & modal */
body.cl-modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}

.cl-match-share {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: flex-end;
}

.cl-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid rgba(245, 134, 70, 0.45);
  background: rgba(245, 134, 70, 0.12);
  color: #f58646;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.cl-share-btn:hover {
  background: rgba(245, 134, 70, 0.22);
  border-color: rgba(245, 134, 70, 0.7);
}

.cl-share-btn:disabled {
  opacity: 0.55;
  cursor: wait;
}

.cl-share-btn-icon {
  flex-shrink: 0;
}

.cl-share-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
}

.cl-share-modal[hidden] {
  display: none;
}

.cl-share-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.cl-share-box {
  position: relative;
  width: min(100%, 560px);
  max-height: calc(100dvh - 32px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 20px 18px 18px;
  border-radius: 14px;
  background: #1a1a1f;
  border: 1px solid rgba(245, 134, 70, 0.25);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.cl-share-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #a4a4a4;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.cl-share-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.cl-share-box h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.cl-share-subtitle {
  margin: 0 0 14px;
  color: #a4a4a4;
  font-size: 13px;
  line-height: 1.4;
}

.cl-share-preview-wrap {
  margin-bottom: 14px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(245, 134, 70, 0.2);
  background: #141418;
}

.cl-share-preview-img {
  display: block;
  width: 100%;
  height: auto;
}

.cl-share-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 120px;
  color: #a4a4a4;
  font-size: 14px;
}

.cl-share-loading[hidden],
.cl-share-preview-wrap[hidden],
.cl-share-actions[hidden] {
  display: none;
}

.cl-share-spinner {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(245, 134, 70, 0.25);
  border-top-color: #f58646;
  border-radius: 50%;
  animation: wc-share-spin 0.7s linear infinite;
}

@keyframes wc-share-spin {
  to { transform: rotate(360deg); }
}

.cl-share-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cl-share-fb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.cl-share-native-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.cl-share-native-btn[hidden] {
  display: none;
}

.cl-share-fb-btn img {
  width: 18px;
  height: 18px;
}

.cl-share-download {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  text-decoration: none;
}

.cl-share-landing {
  padding-bottom: 40px;
}

.cl-share-landing-card {
  padding: 18px;
  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);
}

.cl-share-landing-user,
.cl-share-landing-match {
  margin: 0 0 10px;
  color: #a4a4a4;
  font-size: 14px;
}

.cl-share-landing-match strong {
  color: #fff;
}

.cl-share-landing-img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 14px;
  border-radius: 8px;
}

.cl-share-landing-cta {
  display: flex;
  justify-content: center;
  width: 100%;
  text-decoration: none;
}

@media (min-width: 768px) {
  .cl-share-actions {
    flex-direction: row;
  }

  .cl-share-fb-btn,
  .cl-share-native-btn,
  .cl-share-download {
    flex: 1;
  }
}

/* Leaderboard CTA on predictions page */
.cl-leaderboard-cta {
  margin-bottom: 10px;
}

.cl-leaderboard-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(212, 168, 53, 0.16) 0%, rgba(245, 134, 70, 0.12) 100%);
  border: 1px solid rgba(212, 168, 53, 0.35);
  color: #fff;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}

.cl-leaderboard-btn:hover {
  border-color: rgba(212, 168, 53, 0.6);
  background: linear-gradient(135deg, rgba(212, 168, 53, 0.22) 0%, rgba(245, 134, 70, 0.16) 100%);
  color: #fff;
}

.cl-leaderboard-btn img {
  flex-shrink: 0;
  filter: none;
}

.cl-leaderboard-btn span {
  font-size: 15px;
  font-weight: 700;
}

.cl-leaderboard-btn small {
  margin-left: auto;
  font-size: 11px;
  color: #a4a4a4;
  font-weight: 500;
}

/* Leaderboard page */
.cl-leaderboard-page .cl-hero {
  margin-bottom: 12px;
}

.cl-lb-more-note {
  margin: 10px 0 0;
  text-align: center;
  font-size: 12px;
  color: #777;
}

.cl-lb-self-hint {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(245, 134, 70, 0.1);
  border: 1px solid rgba(245, 134, 70, 0.25);
}

.cl-lb-self-hint img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

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

.cl-lb-self-hint a {
  color: #f58646;
  font-weight: 600;
}

.cl-lb-podium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
  align-items: end;
}

.cl-lb-podium-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cl-lb-podium-item--1 {
  order: 2;
  padding-top: 16px;
  padding-bottom: 16px;
  border-color: rgba(212, 168, 53, 0.45);
  background: linear-gradient(180deg, rgba(212, 168, 53, 0.18) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.cl-lb-podium-crown {
  font-size: 20px;
  line-height: 1;
  margin-bottom: 4px;
}

.cl-lb-podium-item--2 {
  order: 1;
}

.cl-lb-podium-item--3 {
  order: 3;
}

.cl-lb-podium-item.is-you {
  box-shadow: 0 0 0 2px rgba(245, 134, 70, 0.45);
}

.cl-lb-podium-rank {
  font-size: 11px;
  font-weight: 700;
  color: #888;
  margin-bottom: 6px;
}

.cl-lb-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 8px;
}

.cl-lb-podium-item--1 .cl-lb-avatar {
  width: 64px;
  height: 64px;
  border-color: rgba(212, 168, 53, 0.5);
}

.cl-lb-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  word-break: break-word;
}

.cl-lb-name em {
  font-style: normal;
  color: #f58646;
  font-weight: 700;
}

.cl-lb-podium-score {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #4caf7d;
}

.cl-lb-podium-meta {
  font-size: 11px;
  color: #888;
}

.cl-lb-list-heading {
  display: none;
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cl-lb-table-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.cl-lb-table-head,
.cl-lb-row {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 44px 44px 44px 52px;
  gap: 6px;
  align-items: center;
  padding: 10px 12px;
}

.cl-lb-table-head {
  font-size: 10px;
  font-weight: 700;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cl-lb-table-head span:not(:nth-child(2)) {
  text-align: center;
}

.cl-lb-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cl-lb-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cl-lb-row:last-child {
  border-bottom: 0;
}

.cl-lb-row.is-you {
  background: rgba(245, 134, 70, 0.1);
}

.cl-lb-your-position {
  margin-top: 20px;
}

.cl-lb-your-position-sep {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: rgba(245, 134, 70, 0.85);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.cl-lb-table-wrap--you {
  border-color: rgba(245, 134, 70, 0.35);
  box-shadow: 0 0 0 1px rgba(245, 134, 70, 0.15);
}

.cl-lb-your-position-hint {
  margin: 12px 0 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.cl-lb-your-position-hint strong {
  color: #f58646;
}

.cl-lb-your-position-hint a {
  color: #f58646;
  text-decoration: underline;
  margin-left: 4px;
}

.cl-lb-row--top {
  background: rgba(212, 168, 53, 0.05);
}

.cl-lb-rank {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #888;
}

.cl-lb-medal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.cl-lb-medal--gold {
  background: rgba(212, 168, 53, 0.25);
  color: #d4a835;
}

.cl-lb-medal--silver {
  background: rgba(180, 180, 180, 0.2);
  color: #c0c0c0;
}

.cl-lb-medal--bronze {
  background: rgba(205, 127, 50, 0.2);
  color: #cd7f32;
}

.cl-lb-player {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.cl-lb-avatar-sm {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cl-lb-player-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cl-lb-player-name em {
  font-style: normal;
  color: #f58646;
  font-weight: 700;
}

.cl-lb-row-stats {
  display: contents;
}

.cl-lb-stat {
  text-align: center;
}

.cl-lb-stat strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #ccc;
  line-height: 1.2;
}

.cl-lb-stat small {
  display: none;
}

.cl-lb-stat--good strong {
  color: #4caf7d;
}

.cl-lb-stat--bad strong {
  color: #e05d5d;
}

.cl-lb-stat--acc strong {
  color: #a4a4a4;
  font-size: 12px;
}

.cl-lb-footer-actions {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.cl-lb-back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.15s, border-color 0.15s;
}

.cl-lb-back-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.cl-empty-state {
  text-align: center;
  padding: 32px 16px;
  color: #a4a4a4;
}

.cl-empty-state p {
  margin: 0 0 14px;
}

@media (max-width: 767px) {
  .champions-page {
    padding-top: calc(60px + env(safe-area-inset-top, 0px));
  }

  .champions-page .back {
    margin-top: 8px;
  }

  .cl-lb-self-hint {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .cl-lb-self-hint p {
    font-size: 12px;
  }

  .cl-lb-podium {
    gap: 6px;
    margin-bottom: 18px;
    align-items: flex-end;
  }

  .cl-lb-podium-item {
    padding: 10px 6px 12px;
    min-height: 118px;
    justify-content: flex-end;
  }

  .cl-lb-podium-item--1 {
    min-height: 138px;
    padding-top: 12px;
    padding-bottom: 16px;
    transform: translateY(-8px);
  }

  .cl-lb-podium-crown {
    font-size: 16px;
    margin-bottom: 2px;
  }

  .cl-lb-podium-rank {
    display: none;
  }

  .cl-lb-avatar {
    width: 44px;
    height: 44px;
    margin-bottom: 6px;
  }

  .cl-lb-podium-item--1 .cl-lb-avatar {
    width: 54px;
    height: 54px;
  }

  .cl-lb-name {
    font-size: 11px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .cl-lb-podium-score {
    margin-top: 3px;
    font-size: 11px;
  }

  .cl-lb-podium-meta {
    font-size: 10px;
    margin-top: 1px;
  }

  .cl-lb-table-wrap {
    border: none;
    background: transparent;
    overflow: visible;
  }

  .cl-lb-table-head {
    display: none;
  }

  .cl-lb-list-heading {
    display: block;
    margin-bottom: 12px;
    padding-left: 2px;
  }

  .cl-lb-podium + .cl-lb-table-wrap .cl-lb-row--top {
    display: none;
  }

  .cl-lb-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
    padding: 12px 14px;
    margin-bottom: 8px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .cl-lb-row:last-child {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .cl-lb-row.is-you {
    border-color: rgba(245, 134, 70, 0.45);
    background: rgba(245, 134, 70, 0.1);
    box-shadow: 0 0 0 1px rgba(245, 134, 70, 0.12);
  }

  .cl-lb-rank {
    flex: 0 0 28px;
    font-size: 15px;
    font-weight: 800;
    color: #666;
  }

  .cl-lb-medal {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .cl-lb-player {
    flex: 1 1 calc(100% - 44px);
    min-width: 0;
  }

  .cl-lb-avatar-sm {
    width: 38px;
    height: 38px;
  }

  .cl-lb-player-name {
    font-size: 14px;
  }

  .cl-lb-row-stats {
    display: flex;
    flex: 1 1 100%;
    gap: 6px;
    width: 100%;
  }

  .cl-lb-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 8px 4px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.22);
    min-width: 0;
  }

  .cl-lb-stat strong {
    font-size: 15px;
    font-weight: 800;
  }

  .cl-lb-stat small {
    display: block;
    font-size: 9px;
    font-weight: 600;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }

  .cl-lb-stat--acc strong {
    font-size: 14px;
  }

  .cl-lb-footer-actions {
    margin-top: 20px;
  }

  .cl-lb-back-btn {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
  }

  .cl-leaderboard-btn {
    flex-wrap: wrap;
  }

  .cl-leaderboard-btn small {
    margin-left: 0;
    width: 100%;
    padding-left: 28px;
  }
}

@media (min-width: 768px) {
  .cl-lb-podium {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---------------------------------------------------------------------
   კლუბის გერბი — დროშის ჩამნაცვლებელი.
   გერბის ფაილის გარეშე მონოგრამა იხატება (კოდის პირველი 3 ასო).
   --------------------------------------------------------------------- */
.cl-crest {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}
.cl-crest--text {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  font-family: "Courier New", monospace;
}
.cl-crest-sm {
  width: 26px;
  height: 26px;
  font-size: 9px;
}
.cl-crest-xs {
  width: 20px;
  height: 20px;
  font-size: 8px;
}

/* მონაწილეობის შეზღუდვის ბანერი */
.cl-gate {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  margin: 0 0 20px;
  border-radius: 12px;
  background: rgba(214, 48, 49, 0.12);
  border: 1px solid rgba(214, 48, 49, 0.4);
  color: #fff;
  font-size: 14px;
  line-height: 1.55;
}
.cl-gate img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.cl-gate strong {
  color: #ff8a8a;
}

/* ტურის ნიშანი — ერთ დღეს ორი ტურის მატჩი რომ არ აგერიოს */
.cl-md-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

/* დროის დაუდასტურებლობის ნიშანი */
.cl-time-tbd {
  color: #e0a800;
  font-size: 10px;
}

/* ჩემპიონთა ლიგის ცხრილი — ქულების სვეტი და პლეი-ოფის ზონა */
.cl-standings-table th.cl-team-head {
  text-align: left;
}
.cl-standings-table td.cl-st-pts,
.cl-standings-table th.cl-st-pts {
  font-weight: 800;
  color: #fff;
}
.cl-standings-table tr.is-playoff td.cl-pos {
  color: #f5c542;
}
.cl-standings-table tr.is-playoff {
  background: rgba(245, 197, 66, 0.05);
}
