/* MATCH Section - Simple Clean Layout */

.match-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
  overflow-y: auto;
}

.match-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Sepia overlay */
.match-overlay::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(112, 66, 20, 0.20);
  pointer-events: none;
  z-index: 1;
}

.match-section {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Close button */
.match-close {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1001;
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(5, 5, 5, 0.85);
  color: white;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
}

/* Title */
.match-title-inline {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: 5rem;
  text-transform: uppercase;
  color: #050505;
  cursor: pointer;
  margin: 0 0 40px 0;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(5, 5, 5, 0.15);
}

.match-title-inline:hover {
  opacity: 0.8;
}

/* Manifesto */
.match-manifesto {
  font-family: 'Syne Mono', monospace;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #050505;
  margin-bottom: 60px;
}

.match-manifesto.match-closing {
  margin-top: 60px;
  margin-bottom: 0;
}

.match-line {
  font-family: 'Syne Mono', monospace;
  margin: 0.6em 0;
  opacity: 0;
  transform: translateY(16px);
}

.match-line.rm-finisher {
  font-family: 'Syne Mono', monospace;
  margin-top: 2em;
  font-weight: 700;
  letter-spacing: 0.15em;
}

@keyframes matchFadeSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Table */
.match-panels {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(5, 5, 5, 0.15);
}

.match-panel {
  opacity: 0;
  transform: translateY(36px);
  border-bottom: 1px solid rgba(5, 5, 5, 0.15);
}

.match-panel:last-child {
  border-bottom: none;
}

.match-panel td {
  width: 50%;
  padding: 40px;
  vertical-align: top;
}

.match-panel td:first-child {
  border-right: 1px solid rgba(5, 5, 5, 0.15);
}

/* Video */
.match-media {
  position: relative;
  background: #0e0f12;
}

.match-video {
  width: 100%;
  display: block;
}

.match-video-ctl {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: white;
  cursor: pointer;
}

/* Project text */
.match-copy h3 {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  color: #050505;
  margin: 0 0 1rem 0;
}

.match-copy p {
  font-family: 'Syne Mono', monospace;
  font-size: 1rem;
  line-height: 1.7;
  color: #050505;
  margin: 0.75rem 0;
}

.match-tag {
  font-family: 'Syne Mono', monospace;
  font-size: 0.9rem;
  font-weight: 700;
  font-style: italic;
  opacity: 0.7;
  margin-top: 1.25rem;
}

/* Mobile */
@media (max-width: 860px) {
  .match-title-inline {
    font-size: 3rem;
  }

  .match-panel td {
    display: block;
    width: 100%;
    border: none;
  }

  .match-panel td:first-child {
    border-bottom: 1px solid rgba(5, 5, 5, 0.1);
  }
}
