.dp-cups-page {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
  padding: 0 10px;
}

.dp-cups-page .dp-team-breadcrumbs {
  color: #cfcfcf;
  text-align: center;
}

.dp-cups-page .dp-team-breadcrumbs a {
  color: inherit;
  text-decoration: underline;
}

.dp-cups-page .dp-team-breadcrumb-sep {
  opacity: 0.7;
}

.dp-cups-page .dp-team-header h1.dp-team-title {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
  margin: 0;
  text-align: center;
}

/* Season selector (match team page styling) */
.dp-cups-page .dp-team-season-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 24px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid #ffcc00;
  border-radius: 6px;
}

.dp-cups-page .dp-team-season-selector__label {
  font-weight: 600;
  color: #f5f2d0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dp-cups-page .dp-team-season-selector__select {
  padding: 8px 12px;
  font-size: 0.85rem;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  min-width: 150px;
}

.dp-cup-honours {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  justify-content: center;
  align-items: center;
  padding: 14px 18px;
  background: #2f2e28;
  border-radius: 10px;
  border-left: 6px solid #f5f2d0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
  font-size: 1rem;
}

.dp-cup-honours__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.dp-cup-honours__team {
  font-weight: 800;
}

.dp-cup-honours__winner {
  color: #f2d27a;
}

.dp-cup-honours__runner-up {
  color: #cbd0d6;
}

.dp-cup-honours__winner::before,
.dp-cup-honours__runner-up::before {
  content: "🏆";
  font-size: 1.1rem;
  line-height: 1;
}

.dp-cup-honours__runner-up::before {
  content: "🥈";
}

@media (max-width: 767px) {
  .dp-cup-honours {
    font-size: 0.9rem;
    padding: 12px 14px;
  }
}

.dp-cup-round {
  margin-bottom: 28px;
}

.dp-cups-page .dp-table-wrapper {
  border-top: 1px solid #d7be69 !important;
}

.dp-cup-fixtures-table {
  width: 100%;
  margin: 0;
  background: #555;
  border-collapse: collapse;
  table-layout: fixed;
}

.dp-cup-fixtures-table thead tr {
  background: #434343;
  color: #f5f2d0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.dp-cup-fixtures-table thead th {
  text-align: center;
  border: none;
  line-height: 1.5;
  background-color: #434343;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.7rem;
  padding: 8px 6px;
}

.dp-cup-fixtures-table thead th:nth-child(1),
.dp-cup-fixtures-table tbody td:nth-child(1) {
  width: 16%;
}

.dp-cup-fixtures-table thead th:nth-child(2),
.dp-cup-fixtures-table tbody td:nth-child(2),
.dp-cup-fixtures-table thead th:nth-child(4),
.dp-cup-fixtures-table tbody td:nth-child(4) {
  width: 20%;
}

.dp-cup-fixtures-table thead th:nth-child(3),
.dp-cup-fixtures-table tbody td:nth-child(3) {
  width: 10%;
}

.dp-cup-fixtures-table thead th:nth-child(5),
.dp-cup-fixtures-table tbody td:nth-child(5) {
  width: 34%;
}

.dp-cup-fixtures-table tbody tr {
  border-bottom: 1px solid #454545;
  color: #fff;
}

.dp-cup-fixtures-table tbody td {
  line-height: 1.5;
  text-align: center;
  padding: 8px 6px;
  font-size: 0.8rem;
  border: none;
}

.dp-cup-fixtures-table a {
  color: #ffcc00;
  text-decoration: none;
}

.dp-cup-fixtures-table a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .dp-cups-page {
    max-width: 1200px;
  }
}
