@charset "utf-8";
/* ===== Base ===== */
* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 16px;
}

/* ===== Fixed Artboard (1200 x 725) ===== */
.artboard {
  position: relative;
  width: 1200px;
  height: 725px;
  background: #ffffff;
  overflow: hidden;
}

/* ===== Hover Pop (icons + source-logo) ===== */
.hover-pop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.22s ease, filter 0.22s ease;
  border-radius: 14px;
}

.hover-pop:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.35));
}

/* ===== Source Logo ===== */
.source-link {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.source-logo {
  width: 388px;
  height: 179px;
  display: block;
  object-fit: contain;
  image-rendering: auto;
}

/* ===== Follow + Social ===== */
.follow-block {
  position: absolute;
  top: 172px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 25;
}

.follow-text {
  font-family: "Tempus Sans ITC", "Brush Script MT", "Segoe Script", "Apple Chancery", cursive;
  font-size: 56px;
  line-height: 1;
  margin: 0 0 10px 0;
}

.social-row {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
}

.social-icon {
  width: 54px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ===== Portraits ===== */
.portraits-row {
  /* Desktop: wrapper exists but portraits are absolutely positioned */
}

.portrait {
  position: absolute;
  bottom: 86px;
  width: auto;
  height: auto;
  object-fit: contain;
  z-index: 8;
}

.portrait-left {
  left: 195px;
  height: 480px;
}

.portrait-right {
  right: 130px;
  height: 505px;
}

/* Desktop-only: Karen nudge right by 25px */
.portrait-karen {
  margin-left: 25px;
}

/* ===== Podcast Panel (center) ===== */
.podcast-wrap {
  position: absolute;
  left: 50%;
  top: 286px;
  transform: translateX(-50%);
  width: 268px;
  height: 269px;
  z-index: 18;
}

.podcast-panel {
  width: 268px;
  height: 269px;
  display: block;
  object-fit: contain;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 16px;
  gap: 10px;
}

.player-title {
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  margin-top: 8px;
}

.player {
  width: 100%;
  max-width: 230px;
}

/* ===== Bottom Title ===== */
.name-title {
  position: absolute;
  left: 50%;
  bottom: 44px;
  transform: translateX(-50%);
  width: 631px;
  height: auto;
  z-index: 22;
  object-fit: contain;
}

/* ===== Footer ===== */
.footer {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 30;
}

.footer-line {
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0.95;
}

.sep { opacity: 0.6; }

.footer-link {
  color: #111;
  text-decoration: none;
  position: relative;
  transition: all 0.35s ease;
}

.footer-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: rgba(0,0,0,0.65);
  transition: width 0.35s ease;
}

.footer-link:hover {
  text-shadow:
    0 0 6px rgba(0,0,0,0.18),
    0 0 12px rgba(0,0,0,0.12);
}

.footer-link:hover::after { width: 100%; }

/* ===== Responsive: scale the poster for smaller desktop/tablet ===== */
@media (max-width: 1240px) {
  .artboard {
    width: min(1200px, 96vw);
    height: auto;
    aspect-ratio: 1200 / 725;
  }
}


/* =========================================================
   MOBILE MODE: stacked layout + player overlay fix (MOBILE ONLY)
   ========================================================= */
@media (max-width: 700px) {

  .page {
    place-items: start center;
    padding: 12px 12px 20px;
  }

  .artboard {
    width: min(520px, 100%);
    height: auto;
    aspect-ratio: auto;
    overflow: visible;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;

    padding: 18px 14px 14px;
  }

  /* make poster elements flow naturally */
  .source-link,
  .follow-block,
  .podcast-wrap,
  .name-title,
  .footer,
  .portrait {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    z-index: auto !important;
  }

  .source-logo {
    width: min(320px, 92vw);
    height: auto;
  }

  .follow-text {
    font-size: 50px;
    margin: 0 0 8px;
  }

  .social-row { gap: 14px; }
  .social-icon { width: 52px; }

  /* Podcast panel sizing */
  .podcast-wrap {
    width: min(340px, 92vw);
  }

  .podcast-panel {
    width: 100%;
    height: auto;
  }

  /* ✅ REVISION #1: Mobile-only player positioning fix */
  .player-overlay {
    position: absolute !important;
    inset: 0 !important;

    /* switch from grid center to top-anchored flex */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;

    /* fine tune the “exact top” on mobile */
    padding: 34px 16px 18px !important;
    gap: 10px !important;
  }

  .player-title {
    margin: 0 !important;
    font-size: 12px;
    letter-spacing: 0.14em;
  }

  .player {
    width: 92% !important;
    max-width: 290px !important;
  }

  /* Portraits row on mobile */
  .portraits-row {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
  }

  .portrait-left { height: 260px; }
  .portrait-right { height: 270px; }

  /* remove desktop nudge effect in mobile */
  .portrait-karen { margin-left: 0 !important; }

  .name-title {
    width: min(92vw, 420px);
    height: auto;
  }

  .footer {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 6px;
  }

  .footer-line {
    font-size: 12px;
    line-height: 1.35;
  }
}

