/* HFL — Fight Card, Fight Detail, Fighters, etc. */

/* ============ FIGHT CARD ============ */
.fc-list { display: flex; flex-direction: column; gap: 16px; }
.fc-row {
  background: var(--hfl-surface);
  border: 1px solid var(--hfl-line);
  display: grid;
  grid-template-columns: 220px 1fr 60px 1fr 220px;
  align-items: stretch;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
}
.fc-row:hover { border-color: var(--hfl-orange); }
.fc-row.main {
  border-color: var(--hfl-orange);
  background: linear-gradient(180deg, rgba(252,69,19,0.08), transparent);
}
.fc-row .fc-portrait {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.fc-row .fc-fighter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}
.fc-row .fc-fighter.right { text-align: right; align-items: flex-end; }
.fc-row .fc-banner {
  grid-column: 1 / -1;
  background: var(--hfl-ink);
  padding: 10px 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--hfl-line);
}
.fc-row.main .fc-banner { background: var(--hfl-orange); color: #fff; border-bottom-color: var(--hfl-orange-deep); }
.fc-row .fc-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 36px;
  line-height: 0.9;
  letter-spacing: -0.01em;
}
.fc-row .fc-nick {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--hfl-orange);
  font-size: 11px;
  margin-top: 8px;
}
.fc-row .fc-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--hfl-text-dim);
  margin-top: 8px;
  letter-spacing: 0.04em;
}
.fc-row .fc-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  color: var(--hfl-orange);
  font-size: 32px;
  background: var(--hfl-ink);
}
.fc-tab-row {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--hfl-line);
  margin-bottom: 32px;
}
.fc-tab {
  padding: 16px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
  color: var(--hfl-text-dim);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  background: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
}
.fc-tab.active { color: var(--hfl-orange); border-bottom-color: var(--hfl-orange); }

/* Event toggle (HFL 7 / HFL 6 etc.) */
.fc-event-toggle {
  display: inline-flex;
  border: 1px solid var(--hfl-line-bright);
  background: var(--hfl-ink);
  margin-bottom: 32px;
}
.fc-event-toggle button {
  padding: 12px 28px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  color: var(--hfl-text-dim);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
}
.fc-event-toggle button:hover { color: #fff; }
.fc-event-toggle button.active {
  background: var(--hfl-orange);
  color: #fff;
}
.fc-status {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--hfl-text-dim);
  letter-spacing: 0.04em;
  padding: 16px 0;
}

/* Bout card — extends .fc-row with sheet-driven extras */
.fc-row.bout-card .fc-portrait {
  background: var(--hfl-ink);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.fc-row.bout-card .fc-portrait.left {
  border-right: 3px solid #E10600; /* red corner */
}
.fc-row.bout-card .fc-portrait.right {
  border-left: 3px solid #0066FF; /* blue corner */
}
.fc-row.bout-card .fc-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.fc-row.bout-card .winner-ribbon {
  position: absolute;
  top: 12px;
  left: -4px;
  background: var(--hfl-orange);
  color: #fff;
  padding: 4px 12px 4px 14px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}
.fc-row.bout-card .winner-ribbon.right {
  left: auto;
  right: -4px;
  clip-path: polygon(6px 0, 100% 0, 100% 100%, 0 100%);
  padding: 4px 14px 4px 12px;
}
.fc-row.bout-card .fight-num {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.7);
  border: 1px solid var(--hfl-line-bright);
  color: #fff;
  padding: 4px 10px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  z-index: 2;
}
.fc-row.bout-card .fight-num.left {
  right: auto;
  left: 12px;
}
.fc-row.bout-card .flag-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--hfl-text-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.fc-row.bout-card .fc-fighter.right .flag-row { justify-content: flex-end; }
.fc-row.bout-card .flag-row img {
  width: 24px;
  height: 18px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1);
}
.fc-row.bout-card .vs-discipline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 9px;
  color: var(--hfl-text-dim);
  margin-top: 6px;
  text-align: center;
}
.fc-empty {
  padding: 60px 24px;
  text-align: center;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 14px;
  color: var(--hfl-text-dim);
  border: 1px dashed var(--hfl-line-bright);
}

/* ============ FIGHT DETAIL — TALE OF THE TAPE ============ */
.tape {
  display: grid;
  grid-template-columns: 1fr 240px 1fr;
  gap: 0;
  background: var(--hfl-surface);
  border: 1px solid var(--hfl-line);
  margin-bottom: 32px;
}
.tape .tape-fighter { padding: 32px; }
.tape .tape-fighter.right { text-align: right; }
.tape .tape-portrait { height: 360px; position: relative; overflow: hidden; margin-bottom: 24px; }
.tape .tape-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 56px;
  line-height: 0.9;
  letter-spacing: -0.01em;
}
.tape .tape-nick {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--hfl-orange);
  font-size: 13px;
  margin-top: 8px;
  font-style: italic;
}
.tape .tape-record {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  margin-top: 16px;
}
.tape .tape-center {
  background: var(--hfl-ink);
  border-left: 1px solid var(--hfl-line);
  border-right: 1px solid var(--hfl-line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}
.tape .tape-vs {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 96px;
  color: var(--hfl-orange);
  line-height: 1;
}
.tape .tape-meta {
  text-align: center;
  margin-top: 16px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 11px;
  color: var(--hfl-text-dim);
  line-height: 1.6;
}
.tape-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--hfl-surface);
  border: 1px solid var(--hfl-line);
}
.tape-stats .row {
  display: contents;
}
.tape-stats .cell {
  padding: 18px 24px;
  border-top: 1px solid var(--hfl-line);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
}
.tape-stats .cell:nth-child(3n+1) { text-align: right; }
.tape-stats .cell:nth-child(3n+2) {
  text-align: center;
  background: var(--hfl-ink);
  font-size: 11px;
  color: var(--hfl-text-mute);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}
.tape-stats .row:first-child .cell { border-top: none; }
.tape-stats .cell .accent { color: var(--hfl-orange); }

.bar-stat {
  margin: 24px 0;
}
.bar-stat .lbl {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  color: var(--hfl-text-dim);
  margin-bottom: 8px;
}
.bar-stat .lbl .center {
  font-size: 12px;
  font-weight: 700;
  color: var(--hfl-text);
  letter-spacing: 0.15em;
}
.bar-stat .bar {
  display: flex;
  height: 24px;
  background: var(--hfl-surface-2);
  position: relative;
}
.bar-stat .bar-l {
  background: var(--hfl-orange);
  height: 100%;
  text-align: right;
  padding: 0 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #fff;
  font-weight: 700;
}
.bar-stat .bar-r {
  background: #fff;
  color: #000;
  height: 100%;
  text-align: left;
  padding: 0 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  display: flex;
  align-items: center;
  font-weight: 700;
}

/* ============ FIGHTERS GRID ============ */
.fighters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.fighter-card {
  background: var(--hfl-surface);
  border: 1px solid var(--hfl-line);
  position: relative;
  overflow: hidden;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}
.fighter-card:hover { border-color: var(--hfl-orange); transform: translateY(-2px); }
.fighter-card .pic { height: 280px; position: relative; overflow: hidden; }
.fighter-card .rank-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--hfl-orange);
  color: #fff;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  padding: 4px 10px;
  font-size: 12px;
  letter-spacing: 0.1em;
  z-index: 2;
}
.fighter-card .ctry-badge {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 24px;
  z-index: 2;
}
.fighter-card .info { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.fighter-card .info .name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 0.95;
}
.fighter-card .info .nick {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hfl-orange);
  font-size: 11px;
  margin-top: 6px;
  font-style: italic;
}
.fighter-card .info .meta {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--hfl-line);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--hfl-text-dim);
  letter-spacing: 0.04em;
}
.fighter-card .info .meta b { color: #fff; }

.filters {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.filter-pill {
  padding: 8px 16px;
  background: var(--hfl-surface);
  border: 1px solid var(--hfl-line);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  color: var(--hfl-text-dim);
  cursor: pointer;
}
.filter-pill.active { background: var(--hfl-orange); color: #fff; border-color: var(--hfl-orange); }

/* ============ FIGHTER PROFILE ============ */
.profile-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--hfl-ink);
  border: 1px solid var(--hfl-line);
  min-height: 520px;
}
.profile-portrait {
  position: relative;
  overflow: hidden;
  background: var(--hfl-black);
  border-right: 1px solid var(--hfl-line);
}
.profile-info { padding: 56px; display: flex; flex-direction: column; justify-content: center; }
.profile-info .nick {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--hfl-orange);
  font-style: italic;
  font-size: 14px;
  margin-bottom: 8px;
}
.profile-info h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 96px;
  line-height: 0.85;
  letter-spacing: -0.02em;
  margin: 0;
}
.profile-info .country-line {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  color: var(--hfl-text-dim);
  flex-wrap: wrap;
}
.profile-info .country-line .sep { color: var(--hfl-line-bright); }

.record-block {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr;
  background: var(--hfl-surface);
  border: 1px solid var(--hfl-line);
  margin-top: 32px;
}
.record-block .rb-cell {
  padding: 24px;
  border-right: 1px solid var(--hfl-line);
}
.record-block .rb-cell:last-child { border-right: none; }
.record-block .rb-cell .lbl {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 11px;
  color: var(--hfl-text-mute);
  margin-bottom: 8px;
}
.record-block .rb-cell .val {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
}
.record-block .rb-cell .val .accent { color: var(--hfl-orange); }
.record-block .wld {
  display: flex;
  gap: 12px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 64px;
  line-height: 0.9;
}
.record-block .wld .w { color: var(--hfl-win); }
.record-block .wld .l { color: var(--hfl-loss); }
.record-block .wld .d { color: var(--hfl-text-dim); }
.record-block .wld .sub-lbl {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--hfl-text-mute);
  font-style: normal;
  font-weight: 600;
}

.profile-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}
.stat-card {
  background: var(--hfl-surface);
  border: 1px solid var(--hfl-line);
  padding: 24px;
  margin-bottom: 16px;
}
.stat-card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  margin: 0 0 16px 0;
  color: var(--hfl-orange);
}

.attr-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.attr-grid .attr {
  padding: 16px;
  border: 1px solid var(--hfl-line);
  margin: -1px 0 0 -1px;
}
.attr-grid .attr .lbl {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 11px;
  color: var(--hfl-text-mute);
  margin-bottom: 4px;
}
.attr-grid .attr .val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
}

.timeline {
  background: var(--hfl-surface);
  border: 1px solid var(--hfl-line);
}
.timeline .tl-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 16px 24px;
  border-top: 1px solid var(--hfl-line);
  gap: 16px;
}
.timeline .tl-row:first-child { border-top: none; }
.timeline .tl-result {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  width: 32px;
}
.timeline .tl-result.w { color: var(--hfl-win); }
.timeline .tl-result.l { color: var(--hfl-loss); }
.timeline .tl-info .opp {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 16px;
}
.timeline .tl-info .meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--hfl-text-mute);
  margin-top: 4px;
}
.timeline .tl-event {
  font-family: var(--font-display);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hfl-text-dim);
  text-align: right;
}

/* ============ NEWS ============ */
.news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ============ GALLERY ============ */
.gallery-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.gal-item {
  position: relative;
  background: var(--hfl-surface);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--hfl-line);
  cursor: pointer;
  transition: all 0.2s;
}
.gal-item:hover { border-color: var(--hfl-orange); }
.gal-item.wide { grid-column: span 2; aspect-ratio: 2/1; }
.gal-item.tall { grid-row: span 2; aspect-ratio: 1/2; }
.gal-item.video::after {
  content: "▶";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  background: var(--hfl-orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  padding-left: 4px;
}
.gal-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
}

/* ============ TICKETS ============ */
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ticket-card {
  background: var(--hfl-surface);
  border: 1px solid var(--hfl-line);
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.ticket-card.featured {
  border-color: var(--hfl-orange);
  background: linear-gradient(180deg, rgba(252,69,19,0.08), transparent);
}
.ticket-card .tier {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--hfl-text-dim);
}
.ticket-card .tier-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 40px;
  line-height: 0.9;
  margin: 8px 0 0 0;
}
.ticket-card .price {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  margin: 24px 0 4px;
}
.ticket-card .price .accent { color: var(--hfl-orange); }
.ticket-card .price-sub { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.1em; font-size: 11px; color: var(--hfl-text-mute); }
.ticket-card ul { list-style: none; padding: 0; margin: 24px 0; flex: 1; }
.ticket-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--hfl-line);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ticket-card ul li::before {
  content: "▸";
  color: var(--hfl-orange);
}
.ticket-card .sold {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--hfl-loss);
  color: #fff;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  padding: 4px 10px;
  font-size: 11px;
  letter-spacing: 0.1em;
}

/* ============ ABOUT ============ */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--hfl-line);
}
.about-stats .as-cell {
  padding: 32px;
  border-right: 1px solid var(--hfl-line);
}
.about-stats .as-cell:last-child { border-right: none; }
.about-stats .num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 64px;
  line-height: 0.9;
  color: var(--hfl-orange);
}
.about-stats .lbl {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 11px;
  color: var(--hfl-text-dim);
  margin-top: 8px;
}

/* ============ RESULTS ============ */
.event-archive {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.event-row {
  background: var(--hfl-surface);
  border: 1px solid var(--hfl-line);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.event-row .ev-head { display: flex; justify-content: space-between; align-items: flex-start; }
.event-row .ev-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 88px;
  line-height: 0.85;
  color: var(--hfl-orange);
}
.event-row .ev-date {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
  color: var(--hfl-text-dim);
  text-align: right;
}
.event-row .ev-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 28px;
  margin: 8px 0;
  line-height: 1;
}
.event-row .ev-main {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--hfl-text-dim);
  margin-top: 8px;
}
.event-row .ev-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--hfl-line);
}
.event-row .ev-stats .es-num { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 24px; }
.event-row .ev-stats .es-lbl { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.1em; font-size: 10px; color: var(--hfl-text-mute); margin-top: 4px;}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.form-grid { display: flex; flex-direction: column; gap: 16px; }
.form-grid .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid label {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: var(--hfl-text-dim);
  display: block;
  margin-bottom: 6px;
}
.form-grid input, .form-grid textarea {
  width: 100%;
  background: var(--hfl-surface);
  border: 1px solid var(--hfl-line);
  color: #fff;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
}
.form-grid input:focus, .form-grid textarea:focus {
  outline: none;
  border-color: var(--hfl-orange);
}
.contact-info-block {
  background: var(--hfl-surface);
  border: 1px solid var(--hfl-line);
  padding: 32px;
}
.contact-info-block h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  color: var(--hfl-orange);
  margin: 0 0 16px;
}
.contact-info-block .info-row {
  padding: 12px 0;
  border-bottom: 1px solid var(--hfl-line);
}
.contact-info-block .info-row:last-child { border-bottom: none; }
.contact-info-block .label {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 11px;
  color: var(--hfl-text-mute);
  margin-bottom: 4px;
}
.contact-info-block .v {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES (Fighters & Pages)
   ========================================== */

/* Tablet & schermen kleiner dan 1024px */
@media (max-width: 1024px) {
  .fighters-grid {
    grid-template-columns: repeat(3, 1fr) !important; /* 3 kolommen op tablet */
    gap: 16px;
  }
}

/* Mobiel & tablets onder 768px */
@media (max-width: 768px) {
  .fighters-grid {
    grid-template-columns: repeat(2, 1fr) !important; /* 2 strakke kolommen op mobiel */
    gap: 12px;
  }
  
  .fighter-card .pic {
    height: 200px; /* Foto-hoogte iets verkleinen voor betere verhoudingen */
  }

  .fighter-card .info {
    padding: 12px;
  }

  .fighter-card .info .name {
    font-size: 18px; /* Iets kleinere namen om tekst-breaks netjes te houden */
  }

  .fighter-card .rank-badge, 
  .fighter-card .ctry-badge {
    font-size: 10px;
    padding: 4px 6px;
  }

  /* Filterbalk en Zoekbalk onder elkaar op mobiel */
  .filters {
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
    padding-bottom: 8px;
    margin-bottom: 12px;
    -webkit-overflow-scrolling: touch;
  }

  .filters::-webkit-scrollbar {
    display: none; /* Verberg scrollbalk voor strakke look */
  }

  .filter-pill {
    padding: 6px 12px;
    font-size: 10px;
  }

  /* Zoekbalk over de volle breedte op mobiel */
  #fighter-search {
    width: 100% !important;
  }
}

/* Zeer kleine mobiele schermen (< 480px) */
@media (max-width: 480px) {
  .fighters-grid {
    grid-template-columns: repeat(2, 1fr) !important; /* Blijft 2 kolommen voor een overzichtelijke grid */
    gap: 10px;
  }

  .fighter-card .pic {
    height: 170px;
  }
}


/* ==========================================
   RESPONSIVE MEDIA QUERIES (Results & Bout Cards)
   ========================================== */

/* Tablet (< 1024px) */
@media (max-width: 1024px) {
  .fc-row.bout-card {
    grid-template-columns: 140px 1fr 50px 1fr 140px; /* Smallere portretten op tablet */
  }
  .fc-row .fc-name {
    font-size: 24px;
  }
  .fc-row .fc-portrait {
    height: 160px;
  }
}

/* Mobiel & Smalle Schermen (< 768px) */
@media (max-width: 768px) {
  /* 1. Event toggle knoppen scrollbaar maken op mobiel */
  .fc-event-toggle {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
    -webkit-overflow-scrolling: touch;
  }
  .fc-event-toggle::-webkit-scrollbar {
    display: none;
  }
  .fc-event-toggle button {
    padding: 10px 18px;
    font-size: 12px;
  }

  /* 2. Event Header kaart compact schalen */
  .event-row {
    padding: 20px;
  }
  .event-row .ev-num {
    font-size: 52px;
  }
  .event-row .ev-title {
    font-size: 22px;
  }

  /* 3. Bout kaart herstructureren voor mobiel (boven elkaar) */
  .fc-row.bout-card {
    grid-template-columns: 1fr auto 1fr; /* Portretten naar boven, info eronder */
    grid-template-rows: auto auto;
  }

  .fc-row .fc-banner {
    grid-column: 1 / -1;
    font-size: 11px;
    padding: 8px 12px;
  }

  /* Vechter A Portret (Links-boven) */
  .fc-row.bout-card .fc-portrait.left {
    grid-column: 1;
    grid-row: 2;
    height: 140px;
  }

  /* VS Divider (Midden-boven) */
  .fc-row .fc-vs {
    grid-column: 2;
    grid-row: 2;
    font-size: 22px;
    padding: 0 8px;
  }

  /* Vechter B Portret (Rechts-boven) */
  .fc-row.bout-card .fc-portrait.right {
    grid-column: 3;
    grid-row: 2;
    height: 140px;
  }

  /* Vechter A Info (Links-onder) */
  .fc-row.bout-card .fc-fighter {
    grid-column: 1 / span 1;
    grid-row: 3;
    padding: 12px 8px;
  }

  /* Vechter B Info (Rechts-onder) */
  .fc-row.bout-card .fc-fighter.right {
    grid-column: 3 / span 1;
    grid-row: 3;
    padding: 12px 8px;
  }

  .fc-row .fc-name {
    font-size: 16px;
    line-height: 1.1;
  }

  .fc-row .fc-nick {
    font-size: 9px;
  }

  .fc-row.bout-card .flag-row {
    font-size: 10px;
    margin-top: 4px;
  }

  .fc-row.bout-card .flag-row img {
    width: 18px;
    height: 13px;
  }

  .fc-row.bout-card .winner-ribbon {
    font-size: 9px;
    padding: 2px 8px;
  }
}

/* Zeer kleine telefoons (< 480px) */
@media (max-width: 480px) {
  .fc-row.bout-card .fc-portrait {
    height: 120px;
  }
  .fc-row .fc-name {
    font-size: 14px;
  }
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES (Gallery & Lightbox)
   ========================================== */

/* Tablet (< 1024px) */
@media (max-width: 1024px) {
  .gal-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
}

/* Mobiel (< 768px) */
@media (max-width: 768px) {
  /* 1. Grid van 4 kolommen naar 2 kolommen */
  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  /* Reset wide en tall spankolommen zodat ze mobiel de verhouding niet breken */
  .gal-item.wide,
  .gal-item.tall {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 1;
  }

  .gal-overlay {
    padding: 10px;
    font-size: 10px;
  }

  /* 2. Horizontal scroll voor gallery filterknoppen */
  #gallery-filters {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
    padding-bottom: 8px;
    margin-bottom: 16px;
    -webkit-overflow-scrolling: touch;
  }

  #gallery-filters::-webkit-scrollbar {
    display: none;
  }

  #gallery-filters .filter-pill {
    padding: 6px 14px;
    font-size: 11px;
  }

  /* 3. Lightbox Modal mobiele optimalisaties */
  .lightbox-modal {
    padding: 16px;
  }

  .lightbox-content {
    max-height: 85vh;
  }

  .lightbox-content iframe {
    height: 240px !important; /* Pas YouTube spelers aan naar schermhoogte */
  }

  .lightbox-close {
    top: -36px;
    right: 0;
    font-size: 28px;
  }

  .lightbox-title {
    font-size: 14px;
    margin-top: 10px;
  }
}

/* Kleine telefoons (< 480px) */
@media (max-width: 480px) {
  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }

  .lightbox-content iframe {
    height: 200px !important;
  }
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES (Fighter Profile)
   ========================================== */

/* Tablet (< 1024px) */
@media (max-width: 1024px) {
  .profile-hero {
    min-height: auto;
  }
  .profile-info {
    padding: 32px;
  }
  .profile-info h1 {
    font-size: 64px;
  }
  .profile-grid {
    grid-template-columns: 1fr; /* Statistieken-kolom onder de bio klappen */
    gap: 24px;
  }
}

/* Mobiel & Smalle Schermen (< 768px) */
@media (max-width: 768px) {
  /* 1. Hero sectie (foto boven, naam eronder) */
  .profile-hero {
    grid-template-columns: 1fr;
  }

  .profile-portrait {
    height: 320px;
    border-right: none;
    border-bottom: 1px solid var(--hfl-line);
  }

  .profile-info {
    padding: 24px 16px;
  }

  .profile-info h1 {
    font-size: 48px;
    line-height: 0.9;
  }

  .profile-info .country-line {
    font-size: 12px;
    gap: 8px;
  }

  /* 2. Record Block onder elkaar / compact rastern op mobiel */
  .record-block {
    grid-template-columns: 1fr;
  }

  .record-block .rb-cell {
    border-right: none;
    border-bottom: 1px solid var(--hfl-line);
    padding: 16px;
  }

  .record-block .rb-cell:last-child {
    border-bottom: none;
  }

  .record-block .wld {
    font-size: 40px;
  }

  /* 3. Physical Attributes Grid (2 kolommen over volle breedte) */
  .attr-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .attr-grid .attr {
    padding: 12px;
  }

  .attr-grid .attr .val {
    font-size: 16px;
  }

  /* 4. Timeline (Vorige Gevechten) op mobiel */
  .timeline .tl-row {
    flex-wrap: wrap;
    gap: 8px;
  }

  .timeline .tl-event {
    width: 100%;
    text-align: left;
    font-size: 11px;
    color: var(--hfl-orange);
  }
}

/* Kleine telefoons (< 480px) */
@media (max-width: 480px) {
  .profile-portrait {
    height: 260px;
  }

  .profile-info h1 {
    font-size: 38px;
  }

  .record-block .wld {
    font-size: 32px;
  }
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES (About Page)
   ========================================== */

/* Tablet (< 1024px) */
@media (max-width: 1024px) {
  .about-hero {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-hero h2.section-title {
    font-size: 48px !important;
  }
}

/* Mobiel & Smalle Schermen (< 768px) */
@media (max-width: 768px) {
  /* 1. About Hero onder elkaar stapelen */
  .about-hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-hero h2.section-title {
    font-size: 36px !important;
    line-height: 1.05;
  }

  /* 2. Statistiekenblok onder elkaar stapelen op mobiel */
  .about-stats {
    grid-template-columns: 1fr;
    border-right: 1px solid var(--hfl-line);
  }

  .about-stats .as-cell {
    border-right: none;
    border-bottom: 1px solid var(--hfl-line);
    padding: 20px;
    text-align: center;
  }

  .about-stats .as-cell:last-child {
    border-bottom: none;
  }

  .about-stats .num {
    font-size: 48px;
  }

  /* 3. Venue & Lifestyle partner grid onder elkaar klappen */
  section .container > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Venue titels kleiner op mobiel */
  #venue {
    margin: 48px 0 24px !important;
    font-size: 36px !important;
  }

  section .container div h3 {
    font-size: 28px !important;
  }
}

/* Kleine telefoons (< 480px) */
@media (max-width: 480px) {
  .about-hero h2.section-title {
    font-size: 30px !important;
  }

  .about-stats .num {
    font-size: 40px;
  }
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES (Contact Page)
   ========================================== */

/* Tablet & Mobiel (< 900px) */
@media (max-width: 900px) {
  /* 1. Contact grid onder elkaar stapelen */
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}

/* Mobiele telefoons (< 600px) */
@media (max-width: 600px) {
  /* 2. Invoervelden in het formulier onder elkaar klappen */
  .form-grid .row {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Knop over volle breedte op mobiel */
  .form-grid button[type="submit"] {
    width: 100%;
    justify-content: center;
  }

  /* Hero titel schalen op kleine schermen */
  .page-hero h1 {
    font-size: 36px !important;
  }
}
