  :root{
    --bg: #ffffff;
    --ink: #0a0a0a;
    --link: #1a1aff;
    --link-visited: #551a8b;
    --dim: #6b6b6b;
    --line: #d9d9d9;
    --placeholder-bg: #f2f2f2;
    --mono: "IBM Plex Mono", "Courier New", monospace;
  }
  * { box-sizing: border-box; }
  html, body {
    margin: 0; padding: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--mono);
    font-size: 15px;
    line-height: 1.5;
  }
  a { color: var(--link); text-decoration: none; }
  a:visited { color: var(--link-visited); }
  a:hover { text-decoration: underline; }

  header {
    padding: 28px 32px 16px;
    display: flex;
    align-items: baseline;
    gap: 28px;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--line);
  }
  header .logo {
    font-weight: 700;
    letter-spacing: 0.04em;
  }
  nav { display: flex; gap: 20px; }
  nav button {
    background: none; border: none; cursor: pointer;
    font-family: var(--mono); font-size: 15px; color: var(--dim);
    padding: 0;
  }
  nav button.active { color: var(--ink); text-decoration: underline; }
  nav button:hover { color: var(--ink); }

  main { padding: 32px; min-height: 70vh; }
  section { display: none; }
  section.active { display: block; }

  /* --- CINE --- */
  .cine-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
  }
  .cine-list { border-right: 1px solid var(--line); padding-right: 24px; }
  .cine-list button {
    display: block; width: 100%; text-align: left;
    background: none; border: none; cursor: pointer;
    font-family: var(--mono); font-size: 15px; color: var(--ink);
    padding: 10px 0; border-bottom: 1px solid var(--line);
  }
  .cine-list button .role {
    display: block; font-size: 12px; color: var(--dim); margin-top: 2px;
  }
  .cine-list button.active { color: var(--link); }

  .cine-detail { display: none; }
  .cine-detail.active { display: block; }
  .cine-detail-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
  }
  .poster-placeholder {
  background: var(--placeholder-bg);
  display: flex; align-items: center; justify-content: center;
  text-align: center; font-size: 12px;
  aspect-ratio: 2/3;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.poster-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
  .poster-placeholder { aspect-ratio: 2/3; }
  .still-placeholder { aspect-ratio: 16/9; }
  .film-title { font-size: 20px; font-weight: 700; margin: 0 0 6px; }
  .film-role { color: var(--link); margin: 0 0 16px; font-size: 13px; }
  .film-synopsis { margin: 0 0 24px; max-width: 60ch; }
  .stills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    grid-auto-rows: 8px;
    grid-auto-flow: dense;
    gap: 10px;
  }
  .stills-grid img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    background: var(--placeholder-bg);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .stills-grid .s-lg { grid-row: span 10; grid-column: span 1; }
  .stills-grid .s-md { grid-row: span 10; grid-column: span 1; }
  .stills-grid .s-sm { grid-row: span 10; grid-column: span 2; }
  .stills-grid .s-wide { grid-row: span 10; grid-column: span 2; }

  .video-block { margin-top: 32px; }
  .video-block h4 {
    font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--dim); margin: 0 0 12px; font-weight: 400;
    
  }
  .video-embeds {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
  }
  .video-embed-wrap {
    position: relative; width: 100%; padding-top: 56.25%;
    background: var(--placeholder-bg);
    
  }
  .video-embed-wrap iframe {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none;
  }
  .video-embed-label {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; color: var(--dim); text-align: center; padding: 8px;
  }

  /* --- MUSICA --- */
  .musica-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 24px;
  max-width: 900px;
  }
  .track {
    cursor: pointer;
  }
  .track .art-placeholder {
    aspect-ratio: 1/1;
    display: flex; align-items: center; justify-content: center;
    text-align: center; font-size: 12px; padding: 10px;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
    object-fit: cover;
    width: 100%;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .track .art-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .track .embed-wrap {display: none; }
  .track.open .embed-wrap { display: block; }
  
  .track iframe {
    overflow: hidden;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  footer {
    padding: 24px 32px;
    border-top: 1px solid var(--line);
    font-size: 12px;
    color: var(--dim);
  }

  .note {
    font-size: 12px;
    color: var(--dim);
    margin-top: 24px;
    max-width: 60ch;
  }

  .social-links {
  display: flex;
  gap: 28px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}
.social-link:hover {
  color: var(--link);
}
.social-link span {
  font-size: 13px;
}

.platform-embeds {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 24px;
  max-width: 900px;
}
.platform-embeds iframe {
  width: 100%;
  display: block;
}

  @media (max-width: 720px) {
    .cine-layout { grid-template-columns: 1fr; }
    .cine-list { border-right: none; border-bottom: 1px solid var(--line); padding-right: 0; padding-bottom: 12px; }
    .cine-detail-grid { grid-template-columns: 1fr; }
  }

  