/* Lig ceza tahtası (mac_cezalar) — mobil */

.ct-m-page {
  padding-bottom: 96px;
}

.ct-m-page .breadcrumb {
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.ct-m-page .breadcrumb a {
  color: var(--blue);
}

.ct-m-context {
  text-align: center;
  margin-bottom: 14px;
}

.ct-m-context-pill {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  background: #fff7ed;
  color: #9a3412;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #fed7aa;
  line-height: 1.35;
}

.ct-m-context-desc {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.ct-m-section-title {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 900;
  color: #0f172a;
  text-align: center;
}

.ct-m-empty {
  padding: 36px 16px;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--line);
}

.ct-m-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(8, 60, 116, 0.08);
  padding: 14px 16px 16px;
  margin-bottom: 12px;
}

.ct-m-card .match-line {
  font-size: 13px;
  font-weight: 900;
  color: #0f172a;
  text-align: center;
  line-height: 1.35;
  margin-bottom: 10px;
}

.ct-m-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  color: #b91c1c;
  background: #fee2e2;
  vertical-align: middle;
  margin-right: 6px;
}

.ct-m-name {
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
}

.ct-m-mini {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
  text-align: center;
}

.ct-m-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 10px;
  margin-top: 10px;
  font-size: 12px;
}

.ct-m-grid span {
  display: block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 2px;
}

.ct-m-grid b {
  font-weight: 800;
  color: #111827;
}

.ct-m-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}

.ct-m-btn {
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
}

.ct-m-btn--primary {
  background: linear-gradient(135deg, #1688ff, #0d6efd);
  color: #fff;
}

.ct-m-btn--ghost {
  background: #f8fafc;
  color: #334155;
  border: 1px solid var(--line);
}

.ct-m-share-block {
  margin-top: 18px;
  text-align: center;
}

.ct-m-share-inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  flex-wrap: wrap;
  justify-content: center;
}

.ct-m-share-inner img {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid #fecaca;
}

.ct-m-share-inner button {
  border: none;
  background: #f97316;
  color: #111827;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
}

/* Modallar */
.ct-m-modal-backdrop,
.ct-m-share-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 16px;
}

.ct-m-modal {
  width: 100%;
  max-width: 400px;
  background: #f9fafb;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.45);
  overflow: hidden;
}

.ct-m-modal-head {
  padding: 12px 16px;
  background: #111827;
  color: #f9fafb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.ct-m-modal-head b {
  font-size: 14px;
}

.ct-m-modal-head button {
  border: none;
  background: transparent;
  color: #e5e7eb;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}

.ct-m-modal-body {
  padding: 12px 16px 14px;
  max-height: min(70vh, 420px);
  overflow-y: auto;
}

.ct-m-modal-row {
  display: grid;
  grid-template-columns: 34% 66%;
  gap: 6px 10px;
  padding: 8px 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 12px;
}

.ct-m-modal-row:last-child {
  border-bottom: none;
}

.ct-m-modal-row em {
  font-style: normal;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.04em;
}

.ct-m-modal-foot {
  padding: 10px 16px 12px;
  border-top: 1px solid #e5e7eb;
  text-align: right;
}

.ct-m-share-input {
  width: 100%;
  padding: 8px 10px;
  font-size: 12px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  margin-top: 8px;
  box-sizing: border-box;
}

.ct-m-share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  padding: 10px 16px 14px;
  border-top: 1px solid #e5e7eb;
}

.ct-m-share-actions a,
.ct-m-share-actions button {
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
}

.ct-m-wa {
  background: #16a34a;
  color: #fff;
}

.ct-m-fb {
  background: #1d4ed8;
  color: #fff;
}

.ct-m-close {
  background: #4b5563;
  color: #fff;
}
