/* ==========================================================================
   SAPSKT — industrial dark
   Monochrome ground, hairline rules, square everything. One signal colour,
   used only for the booking CTA, section numbers, rider markers and states.
   ========================================================================== */

:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --line: #2a2a2a;
  --line-strong: #3d3d3d;
  --dim: #8a8a8a;
  --text: #e8e8e8;
  --signal: #ff3b00;

  --font: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --mono: 'Space Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Faint technical grid, in place of the old radial glows. */
.bg-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 79px, rgba(255, 255, 255, 0.022) 79px 80px),
    repeating-linear-gradient(90deg, transparent 0 79px, rgba(255, 255, 255, 0.022) 79px 80px);
}

#app {
  width: 100%;
  max-width: 1040px;
  padding: 4rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
}

/* --------------------------------------------------------------- Hero --- */

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  width: 100%;
}

.profile-container {
  width: 132px;
  height: 132px;
  border: 1px solid var(--line);
  padding: 5px;
  margin-inline: auto;
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.12);
  transition: filter 0.35s ease;
}

.profile-container:hover .profile-img { filter: grayscale(0) contrast(1); }

.title {
  font-size: clamp(2.75rem, 11vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--text);
  text-indent: 0.16em;
}

.subtitle {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.hero .pk-modes {
  margin-inline: auto;
  margin-top: 0.25rem;
}

.hero-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin-top: 0.75rem;
  border: 1px solid var(--line);
}

.hero-nav a {
  padding: 0.7rem 1.4rem;
  border-right: 1px solid var(--line);
  color: var(--dim);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.hero-nav a:last-child { border-right: 0; }

.hero-nav a:hover {
  color: var(--signal);
  background-color: var(--surface);
}

/* ---------------------------------------------------------- Sections --- */

.music-section,
.shows-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text);
}

.section-num {
  font-family: var(--mono);
  color: var(--signal);
  font-weight: 400;
}

.section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* ----------------------------------------------------------- Players --- */

.player-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color 0.25s ease;
}

.player-card:hover { border-color: var(--line-strong); }

.player-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.player-tag {
  padding: 0.25rem 0.7rem;
  border: 1px solid var(--signal);
  color: var(--signal);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.player-title {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text);
}

.player-frame {
  background: #000;
  line-height: 0;
  border: 1px solid var(--line);
}

.player-frame iframe {
  display: block;
  width: 100%;
  border: 0;
}

.player-frame--visual iframe { min-height: 300px; }

.player-credit {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--dim);
  letter-spacing: 0.04em;
}

.player-credit a {
  color: var(--dim);
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.player-credit a:hover {
  color: var(--signal);
  border-color: var(--signal);
}

.player-credit .dot { margin: 0 0.5rem; opacity: 0.4; }

/* ------------------------------------------------------------ Footer --- */

footer {
  margin-top: auto;
  padding: 2rem;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-align: center;
  border-top: 1px solid var(--line);
  width: 100%;
}

@media (max-width: 600px) {
  #app { padding: 2.5rem 1rem; gap: 3.5rem; }
  .hero-nav { flex-direction: column; width: 100%; }
  .hero-nav a { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-nav a:last-child { border-bottom: 0; }
  .player-card { padding: 1.1rem; }
  .player-frame--visual iframe { height: 320px; min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Press Kit (presskit.html)
   ========================================================================== */

body.presskit {
  /* The base rule's overflow-x: hidden makes body a scroll container and
     breaks position: sticky on the bar. clip stops the overflow without it. */
  overflow-x: clip;
  display: block;
}

.pk-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem 1.25rem;
  width: 100%;
  padding: 0.7rem clamp(1rem, 4vw, 2.5rem);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.pk-bar-back {
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--line-strong);
  color: var(--dim);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.pk-bar-back:hover { color: var(--signal); border-color: var(--signal); }

.pk-bar-name {
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
}

.pk-bar-back,
.pk-bar-name,
.pk-modes,
.pk-bar-cta { flex-shrink: 0; }

.pk-modes {
  display: flex;
  margin-left: auto;
  border: 1px solid var(--line-strong);
}

.pk-mode {
  padding: 0.42rem 0.85rem;
  font-family: var(--mono);
  font-size: 0.63rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.pk-mode + .pk-mode { border-left: 1px solid var(--line-strong); }

.pk-mode.is-active {
  background: var(--signal);
  color: #0a0a0a;
  font-weight: 700;
}

a.pk-mode:hover { color: var(--signal); }

.pk-bar-cta {
  padding: 0.55rem 1.4rem;
  background: var(--signal);
  color: #0a0a0a;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pk-bar-cta:hover { background: #ff5722; }

.pk {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 4vw, 1.5rem) 4rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* Hero */
.pk-hero {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 2.25rem;
  align-items: start;
}

.pk-hero-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  display: block;
  filter: grayscale(1) contrast(1.12);
}

.pk-eyebrow {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--signal);
}

.pk-name {
  font-size: clamp(2.25rem, 8vw, 3.75rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0.6rem 0 1rem;
}

.pk-hook {
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--text);
  max-width: 44ch;
}

.pk-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 1.25rem 0 1.75rem;
}

.pk-chips li {
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}

.pk-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.pk-btn {
  padding: 0.75rem 1.6rem;
  border: 1px solid var(--line-strong);
  color: var(--text);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.pk-btn:hover { border-color: var(--signal); color: var(--signal); }

.pk-btn--primary {
  background: var(--signal);
  border-color: var(--signal);
  color: #0a0a0a;
  font-weight: 700;
}

.pk-btn--primary:hover { background: #ff5722; border-color: #ff5722; color: #0a0a0a; }

/* Sections */
.pk-section { scroll-margin-top: 5rem; }

/* The shows script hides an emptied Upcoming section via the hidden property. */
[hidden] { display: none !important; }

.pk-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.75rem;
}

.pk-num {
  font-family: var(--mono);
  font-weight: 400;
  color: var(--signal);
}

.pk-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* Players */
.pk-player { margin-bottom: 1.5rem; }
.pk-player:last-child { margin-bottom: 0; }

.pk-player-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.pk-tag {
  padding: 0.22rem 0.65rem;
  border: 1px solid var(--signal);
  color: var(--signal);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pk-player-title {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.pk-frame {
  background: #000;
  line-height: 0;
  border: 1px solid var(--line);
}

.pk-frame iframe { display: block; width: 100%; border: 0; }

.pk-frame--video { aspect-ratio: 16 / 9; }
.pk-frame--video iframe { width: 100%; height: 100%; }

/* Biography */
.pk-lead {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text);
  max-width: 68ch;
}

.pk-details { margin-top: 1.5rem; }

.pk-details summary {
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal);
}

.pk-details-body {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 68ch;
  line-height: 1.75;
  color: var(--dim);
  border-left: 1px solid var(--line);
  padding-left: 1.25rem;
}

/* Shows */
.pk-shows { list-style: none; }

.pk-shows li {
  display: grid;
  grid-template-columns: 6.5rem 1fr auto;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}

.pk-show-year { font-family: var(--mono); color: var(--signal); font-size: 0.8rem; }
.pk-show-venue { color: var(--text); }
.pk-show-city { font-family: var(--mono); color: var(--dim); font-size: 0.8rem; }

/* Press photos */
.pk-photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.pk-photo { background: var(--bg); }

.pk-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.12);
  transition: filter 0.35s ease;
}

.pk-photo:hover img { filter: grayscale(0) contrast(1); }

.pk-photo figcaption {
  padding: 0.5rem 0.7rem;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
}

.pk-note {
  margin-top: 1.25rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--dim);
  line-height: 1.7;
  letter-spacing: 0.03em;
}

/* Tech rider */
.pk-rider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.pk-rider-block {
  padding: 1.35rem;
  background: var(--surface);
}

.pk-rider-block h3 {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 0.9rem;
}

.pk-rider-block ul { list-style: none; }

.pk-rider-block li {
  padding-left: 1rem;
  position: relative;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--dim);
}

.pk-rider-block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  background: var(--signal);
}

/* Booking */
.pk-booking {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.85rem;
  border: 1px solid var(--line);
  background: var(--surface);
}

.pk-email {
  display: inline-block;
  margin-top: 0.45rem;
  font-family: var(--mono);
  font-size: 1rem;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--signal);
  word-break: break-all;
}

.pk-email:hover { color: var(--signal); }

.pk-links { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; }

.pk-links a {
  display: inline-block;
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--line-strong);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.pk-links a:hover { color: var(--signal); border-color: var(--signal); }

.pk-footer {
  padding: 2rem;
  text-align: center;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  border-top: 1px solid var(--line);
}

.pk-footer a { color: var(--dim); }
.pk-footer a:hover { color: var(--signal); }

@media (max-width: 640px) {
  .pk-hero { grid-template-columns: 1fr; }
  .pk-hero-photo { max-width: 150px; margin-inline: auto; }
  .pk-bar { gap: 0.5rem 0.75rem; }
  .pk-bar-back { padding: 0.4rem 0.6rem; }
  .pk-shows li { grid-template-columns: 6.25rem 1fr; }
  .pk-show-city { grid-column: 2; }
}

.pk-credit {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.pk-credit:hover { color: var(--signal); border-color: var(--signal); }

.ig-icon {
  vertical-align: -0.14em;
  margin-right: 0.32em;
}

/* --------------------------------------------------------------------------
   Portrait crop
   profile.jpeg is landscape 3:2 but is shown in square frames (homepage hero,
   press kit hero, press photo grid), so object-fit: cover crops ~33% off the
   width. The subject stands at roughly 57% across the source rather than dead
   centre, so a 50% crop leaves them sitting right of centre. Shifting the crop
   window to 70% lands them at 51% of the frame.

   Targets the file rather than each frame so all three stay consistent, and
   leaves the other photos on their default centre crop.
   -------------------------------------------------------------------------- */
img[src$="profile.jpeg"] {
  object-position: 70% 50%;
}

/* Print: promoters still print riders. Drop the chrome and the dead embeds. */
@media print {
  body.presskit { background: #fff; color: #000; }

  .bg-overlay,
  .pk-bar,
  .pk-cta,
  .pk-frame,
  .pk-details summary { display: none !important; }

  .pk { max-width: none; gap: 1.5rem; }

  .pk-name,
  .pk-hook,
  .pk-lead,
  .pk-rider-block li,
  .pk-note,
  .pk-details-body,
  .pk-heading,
  .pk-photo figcaption { color: #000; }

  .pk-eyebrow,
  .pk-num,
  .pk-rider-block h3 { color: #000; }

  .pk-details-body { display: block !important; border-color: #999; }
  .pk-details[open] summary { display: none; }

  .pk-heading::after { background: #999; }

  .pk-rider,
  .pk-rider-block,
  .pk-booking,
  .pk-photos { border-color: #999; background: none; }

  .pk-rider-block li::before { background: #000; }
  .pk-photo img { filter: grayscale(1); }
  .pk-links a::after,
  .pk-credit::after { content: ' (' attr(href) ')'; font-size: 0.68rem; }
  .ig-icon { display: none; }
}

/* ==========================================================================
   Reggaeton mode (presskit-reggaeton.html)
   Neo-perreo / Y2K: neon on deep violet, chrome wordmark, glow where the
   techno kit uses hairlines. Scoped entirely to body.mode-reggaeton, so the
   techno kit is untouched by anything below.
   ========================================================================== */

body.mode-reggaeton {
  --bg: #0b0014;
  --surface: #1a0b28;
  --line: #40205e;
  --line-strong: #7b34b3;
  --dim: #c4aedb;
  --text: #ffffff;
  --signal: #ff2d95;
  --cyan: #3df0ff;
}

/* Neon wash and a tighter grid, in place of the industrial one. */
body.mode-reggaeton .bg-overlay {
  background-image:
    radial-gradient(ellipse 80% 55% at 50% -8%, rgba(255, 45, 149, 0.32), transparent 70%),
    radial-gradient(ellipse 70% 50% at 8% 105%, rgba(61, 240, 255, 0.18), transparent 70%),
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(255, 45, 149, 0.055) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(61, 240, 255, 0.045) 39px 40px);
}

/* Chrome wordmark */
body.mode-reggaeton .pk-name {
  font-family: 'Orbitron', var(--font);
  font-weight: 900;
  letter-spacing: 0.06em;
  background: linear-gradient(180deg, #ffffff 0%, #ffd9ef 38%, #ff2d95 62%, #a3128f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(255, 45, 149, 0.55));
}

body.mode-reggaeton .pk-eyebrow,
body.mode-reggaeton .pk-num {
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(61, 240, 255, 0.55);
}

body.mode-reggaeton .pk-bar { background: rgba(11, 0, 20, 0.92); }

/* Y2K gloss: rounded, saturated, lit from within. */
body.mode-reggaeton .pk-player,
body.mode-reggaeton .pk-rider-block,
body.mode-reggaeton .pk-booking,
body.mode-reggaeton .pk-frame,
body.mode-reggaeton .pk-photos,
body.mode-reggaeton .pk-rider,
body.mode-reggaeton .pk-hero-photo img,
body.mode-reggaeton .pk-photo img { border-radius: 14px; }

body.mode-reggaeton .pk-chips li,
body.mode-reggaeton .pk-links a,
body.mode-reggaeton .pk-btn,
body.mode-reggaeton .pk-mode,
body.mode-reggaeton .pk-tag { border-radius: 999px; }

/* No overflow: hidden here. The pills carry their own radius, and clipping
   the container is what truncated the inactive label when space ran short. */
body.mode-reggaeton .pk-modes { border-radius: 999px; }

body.mode-reggaeton .pk-bar-cta,
body.mode-reggaeton .pk-btn--primary,
body.mode-reggaeton .pk-mode.is-active {
  background: linear-gradient(180deg, #ff7cbf 0%, #ff2d95 55%, #cf0070 100%);
  border-color: transparent;
  /* Dark on neon rather than white: white on this magenta is 3.5:1, which
     fails AA for small bold text. Dark text on the same magenta is 5.9:1. */
  color: #14001f;
  box-shadow: 0 0 18px rgba(255, 45, 149, 0.45);
}

body.mode-reggaeton .pk-bar-cta:hover,
body.mode-reggaeton .pk-btn--primary:hover {
  background: linear-gradient(180deg, #ff97cd 0%, #ff4da6 55%, #e00079 100%);
  color: #14001f;
}

body.mode-reggaeton .pk-player { box-shadow: 0 0 32px rgba(255, 45, 149, 0.12); }

body.mode-reggaeton .pk-player:hover,
body.mode-reggaeton .pk-card:hover { border-color: var(--signal); }

/* Photos keep their colour here rather than being desaturated. */
body.mode-reggaeton .pk-hero-photo img,
body.mode-reggaeton .pk-photo img,
body.mode-reggaeton .pk-photo:hover img {
  filter: saturate(1.18) contrast(1.04);
}

body.mode-reggaeton .pk-rider-block li::before {
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(61, 240, 255, 0.8);
}

body.mode-reggaeton .pk-heading::after,
body.mode-reggaeton .section-title::after {
  background: linear-gradient(90deg, var(--signal), transparent);
}

body.mode-reggaeton .pk-show-year { color: var(--cyan); }

body.mode-reggaeton .pk-details-body { border-left-color: var(--signal); }

/* Print: the gradients and glows have to come off, or the wordmark prints as
   nothing at all (transparent fill over a background that is not printed). */
@media print {
  body.mode-reggaeton .pk-name {
    background: none;
    -webkit-text-fill-color: #000;
    color: #000;
    filter: none;
  }

  body.mode-reggaeton .pk-eyebrow,
  body.mode-reggaeton .pk-num,
  body.mode-reggaeton .pk-show-year {
    color: #000;
    text-shadow: none;
  }

  body.mode-reggaeton .pk-player,
  body.mode-reggaeton .pk-booking,
  body.mode-reggaeton .pk-rider-block { box-shadow: none; }

  body.mode-reggaeton .pk-rider-block li::before {
    background: #000;
    box-shadow: none;
  }

  body.mode-reggaeton .pk-heading::after { background: #999; }
  body.mode-reggaeton .pk-photo img { filter: grayscale(1); }
}

/* Reggaeton mode, homepage elements ---------------------------------------
   The press kit block above styles .pk-* classes; the homepage has its own,
   so the same treatment is applied to those here. */

body.mode-reggaeton .title {
  font-family: 'Orbitron', var(--font);
  font-weight: 900;
  letter-spacing: 0.05em;
  background: linear-gradient(180deg, #ffffff 0%, #ffd9ef 38%, #ff2d95 62%, #a3128f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 22px rgba(255, 45, 149, 0.55));
}

body.mode-reggaeton .subtitle { color: var(--dim); }

body.mode-reggaeton .section-num {
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(61, 240, 255, 0.55);
}

body.mode-reggaeton .profile-container { border-radius: 16px; }
body.mode-reggaeton .profile-img {
  border-radius: 11px;
  filter: saturate(1.18) contrast(1.04);
}
body.mode-reggaeton .profile-container:hover .profile-img { filter: saturate(1.3) contrast(1.06); }

body.mode-reggaeton .hero-nav,
body.mode-reggaeton .player-frame { border-radius: 12px; overflow: hidden; }

body.mode-reggaeton .hero-nav { border-radius: 999px; }
body.mode-reggaeton .hero-nav a:hover { color: var(--signal); background-color: var(--surface); }

body.mode-reggaeton .player-card {
  border-radius: 14px;
  box-shadow: 0 0 32px rgba(255, 45, 149, 0.12);
}

body.mode-reggaeton .player-card:hover { border-color: var(--signal); }
body.mode-reggaeton .player-tag { border-radius: 999px; }
body.mode-reggaeton .player-credit a:hover { color: var(--signal); border-color: var(--signal); }
