/* ========================================
   UFC-STYLE FIGHT CARD
   ======================================== */

.fightcard {
  max-width: 900px;
  margin: 0 auto;
}

/* Section labels */
.fightcard__section {
  text-align: center;
  margin: var(--space-3xl) 0 var(--space-xl);
}

.fightcard__section:first-child {
  margin-top: 0;
}

.fightcard__section-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 6px 20px;
  border-radius: 999px;
  display: inline-block;
}

.fightcard__section-label--main {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
}

.fightcard__section-label--co-main {
  background: rgba(192, 192, 192, 0.15);
  border: 1px solid rgba(192, 192, 192, 0.3);
  color: #C0C0C0;
}

.fightcard__section-label--undercard {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  color: var(--gray);
}

/* Individual fight */
.fight {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
}

.fight:hover {
  border-color: var(--dark-border-light);
  box-shadow: var(--shadow-card);
}

.fight--main {
  border-color: rgba(212, 175, 55, 0.3);
  background: linear-gradient(135deg, var(--dark-card) 0%, rgba(212, 175, 55, 0.03) 100%);
}

.fight--main:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

.fight--co-main {
  border-color: rgba(192, 192, 192, 0.2);
}

/* Fight number label */
.fight__label {
  text-align: center;
  padding: var(--space-sm);
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray);
  border-bottom: 1px solid var(--dark-border);
}

.fight--main .fight__label {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
}

.fight--co-main .fight__label {
  color: #C0C0C0;
}

/* Matchup container — two fighters with VS in middle */
.fight__matchup {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: var(--space-lg) var(--space-xl);
  gap: var(--space-lg);
}

/* Fighter card */
.fight__fighter {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.fight__fighter--right {
  flex-direction: row-reverse;
  text-align: right;
}

/* Avatar / character image placeholder */
.fight__avatar {
  width: 64px;
  height: 64px;
  background: var(--dark-border);
  border-radius: var(--radius-md);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 900;
  color: var(--gray);
  text-transform: uppercase;
  overflow: hidden;
}

.fight--main .fight__avatar {
  width: 80px;
  height: 80px;
  border: 2px solid rgba(212, 175, 55, 0.2);
}

.fight__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Fighter info */
.fight__info {
  flex: 1;
  min-width: 0;
}

.fight__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 4px;
}

.fight--main .fight__name {
  font-size: 1.2rem;
}

/* Stats grid */
.fight__stats {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.fight__fighter--right .fight__stats {
  justify-content: flex-end;
}

.fight__stat {
  display: flex;
  flex-direction: column;
}

.fight__stat-label {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
}

.fight__stat-value {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--white);
  font-weight: 600;
}

/* Social links */
.fight__socials {
  display: flex;
  gap: var(--space-sm);
  margin-top: 6px;
}

.fight__fighter--right .fight__socials {
  justify-content: flex-end;
}

.fight__social {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  text-decoration: none;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  background: var(--dark);
  border: 1px solid var(--dark-border);
  transition: all 0.2s var(--ease-out);
}

.fight__social:hover {
  color: var(--white);
  border-color: var(--dark-border-light);
}

.fight__social--twitch:hover { color: #9146FF; border-color: #9146FF; }
.fight__social--kick:hover { color: #53FC18; border-color: #53FC18; }
.fight__social--twitter:hover { color: #1DA1F2; border-color: #1DA1F2; }

/* VS divider */
.fight__vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 var(--space-sm);
}

.fight__vs-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.5;
}

.fight--main .fight__vs-text {
  font-size: 1.75rem;
  opacity: 0.8;
  text-shadow: 0 0 15px var(--gold-glow);
}

.fight__vs-line {
  width: 1px;
  height: 30px;
  background: var(--dark-border);
}

/* Responsive */
@media (max-width: 700px) {
  .fight__matchup {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    text-align: center;
  }

  .fight__fighter,
  .fight__fighter--right {
    flex-direction: column;
    text-align: center;
  }

  .fight__fighter--right .fight__stats,
  .fight__fighter--right .fight__socials {
    justify-content: center;
  }

  .fight__stats {
    justify-content: center;
  }

  .fight__socials {
    justify-content: center;
  }

  .fight__vs {
    flex-direction: row;
    gap: var(--space-md);
  }

  .fight__vs-line {
    width: 40px;
    height: 1px;
  }
}
