/* COMPETITORS PAGE */

.competitor-intro {
  margin-bottom: 30px;
}

.competitor-intro h2 {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--cream);
}

.competitor-intro p {
  margin: 0;
  max-width: 820px;
  font-size: 1.04rem;
  line-height: 1.6;
  color: rgba(249, 230, 183, 0.92);
}

.table-wrap {
  overflow-x: auto;
}

.competitor-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.competitor-table thead {
  background:
    linear-gradient(
      90deg,
      rgba(11, 45, 49, 0.96),
      rgba(6, 20, 24, 0.96)
    );
}

.competitor-table th {
  padding: 18px 16px;
  border-bottom: 1px solid rgba(201, 164, 88, 0.22);
  text-align: left;
  font-family: "Oswald", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.competitor-table td {
  padding: 18px 16px;
  border-bottom: 1px solid rgba(201, 164, 88, 0.12);
  font-size: 0.98rem;
  line-height: 1.45;
  color: rgba(249, 230, 183, 0.92);
}

.competitor-table tbody tr {
  transition: background 0.18s ease;
}

.competitor-table tbody tr:hover {
  background: rgba(201, 164, 88, 0.05);
}

.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(201, 164, 88, 0.28);
  font-family: "Oswald", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.status.confirmed {
  color: #9fd79f;
  border-color: rgba(159, 215, 159, 0.38);
}

.status.pending {
  color: #f1c97a;
  border-color: rgba(241, 201, 122, 0.34);
}

.competitor-footnote {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(201, 164, 88, 0.18);
}

.competitor-footnote p {
  margin: 0 0 12px;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(249, 230, 183, 0.9);
}

@media (max-width: 900px) {
  .competitor-table {
    min-width: 700px;
  }
}
/* COMPETITORS MOBILE SCROLLBAR STYLING */
.table-wrap {
  scrollbar-width: thin;
  scrollbar-color: #d1b77a #071112;
}

.table-wrap::-webkit-scrollbar {
  height: 10px;
}

.table-wrap::-webkit-scrollbar-track {
  background: #071112;
  border: 1px solid rgba(209, 183, 122, 0.25);
}

.table-wrap::-webkit-scrollbar-thumb {
  background: #d1b77a;
  border-radius: 999px;
  border: 2px solid #071112;
}

.table-wrap::-webkit-scrollbar-thumb:hover {
  background: #f8c95a;
}

@media (max-width: 700px) {
  .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid rgba(209, 183, 122, 0.28);
    background: #071112;
  }
}