.wc26-sim {
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 14px;
  background: #fff;
  border-radius: 14px;
}

.wc26-header {
  text-align: center;
  padding: 6px 6px 12px 6px;
}

.wc26-title {
  margin: 0;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.3px;
}

.wc26-subtitle {
  margin-top: 6px;
  color: #6b7280;
  font-size: 13px;
}

.wc26-toolbar {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.wc26-btn {
  border: 1px solid #d1d5db;
  background: #fff;
  color: #111827;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  cursor: pointer;
}

.wc26-btn:hover { background: #f9fafb; }

.wc26-btn-ghost {
  background: #fff;
}

.wc26-progress {
  font-size: 12px;
  color: #6b7280;
}

.wc26-tabs {
  margin-top: 14px;
  display: inline-flex;
  gap: 8px;
  border-radius: 10px;
  padding: 6px;
}

.wc26-tab {
  border: 1px solid transparent;
  background: transparent;
  color: #2563eb;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
}

.wc26-tab-active {
  background: #0b5cff;
  color: #fff;
}

.wc26-panels { margin-top: 14px; }
.wc26-panel { display: none; }
.wc26-panel-active { display: block; }

.wc26-groups-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 980px) {
  .wc26-groups-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .wc26-groups-grid { grid-template-columns: 1fr; }
}

.wc26-card {
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 10px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.03);
  overflow: hidden;
}

.wc26-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 12px 8px 12px;
}

.wc26-card-title {
  font-weight: 700;
  font-size: 13px;
}

.wc26-card-meta {
  font-size: 12px;
  color: #6b7280;
}

.wc26-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 12px;
}

.wc26-table thead th {
  text-align: left;
  padding: 6px 8px;
  background: #7c2ae8;
  color: #fff;
  font-weight: 700;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.wc26-table thead th:last-child { border-right: none; }

.wc26-table td {
  padding: 6px 8px;
  border-bottom: 1px solid #eef2f7;
}

.wc26-th-team, .wc26-td-team {
  width: 60%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wc26-fixtures {
  padding: 10px 12px 12px 12px;
}

.wc26-fixture-row {
  padding: 8px 0;
  border-top: 1px dashed #eef2f7;
}

.wc26-fx-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.wc26-fx-teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: center;
  min-width: 0;
  flex: 1;
}

.wc26-fx-team {
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wc26-fx-home { text-align: left; }
.wc26-fx-away { text-align: right; }
.wc26-fx-vs { color: #6b7280; font-size: 12px; }

.wc26-fx-score, .wc26-ko-score {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.wc26-score-input {
  width: 40px;
  height: 30px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  text-align: center;
  font-size: 12px;
}

.wc26-score-sep { color: #6b7280; font-weight: 700; }

.wc26-fx-meta, .wc26-ko-meta {
  margin-top: 6px;
  font-size: 11px;
  color: #6b7280;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.wc26-dot { opacity: 0.7; }

.wc26-empty {
  font-size: 12px;
  color: #6b7280;
  padding: 10px 0;
}

.wc26-info {
  background: #d9f2ff;
  border: 1px solid #bfe7fb;
  color: #0b4a6f;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 12px;
  margin-bottom: 12px;
}

.wc26-ko-round {
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 12px;
}

.wc26-ko-title {
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 8px;
}

.wc26-ko-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wc26-ko-match {
  border: 1px solid #eef2f7;
  border-radius: 10px;
  padding: 10px 10px;
}

.wc26-ko-main {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 10px;
  align-items: center;
}

@media (max-width: 640px) {
  .wc26-ko-main { grid-template-columns: 1fr; }
}

.wc26-ko-num {
  font-size: 12px;
  font-weight: 800;
  color: #111827;
}

.wc26-ko-teams {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  min-width: 0;
}

.wc26-ko-team {
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wc26-ko-team-away { text-align: right; }
