/* ============================================================
   EL BANDONEÓN CON RUEDAS — style.css
   Estética: suave, luminosa, tipo Disney/Pixar — para chicos
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700&display=swap');

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background-color: #5bc8f0;
  color: #1a2e44;
  overflow-x: hidden;
}

/* ---------- VARIABLES ---------- */
:root {
  --sky:       #5bc8f0;
  --sky-light: #a8e4f8;
  --sky-pale:  #d6f3fc;
  --sky-dark:  #2da8d8;
  --white:     #ffffff;
  --yellow:    #ffd43b;
  --orange:    #ff7b3b;
  --pink:      #ff5c8d;
  --green:     #52d68a;
  --purple:    #9b6dff;
  --navy:      #1a2e44;
  --radius:    22px;
  --radius-lg: 36px;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--sky-light); }
::-webkit-scrollbar-thumb { background: var(--sky-dark); border-radius: 10px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 80px;
  background: var(--sky);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}
.nav-logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  transition: transform .2s;
}
.nav-logo:hover .nav-logo-img {
  transform: scale(1.06);
}
.nav-links {
  display: flex;
  gap: 10px;
  list-style: none;
}
.nav-link {
  display: block;
  padding: 8px 18px;
  font-family: 'Fredoka One', cursive;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  color: var(--white);
  text-decoration: none;
  border: none;
  border-radius: 50px;
  transition: all .2s;
  white-space: nowrap;
  cursor: pointer;
}
.nav-link:hover,
.nav-link.active {
  filter: brightness(0.92);
  transform: translateY(-2px);
}
.nav-link[data-section="home"] { background: transparent; }
.nav-link[data-section="home"]:hover,
.nav-link[data-section="home"].active { background: rgba(255,255,255,0.25); filter: none; }
.nav-link[data-section="videos"]    { background: rgba(255, 92, 141, 0.65);  color: white; box-shadow: 0 4px 6px rgba(0,0,0,0.25); }
.nav-link[data-section="cantantes"] { background: rgba(82, 214, 138, 0.65);  color: white; box-shadow: 0 4px 6px rgba(0,0,0,0.25); }
.nav-link[data-section="creadores"] { background: rgba(155, 109, 255, 0.65); color: white; box-shadow: 0 4px 6px rgba(0,0,0,0.25); }
.nav-link[data-section="canciones"] { background: rgba(255, 212, 59, 0.65);  color: white; box-shadow: 0 4px 6px rgba(0,0,0,0.25); }
.nav-link[data-section="videos"]:hover,
.nav-link[data-section="videos"].active    { background: #ff5c8d; color: white; box-shadow: 0 7px 10px rgba(0,0,0,0.28); transform: translateY(-2px); }
.nav-link[data-section="cantantes"]:hover,
.nav-link[data-section="cantantes"].active { background: #52d68a; color: white; box-shadow: 0 7px 10px rgba(0,0,0,0.28); transform: translateY(-2px); }
.nav-link[data-section="creadores"]:hover,
.nav-link[data-section="creadores"].active { background: #9b6dff; color: white; box-shadow: 0 7px 10px rgba(0,0,0,0.28); transform: translateY(-2px); }
.nav-link[data-section="canciones"]:hover,
.nav-link[data-section="canciones"].active { background: #ffd43b; color: #1a2e44; box-shadow: 0 7px 10px rgba(0,0,0,0.28); transform: translateY(-2px); }
.nav-toggle {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle-label {
  display: none;
  font-family: 'Fredoka One', cursive;
  font-size: 0.9rem;
  color: var(--navy);
}
.nav-toggle-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle-lines span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 3px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  display: none;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 64px;
}
.section.active { display: block; }
#home.section { padding-top: 80px; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   HERO BANNER
   ============================================================ */
.hero {
  width: 100%;
  overflow: hidden;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 12px 40px rgba(26,46,68,0.15);
  margin-top: 0;
  padding-top: 0;
  margin-bottom: 52px;
}
.hero-banner {
  width: 100%;
  min-width: 900px;
  max-height: 440px;
  object-fit: cover;
  object-position: center center;
  display: block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-header {
  text-align: center;
  padding: 20px 0 36px;
}
.section-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.1;
}
.section-subtitle {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  opacity: .72;
  max-width: 780px;
  margin: 0 auto;
  white-space: nowrap;
  line-height: 1.5;
}

/* ============================================================
   HOME — intro
   ============================================================ */
.home-intro {
  text-align: center;
  padding: 0 0 44px;
}
.home-intro h2 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 14px;
}
.home-intro p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.65;
}

.genre-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 60px;
}
.pill {
  padding: 11px 26px;
  border-radius: 50px;
  border: none;
  font-family: 'Fredoka One', cursive;
  font-size: 1.15rem;
  transition: transform .2s, box-shadow .2s;
  cursor: default;
  user-select: none;
}
.pill:hover { transform: translateY(-3px); }
.pill-tango    { background: var(--pink);   color: var(--white); box-shadow: 0 6px 20px rgba(255,92,141,0.4); }
.pill-tango:hover { box-shadow: 0 10px 28px rgba(255,92,141,0.5); }
.pill-milonga  { background: var(--green);  color: var(--white); box-shadow: 0 6px 20px rgba(82,214,138,0.4); }
.pill-milonga:hover { box-shadow: 0 10px 28px rgba(82,214,138,0.5); }
.pill-vals     { background: var(--purple); color: var(--white); box-shadow: 0 6px 20px rgba(155,109,255,0.4); }
.pill-vals:hover { box-shadow: 0 10px 28px rgba(155,109,255,0.5); }
.pill-canciones{ background: var(--yellow); color: var(--navy);  box-shadow: 0 6px 20px rgba(255,212,59,0.4); }
.pill-canciones:hover { box-shadow: 0 10px 28px rgba(255,212,59,0.5); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}
.feature-card {
  background: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  padding: 34px 26px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  transition: transform .2s, box-shadow .2s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.card-icon { font-size: 2.8rem; margin-bottom: 14px; }
.feature-card h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.45rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: .98rem;
  font-weight: 600;
  line-height: 1.65;
  color: #2e4a65;
}
.feature-card:nth-child(1) { background: #fff0f5; border-top: 5px solid var(--pink); }
.feature-card:nth-child(2) { background: #f0fdf6; border-top: 5px solid var(--green); }
.feature-card:nth-child(3) { background: #fefce8; border-top: 5px solid var(--yellow); }
.feature-card:nth-child(4) { background: #f3eeff; border-top: 5px solid var(--purple); }

.cta-banner {
  background: var(--yellow);
  border: none;
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  text-align: center;
  box-shadow: 0 10px 36px rgba(255,212,59,0.35);
  margin-bottom: 64px;
}
.cta-banner h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.9rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.cta-banner p {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 26px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-3px); }
.btn-sky    { background: var(--sky);   color: var(--navy);  box-shadow: 0 6px 20px rgba(91,200,240,0.4); }
.btn-sky:hover { box-shadow: 0 10px 28px rgba(91,200,240,0.5); }
.btn-yt     { background: #ff0000;      color: var(--white); box-shadow: 0 6px 20px rgba(255,0,0,0.3); }
.btn-yt:hover { box-shadow: 0 10px 28px rgba(255,0,0,0.4); }
.btn-dark   { background: var(--navy);  color: var(--white); box-shadow: 0 6px 20px rgba(26,46,68,0.35); }
.btn-dark:hover { box-shadow: 0 10px 28px rgba(26,46,68,0.45); }
.btn-orange { background: var(--orange);color: var(--white); box-shadow: 0 6px 20px rgba(255,123,59,0.4); }
.btn-orange:hover { box-shadow: 0 10px 28px rgba(255,123,59,0.5); }

/* ============================================================
   VIDEOS
   ============================================================ */
.videos-featured {
  background: var(--navy);
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(26,46,68,0.25);
  margin-bottom: 40px;
}
.videos-featured iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
}
.videos-featured-label {
  padding: 16px 24px;
  font-family: 'Fredoka One', cursive;
  font-size: 1.2rem;
  color: var(--sky-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.playlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
  margin-bottom: 48px;
}
.video-card {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.45);
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.video-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(0,0,0,0.15); }
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--sky-light);
  border-radius: 0;
  overflow: hidden;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: background .2s;
}
.video-card:hover .play-overlay { background: transparent; }
.play-icon {
  width: 28px; height: 28px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform .2s;
}
.video-card:hover .play-icon { transform: scale(1.15); }
.video-info { display: none; }
.video-info h4 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 5px;
  line-height: 1.3;
}
.video-info span {
  font-size: .82rem;
  font-weight: 700;
  color: #5a7a98;
  text-transform: uppercase;
  letter-spacing: .4px;
}

/* IMAGE LIGHTBOX */
.img-lightbox { cursor: zoom-in; }
.img-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.img-modal.open { display: flex; }
.img-modal img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.img-modal-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
  background: var(--pink);
  border-radius: 50%;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
}

/* SUSCRIBETE BUTTON */
.suscribete-btn {
  animation: zoomPulse 1s ease-in-out infinite;
  cursor: pointer;
}
@keyframes zoomPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.06); }
}
.suscribete-btn:hover { animation: none; transform: scale(1.08); }

/* VIDEO MODAL */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(26,46,68,.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.video-modal.open { display: flex; }
.modal-box {
  position: relative;
  width: 100%;
  max-width: 880px;
  background: var(--navy);
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.modal-box iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
}
.modal-close {
  position: absolute;
  top: 12px; right: 14px;
  font-size: 1.3rem;
  color: var(--white);
  cursor: pointer;
  background: var(--pink);
  border: none;
  border-radius: 50%;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(255,92,141,0.4);
  transition: transform .2s;
  z-index: 10;
}
.modal-close:hover { transform: scale(1.2) rotate(10deg); }

/* ============================================================
   PROFILE CARDS
   ============================================================ */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 64px;
}
.profile-card {
  background: rgba(255, 255, 255, 0.5);
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  transition: transform .2s, box-shadow .2s;
}
.profile-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.28);
}
.profile-top {
  padding: 30px 28px 22px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border-bottom: 1px solid rgba(26,46,68,0.08);
}
.profile-emoji {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.profile-meta h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.45rem;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.2;
}
.role-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  border: none;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.profile-body { padding: 22px 28px; }
.profile-body p {
  font-size: .97rem;
  font-weight: 600;
  line-height: 1.7;
  color: #2e4a65;
  margin-bottom: 14px;
  text-align: justify;
}
.profile-body p:last-child { margin-bottom: 0; }
.award-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--yellow);
  border: none;
  border-radius: 50px;
  padding: 5px 14px;
  font-size: .84rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  box-shadow: 0 3px 10px rgba(255,212,59,0.35);
}

/* card accent top borders */
.acc-pink   { border-top: 5px solid var(--pink);   }
.acc-purple { border-top: 5px solid var(--purple);  }
.acc-orange { border-top: 5px solid var(--orange);  }
.acc-green  { border-top: 5px solid var(--green);   }
.acc-yellow { border-top: 5px solid var(--yellow);  }
.acc-sky    { border-top: 5px solid var(--sky-dark);}

.bg-pink   { background: var(--pink);   color: var(--white); }
.bg-purple { background: var(--purple); color: var(--white); }
.bg-orange { background: var(--orange); color: var(--white); }
.bg-green  { background: var(--green);  color: var(--white); }
.bg-yellow { background: var(--yellow); color: var(--navy);  }
.bg-sky    { background: var(--sky);    color: var(--navy);  }

/* ============================================================
   CANCIONES
   ============================================================ */
.coming-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 10px 28px;
  font-family: 'Fredoka One', cursive;
  font-size: 1.15rem;
  box-shadow: 0 6px 20px rgba(255,123,59,0.4);
  margin-bottom: 36px;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}

.songs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  margin-bottom: 52px;
}
.song-card {
  background: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform .2s, box-shadow .2s;
}
.song-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.12); }
.song-num {
  font-family: 'Fredoka One', cursive;
  font-size: 2rem;
  color: var(--sky-dark);
  line-height: 1;
  min-width: 34px;
}
.song-info h4 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 5px;
}
.genre-tag {
  display: inline-block;
  padding: 3px 11px;
  border-radius: 50px;
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
  border: none;
}
.gt-tango    { background: var(--pink);   color: var(--white); }
.gt-milonga  { background: var(--green);  color: var(--white); }
.gt-vals     { background: var(--purple); color: var(--white); }
.gt-original { background: var(--yellow); color: var(--navy);  }

.streaming-box {
  background: var(--navy);
  border: none;
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(26,46,68,0.25);
  margin-bottom: 60px;
}
.streaming-box h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 10px;
}
.streaming-box p {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sky-light);
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto; margin-right: auto;
}
.streaming-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}
.stream-badge {
  background: var(--white);
  border: none;
  border-radius: 50px;
  padding: 10px 22px;
  font-weight: 800;
  font-size: .92rem;
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy);
  padding: 44px 24px 30px;
  text-align: center;
  color: #ffffff;
}
.footer-logo {
  height: 150px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,.3));
}
.footer-title {
  font-family: 'Fredoka One', cursive;
  font-size: 1.7rem;
  color: var(--white);
  margin-bottom: 8px;
}
footer p {
  font-size: .9rem;
  font-weight: 600;
  opacity: 1;
  color: #ffffff;
  margin-bottom: 12px;
}
footer strong { color: #e0f4fb; }
footer a { color: #e0f4fb; text-decoration: none; font-weight: 700; }
footer a:hover { color: var(--yellow); }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 22px 0 18px;
}
.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--navy);
  border: none;
  border-radius: 50px;
  padding: 9px 22px;
  font-weight: 800;
  font-size: .9rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  transition: transform .2s, box-shadow .2s;
}
.footer-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); color: var(--navy); }
.footer-copy {
  margin-top: 20px;
  font-size: .82rem;
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.section.active {
  animation: fadeIn .35s ease-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 780px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px; right: 0;
    left: auto;
    width: 50%;
    background: var(--sky);
    padding: 14px;
    gap: 6px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-radius: 0 0 0 16px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-toggle-label { display: block; }
  .nav-toggle-lines { display: flex; }
  .nav-logo-img { height: 42px; }
  .hero-banner { min-width: unset; width: 170%; max-height: unset; left: -35%; transform: none; border-radius: 0; }
  .hero { border-radius: 0; margin-bottom: 26px; }
  .home-intro { padding-top: 16px; }
  .home-intro p { font-size: 0.95rem; }
  .profiles-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .genre-pills { gap: 10px; }
  .pill { font-size: 1rem; padding: 8px 18px; }
  .feature-card { padding: 26px 18px; }
  .cta-banner { padding: 30px 20px; }
  .video-modal { padding: 10px; }
  .modal-box { max-width: 100%; border-radius: 12px; }
}
