/* ============================================
   ABOUT PAGE
   ============================================ */

.about-main {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px 100px;
}

/* ---- Section heading ---- */
.about-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 6px;
  background: linear-gradient(90deg, var(--purple) 0%, var(--pink) 50%, var(--yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}

.about-rule {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  margin-bottom: 50px;
  border: none;
}

/* ---- Two-column layout ---- */
.about-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: start;
}

/* ---- Photo column ---- */
.about-photo-wrap {
  position: sticky;
  top: 30px;
}

.about-photo-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 3px solid #2a2a2a;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(155,47,235,0.3),
    0 20px 50px rgba(0,0,0,0.7),
    6px 6px 0 var(--purple);
}

.about-photo-frame img,
.about-photo-frame video {
  width: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

/* Scanline overlay on photo for retro feel */
.about-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.08) 3px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
}

.about-photo-caption {
  margin-top: 14px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.65rem;
  color: #666;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}

/* ---- Bio column ---- */
.about-bio {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-credentials {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.cred-badge {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}

.cred-badge.emmy {
  color: var(--yellow);
  border: 1.5px solid var(--yellow);
  box-shadow: 0 0 8px rgba(255,214,0,0.2);
}

.cred-badge.years {
  color: var(--pink);
  border: 1.5px solid var(--pink);
  box-shadow: 0 0 8px rgba(255,45,120,0.2);
}

.cred-badge.daily-show {
  color: var(--cyan);
  border: 1.5px solid var(--cyan);
  box-shadow: 0 0 8px rgba(0,230,255,0.15);
}

.about-bio p {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.95rem;
  line-height: 1.85;
  color: #c8c8c8;
  letter-spacing: 0.3px;
}

.about-bio p:last-of-type {
  color: #c8c8c8;
}

/* Networks strip */
.about-networks {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e;
}

.networks-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.55rem;
  color: #555;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-right: 6px;
}

.network-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: #666;
  transition: color 0.2s;
}

.network-tag:hover { color: var(--pink); }

/* ---- Responsive ---- */
@media (max-width: 780px) {
  .about-main { padding: 40px 24px 60px; }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-photo-wrap {
    position: static;
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .about-main { padding: 30px 16px 60px; }
  .about-heading { letter-spacing: 3px; }
  .about-card { padding: 24px 20px; }
  .about-credentials { gap: 8px; }
  .cred-badge { font-size: 0.5rem; padding: 4px 9px; }
  .about-bio p { font-size: 0.88rem; }
  .about-photo-wrap { max-width: 100%; }
}
