/* =========================================
   BEYOND THE RAPPERS — STYLES (CLEAN PRO)
   ========================================= */

/* ---------- FONTS ---------- */
@font-face {
  font-family: "BTR-Akira";
  src: url("assets/fonts/AkiraExpanded.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BTR-Chubby";
  src: url("assets/fonts/ChubbyAndGroovy.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BTR-Philly";
  src: url("assets/fonts/PhillySans.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ---------- TOKENS ---------- */
:root{
  --bg:#0b0b0c;
  --bg2:#101012;
  --text:#f2f2f2;
  --muted:rgba(242,242,242,.68);
  --line:rgba(255,255,255,.10);

  --card:rgba(255,255,255,.04);
  --card2:rgba(255,255,255,.06);
  --stroke:rgba(255,255,255,.12);
  --stroke2:rgba(255,255,255,.22);
  --shadow: 0 18px 60px rgba(0,0,0,.45);

  --radius:16px;
  --max:1120px;
  --pad:22px;

  --title-line: linear-gradient(
    90deg,
    #00f0ff,
    #00ffa6,
    #b3ff00,
    #ff8a00,
    #ff0066
  );
}

/* ---------- BASE / RESET ---------- */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
html, body{ max-width:100%; overflow-x:hidden; }

body{
  margin:0;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 12% 0%, rgba(255,255,255,.06), transparent 55%),
    radial-gradient(700px 420px at 90% 10%, rgba(255,255,255,.05), transparent 55%),
    var(--bg);
  font-family: "BTR-Philly", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

img, video{
  max-width:100%;
  height:auto;
  display:block;
}

a{ color:inherit; }
.muted{ color:var(--muted); }

/* ---------- TYPO SYSTEM ---------- */
h1, h2, h3,
.artist-name,
.section-head h2{
  font-family: "BTR-Akira", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.badge--status,
.nav-cta{
  font-family: "BTR-Chubby", sans-serif;
}

/* ---------- LAYOUT ---------- */
.container{
  max-width:var(--max);
  margin:0 auto;
  padding:0 var(--pad);
}
.main{ min-height:100vh; }

/* =========================================
   HEADER / NAV
   ========================================= */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:14px var(--pad);
  display:flex;
  align-items:center;
  gap:14px;
}
.brand{
  text-decoration:none;
  display:flex;
  align-items:baseline;
  gap:8px;
  min-width: 220px;
}
.brand-title{
  font-family: 'Rock Salt', cursive;
  font-weight:400;
  letter-spacing:.06em;
  font-size:.95rem;
}

.nav{
  display:flex;
  gap:14px;
  align-items:center;
  flex:1;
}
.nav-link{
  text-decoration:none;
  color:rgba(255,255,255,.82);
  font-weight:400;
  letter-spacing:.02em;
  font-size:.95rem;
  padding:8px 10px;
  border-radius: 12px;
}
.nav-link:hover{
  background: rgba(255,255,255,.08);
  color:#fff;
}

/* CTA ENTRADAS */
.nav-cta{
  margin-left: 10px;
  padding: 10px 12px !important;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.92);
  color: #111 !important;
  transition: transform .15s ease, filter .15s ease;
}
.nav-cta:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
}

/* SEARCH (si lo usas en header) */
.search{
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  min-width: 310px;
}
.search-icon{ opacity:.75; }
.search-input{
  background:transparent;
  outline:none;
  border:0;
  color:#fff;
  width:100%;
  font:inherit;
}
.search-input::placeholder{ color: rgba(255,255,255,.45); }
.search-btn{
  border:0;
  background: rgba(255,255,255,.12);
  color:#fff;
  padding:8px 10px;
  border-radius:999px;
  cursor:pointer;
}
.search-btn:hover{ background: rgba(255,255,255,.18); }

/* MOBILE MENU */
.menu-btn{
  display:none;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  color:#fff;
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
  font-size:1.1rem;
}
.menu-panel{
  display:none;
  background: rgba(0,0,0,.92);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.menu-panel.open{ display:block; }
.menu-panel-head{
  max-width:var(--max);
  margin:0 auto;
  padding:12px var(--pad);
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.menu-close{
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color:#fff;
  padding:8px 10px;
  cursor:pointer;
  border-radius: 12px;
}
.menu-panel-body{
  max-width:var(--max);
  margin:0 auto;
  padding:0 var(--pad) 16px;
}
.menu-link{
  display:block;
  text-decoration:none;
  color: rgba(255,255,255,.88);
  padding:12px 10px;
  background: rgba(255,255,255,.03);
  margin-bottom:8px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
}
.menu-link:hover{ background: rgba(255,255,255,.08); }

/* =========================================
   HERO
   ========================================= */
.hero{
  position: relative;
  padding: clamp(64px, 10vh, 120px) 0 clamp(40px, 8vh, 100px);
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.65)),
    url("assets/hero.jpg");
  background-repeat:no-repeat;
  background-position:center;
  background-size: clamp(320px, 90vw, 900px) auto;
  min-height: 70vh;
}
.hero-inner{ position:relative; z-index:2; }

.kicker{
  margin:0 0 10px;
  color: rgba(255,255,255,.65);
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:.78rem;
}
.hero-title{
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.05;
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  margin: 0 0 10px;
}
.hero-sub{
  margin:0 0 16px;
  color:rgba(255,255,255,.70);
  max-width:70ch;
}
.hero-cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* =========================================
   SECTIONS + TITLES (LINEA ANIMADA GLOBAL)
   ========================================= */
.section{ padding:54px 0; }
.section.alt{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
}

.section-head h2{
  margin:0 0 6px;
  display:inline-block;
  position:relative;
}
.section-head p{ margin:0 0 16px; }

/* Línea animada debajo de TODOS los títulos */
.section-head h2::after{
  content:"";
  display:block;
  width:170px;
  height:4px;
  margin-top:10px;
  border-radius:999px;
  background: var(--title-line);
  background-size: 400% 100%;
  animation: btrLine 3s linear infinite;
  box-shadow: 0 0 18px rgba(0,255,180,.25);
}
@keyframes btrLine{
  0%{ background-position:0% 0%; }
  100%{ background-position:400% 0%; }
}
@media (prefers-reduced-motion: reduce){
  .section-head h2::after{ animation:none; }
}

/* =========================================
   BUTTONS / LINKS
   ========================================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  background: rgba(255,255,255,.10);
  color:#fff;
  text-decoration:none;
  cursor:pointer;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
}
.btn:hover{ background: rgba(255,255,255,.14); }
.btn-ghost{ background: transparent; }
.btn-sm{ padding:10px 12px; font-size:.95rem; }

.link{
  color: rgba(255,255,255,.86);
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.25);
}
.link:hover{ border-bottom-color: rgba(255,255,255,.55); }

/* Botón email (si lo usas) */
.email-btn{
  display: inline-block;
  padding: 10px 18px;
  background: #ffffff;
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.25s ease;
}
.email-btn:hover{
  background: #ff7a00;
  color: #fff;
}
.contact-email{
  margin-top: 20px;
  font-size: 16px;
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}
.contact-email a{
  color: #fff;
  text-decoration: underline;
}
.contact-email .icon{ line-height: 1; }

/* =========================================
   GRIDS (GENERIC)
   ========================================= */
.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}

/* =========================================
   DISCOVER CONTROLS + GRID
   (usa tus clases: .discover-controls y .discover-grid)
   ========================================= */
.discover-controls{
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 12px;
  margin: 16px 0 18px;
}
.discover-controls .input,
.discover-controls .select{
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.22);
  color: inherit;
  outline: none;
}
.discover-controls .input::placeholder{
  color: rgba(255,255,255,0.45);
}
.discover-controls .input:focus,
.discover-controls .select:focus{
  border-color: rgba(255,255,255,0.26);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.06);
}

.discover-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:16px;
}
/* =========================
   DISCOVER (FIX LAYOUT)
========================= */

.discover-controls{
  display: grid;
  grid-template-columns: 1fr 220px 220px;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
}

@media (max-width: 900px){
  .discover-controls{
    grid-template-columns: 1fr;
  }
}

.discover-grid{
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

@media (max-width: 900px){
  .discover-grid{
    grid-template-columns: 1fr;
  }
}

.artist-card{
  position: relative;
  border-radius: 18px;

  border: 1px solid rgba(255,255,255,.08);

  background:
  linear-gradient(180deg,
  rgba(255,255,255,.05),
  rgba(0,0,0,.25));

  backdrop-filter: blur(10px);

  box-shadow:
  0 8px 30px rgba(0,0,0,.45),
  inset 0 1px rgba(255,255,255,.05);

  ; transition: transform .18s ease, box-shadow .18s ease;

  padding: 16px;
}
.artist-card:hover{

  transform: translateY(-6px) scale(1.01);
box-shadow: 0 20px 60px rgba(0,0,0,.55);
  border-color: rgba(255,255,255,.22);
} 


.artist-top{
  display: grid;
  grid-template-columns: 64px 1fr 40px;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.artist-avatar{
  width: 64px;
  height: 64px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}

.artist-avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.artist-head{
  min-width: 0;
}

.artist-name{
  margin: 0;
  line-height: 1.1;
}

.artist-meta{
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-preview{
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 14px;
  align-items: start;
}

@media (max-width: 520px){
  .mini-preview{
    grid-template-columns: 1fr;
  }
}

.cover{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  aspect-ratio: 1 / 1;
  position: relative;
}

.cover img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
   transition: transform .6s ease;
  }
.artist-card:hover .cover img{
  transform: scale(1.05);
}


.play-btn{
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.55);
  cursor: pointer;
}

.preview-info{
  min-width: 0;
}

.preview-title{
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: .9;
}

.preview-sub{
  margin-top: 4px;
}

/* EMBEDS dentro de tarjeta */
.artist-embed{
  margin-top: 12px;
  display: grid;
  gap: 12px;
}

.artist-embed.hidden{
  display: none;
}

.embed iframe{
  width: 100%;
  border: 0;
  border-radius: 14px;
  overflow: hidden;
}

/* Botón favoritos */
.icon-btn{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.35);
  cursor: pointer;
}

/* =========================================
   PODCAST GRID
   ========================================= */
.podcast-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:18px;
  align-items: stretch;
}

/* =========================================
   ARTIST CARD (GLOBAL — 1 SOLO BLOQUE)
   Aplica a Discover + Podcast si reutilizas artist-card
   ========================================= */
.artist-card{
  position:relative;
  overflow:hidden;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding:18px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.artist-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(600px 220px at 20% 0%, rgba(255,255,255,.10), transparent 60%);
  opacity:.75;
  pointer-events:none;
}

.artist-card:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
}

.artist-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}

.artist-name{
  margin:0;
  font-size:1.05rem;
  letter-spacing:.08em;
}

.artist-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:flex-end;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:999px;
  font-size:.78rem;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  color: rgba(255,255,255,.88);
  white-space:nowrap;
}
.badge--status{
  border-color: rgba(255,255,255,.18);
}

.artist-bio{
  margin: 10px 0 12px;
  color: rgba(255,255,255,.78);
  line-height:1.35;
}

.artist-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:6px;
}

.artist-embed{
  margin-top:12px;
  display:grid;
  gap:10px;
}
.embed{
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.25);
}
.embed iframe{
  width:100%;
  border:0;
  display:block;
}

/* Clase para ocultar embeds si la usas */
.hidden{ display:none !important; }

/* =========================================
   EVENT HERO / NEXT EVENT
   (si lo usas en la sección eventos)
   ========================================= */
.next-event{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap:22px;
  align-items:start;
}

.next-event__poster{
  position:relative;
  display:block;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
}

.next-event__poster img{
  width:100%;
  height:auto;
  display:block;
  transition: transform .25s ease, filter .25s ease;
}
.next-event__poster:hover img{
  transform: scale(1.03);
  filter: saturate(1.1) contrast(1.05);
}
.poster-hint{
  position:absolute;
  left:12px;
  bottom:12px;
  padding:8px 10px;
  border-radius:999px;
  font-size:.9rem;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
}

/* =========================================
   POSTERS GRID (ediciones anteriores)
   ========================================= */
.posters-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap:16px;
  align-items:start;
}
.poster-card{
  border-radius:14px;
  overflow:hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.poster-thumb{ overflow:hidden; }
.poster-thumb img{
  width:100%;
  height:170px;
  object-fit:cover;
}
.poster-info{
  padding: 12px 12px 14px;
  font-size: .92rem;
  line-height: 1.3;
}

/* =========================================
   ED5 VIDEO
   ========================================= */
.ed5-announcement{
  margin-bottom:60px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:30px;
  align-items:center;
}
.ed5-video{
  border-radius:22px;
  overflow:hidden;
  background: transparent;
  position: relative;
  height: 360px;
  border: 1px solid rgba(255,255,255,.10);
}
.ed5-video video{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  background: transparent;
}
.ed5-info h3{
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin:12px 0 10px;
  letter-spacing:.06em;
  text-transform: uppercase;
}

/* =========================================
   FOOTER
   ========================================= */
.footer{
  margin-top: 56px;
  padding: 28px 0 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.10);
}
.footer-inner{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.footer-brand strong{
  display:block;
  letter-spacing:.06em;
  margin-bottom:6px;
}
.footer-brand p{
  margin:0;
  opacity:.8;
}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap: 10px 14px;
}
.footer-links a{
  opacity:.85;
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.2);
}
.footer-links a:hover{
  opacity:1;
  border-bottom-color: rgba(255,255,255,.6);
}
.footer-contact p{
  margin:0 0 6px;
  opacity:.8;
}
.footer-contact a{
  color:inherit;
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.2);
}
.footer-copy{
  max-width: 1100px;
  margin: 16px auto 0;
  padding: 0 18px;
  opacity: .65;
  font-size: 13px;
}

/* =========================================
   RESPONSIVE (GLOBAL)
   ========================================= */
@media (max-width: 980px){
  .nav{ display:none; }
  .search{ display:none; }
  .menu-btn{ display:inline-flex; }

  .grid-2{ grid-template-columns:1fr; }
  .grid-3{ grid-template-columns:1fr; }

  .discover-controls{ grid-template-columns: 1fr; }
  .discover-grid{ grid-template-columns: 1fr; }
  .podcast-grid{ grid-template-columns: 1fr; }

  .next-event{ grid-template-columns: 1fr; }

  .ed5-announcement{ grid-template-columns:1fr; }
  .ed5-video{ height: 420px; }

  .footer-inner{ grid-template-columns: 1fr; }

  .nav-cta{
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-left: 0;
  }
}

@media (max-width: 768px){
  .hero{
    min-height: 55vh;
    padding: 64px 0;
    background-size: clamp(260px, 92vw, 520px) auto;
    background-position:center;
  }

  .artist-card{
    padding:16px;
    border-radius:16px;
  }
  .artist-top{
    align-items:flex-start;
    gap:10px;
  }
  .artist-meta{
    justify-content:flex-start;
  }
}

@media (max-width: 520px){
  .poster-thumb img{ height: 170px; }
}
.footer{
  margin-top:60px;
  padding:40px 0 20px;
  border-top:1px solid rgba(255,255,255,0.12);
  background:rgba(0,0,0,0.2);
}

.footer-inner{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:20px;
  align-items:start;
}

.footer-brand strong{
  display:block;
  font-size:14px;
  letter-spacing:1px;
}

.footer-brand p{
  font-size:13px;
  opacity:0.7;
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.footer-links a{
  font-size:13px;
  opacity:0.8;
  text-decoration:none;
}

.footer-links a:hover{
  opacity:1;
}

.footer-contact p{
  font-size:13px;
  margin-bottom:4px;
}

.footer-contact a{
  font-size:13px;
  text-decoration:none;
}

.footer-copy{
  margin-top:20px;
  font-size:12px;
  text-align:center;
  opacity:0.6;
}
/* =========================================================
   EVENT HERO (tarjeta: info izq + poster dcha, sin gigante)
   Pegar al FINAL de styles.css
========================================================= */

.event-hero-section {
  padding: 28px 0;
}

.event-hero-card {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
  align-items: stretch;

  /* tarjeta */
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 22px;
  overflow: hidden;

  /* si tienes fondo oscuro */
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
}

.event-hero-info h2 {
  margin: 10px 0 8px;
  line-height: 1.1;
}

.event-meta {
  max-width: 52ch; /* evita que el texto se vaya a todo el ancho */
  margin: 0 0 14px;
}

.event-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.event-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

/* Poster más pequeño y contenido, sin comerse la web */
.event-hero-poster {
  display: grid;
  align-content: start;
  justify-items: end;
  text-decoration: none;
  position: relative;
}

.event-hero-poster img {
  width: 100%;
  max-width: 320px;      /* << “una palma” aprox */
  height: auto;
  border-radius: 14px;
  display: block;
  border: 1px solid rgba(255,255,255,0.10);
}

/* Badge "Ver cartel" sobre el poster */
.poster-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.55);
}

/* Responsive: en móvil apila y centra */
@media (max-width: 860px) {
  .event-hero-card {
    grid-template-columns: 1fr;
  }

  .event-hero-poster {
    justify-items: start;
  }

  .event-hero-poster img {
    max-width: 420px;
  }
}
/* =========================================================
   EVENT HERO (tarjeta: info izq + poster dcha, sin gigante)
   Pegar al FINAL de styles.css
========================================================= */

.event-hero-section {
  padding: 28px 0;
}

.event-hero-card {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
  align-items: stretch;

  /* tarjeta */
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 22px;
  overflow: hidden;

  /* si tienes fondo oscuro */
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
}

.event-hero-info h2 {
  margin: 10px 0 8px;
  line-height: 1.1;
}

.event-meta {
  max-width: 52ch; /* evita que el texto se vaya a todo el ancho */
  margin: 0 0 14px;
}

.event-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.event-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

/* Poster más pequeño y contenido, sin comerse la web */
.event-hero-poster {
  display: grid;
  align-content: start;
  justify-items: end;
  text-decoration: none;
  position: relative;
}

.event-hero-poster img {
  width: 100%;
  max-width: 320px;      /* << “una palma” aprox */
  height: auto;
  border-radius: 14px;
  display: block;
  border: 1px solid rgba(255,255,255,0.10);
}

/* Badge "Ver cartel" sobre el poster */
.poster-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.55);
}

/* Responsive: en móvil apila y centra */
@media (max-width: 860px) {
  .event-hero-card {
    grid-template-columns: 1fr;
  }

  .event-hero-poster {
    justify-items: start;
  }

  .event-hero-poster img {
    max-width: 420px;
  }
}
/* =========================================================
   EVENT POSTER — ULTRA SMALL FORCE FIX
   (pegar al final de styles.css)
========================================================= */

.event-hero-card{
  max-width: 1120px;
  margin: 0 auto;
  width: calc(100% - 2*22px);
}

.event-hero-poster{
  width: 100%;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: flex-start !important;
}

.event-hero-poster img{
  width: auto !important;
  max-width: 240px !important;   /* << más pequeño aún */
  height: auto !important;
  max-height: 340px !important;  /* por si alguien le puso height grande */
  object-fit: cover !important;

  display: block !important;
  border-radius: 14px !important;
}

/* Si el link/anchor está forzando tamaños raros */
.event-hero-poster{
  max-width: 260px !important;
  margin-left: auto !important;
}

/* Móvil: centrado y un pelín más grande */
@media (max-width: 860px){
  .event-hero-poster{
    justify-content: center !important;
    max-width: 100% !important;
  }
  .event-hero-poster img{
    max-width: 320px !important;
  }
}
/* =========================
   EVENT HERO — FIX tamaño + botones pro
========================= */

.event-hero-section{
  padding: 18px 0 10px;
}

.event-hero-card{
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 18px;
}

/* Columna del cartel más estrecha (NO ocupa media pantalla) */
.event-hero-card{
  grid-template-columns: 1fr 320px; /* <- antes era demasiado grande */
  align-items: start;
}

/* Cartel más “pequeño” y controlado */
.event-hero-poster{
  max-width: 320px;
  width: 100%;
  margin-left: auto;
}

.event-hero-poster img{
  height: 360px;          /* tamaño estable */
  object-fit: cover;
  border-radius: 16px;
}

/* Botones tipo “mobile UI” */
.event-cta-row{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
  max-width: 420px; /* para que no se vaya a todo lo ancho */
}

.event-cta-primary,
.event-cta-secondary{
  width: 100%;
  border-radius: 16px;
  padding: 14px 16px;
  font-weight: 800;
  text-align: center;
  justify-content: center;
  display: inline-flex;
  gap: 10px;
}

/* Primario (comprar) */
.event-cta-primary{
  background: rgba(255,255,255,.92);
  color: #111;
  border: 1px solid rgba(255,255,255,.25);
}

/* Secundario (ver cartel) */
.event-cta-secondary{
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.14);
}

/* Hover suave */
.event-cta-primary:hover,
.event-cta-secondary:hover{
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 900px){
  .event-hero-card{
    grid-template-columns: 1fr; /* cartel abajo en móvil */
  }
  .event-hero-poster{
    margin: 10px auto 0;
    max-width: 360px;
  }
  .event-hero-poster img{
    height: 420px;
  }
  .event-cta-row{
    max-width: 100%;
  }
}
/* =========================
   COOKIE BANNER (RGPD)
========================= */
.cookie-banner{
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 9999;
  display: none;
}

.cookie-banner.show{ display:block; }

.cookie-box{
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
  padding: 14px;
  display: grid;
  gap: 12px;
}

.cookie-text p{
  margin: 6px 0 0;
  color: rgba(255,255,255,.78);
  line-height: 1.35;
}
.cookie-text a{
  color: rgba(255,255,255,.95);
  text-decoration: underline;
}

.cookie-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.cookie-btn{
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 800;
  cursor:pointer;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
}

.cookie-btn-primary{
  background: rgba(255,255,255,.92);
  color: #111;
  border-color: rgba(255,255,255,.2);
}

.cookie-btn:hover{ transform: translateY(-1px); }

.cookie-modal{
  position: fixed;
  inset: 0;
  z-index: 10000;
  display:none;
  background: rgba(0,0,0,.6);
}
.cookie-modal.show{ display:grid; place-items:center; }

.cookie-modal-card{
  width: min(520px, calc(100% - 28px));
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(12px);
  padding: 16px;
}

.cookie-switch{
  display:flex;
  gap:10px;
  align-items:center;
  padding: 10px 0;
  color: rgba(255,255,255,.9);
}
.artist-actions{
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.icon-link{

  display:flex;
  align-items:center;
  gap:10px;

  padding:10px 14px;

  border-radius:999px;

  background:rgba(255,255,255,.05);

  border:1px solid rgba(255,255,255,.12);

  font-weight:700;

  transition:all .25s ease;

}


.icon-link--btn{
  font: inherit;
  color: inherit;
}

.icon-circle{
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  font-weight: 800;
}

.icon-text{
  font-weight: 700;
  letter-spacing: .02em;
}

.icon-link:hover{
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.06);
  transform:translateY(-1px);

}
/* =========================================
   MUSIC PLATFORM BUTTON GLOW
   ========================================= */
/* COLORES PLATAFORMAS MUSICALES */

.icon-link:nth-child(1):hover{
  box-shadow:0 0 12px #1db954;
}

.icon-link:nth-child(2):hover{
  box-shadow:0 0 12px #ff0000;
}

.icon-link:nth-child(3):hover{
  box-shadow:0 0 12px #e1306c;
}

.icon-link:nth-child(4):hover{
  box-shadow:0 0 12px #ffffff;
}
.artist-name{
  font-family: 'Orbitron', sans-serif
  letter-spacing:.1px;
 } ¨
 /* ======================================
   ARTIST CARD COLOR GLOW
   ====================================== */

.artist-card:nth-child(1):hover{
  box-shadow:
  0 18px 60px rgba(0,0,0,.6),
  0 0 40px rgba(80,120,255,.25);
}

.artist-card:nth-child(2):hover{
  box-shadow:
  0 18px 60px rgba(0,0,0,.6),
  0 0 40px rgba(255,80,80,.25);
}

.artist-card:nth-child(3):hover{
  box-shadow:
  0 18px 60px rgba(0,0,0,.6),
  0 0 40px rgba(255,180,60,.25);
}

.artist-card:nth-child(4):hover{
  box-shadow:
  0 18px 60px rgba(0,0,0,.6),
  0 0 40px rgba(160,100,255,.25);
}
/* =========================
   DISCOVER – COLOR GLOW POR ARTISTA
   Pégalo al final del CSS
========================= */

.artist-card{ --glow: rgba(255,255,255,.10); }

.artist-card{
  position: relative;
}

.artist-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: 18px;
  pointer-events:none;
  background: radial-gradient(700px 200px at 20% 0%, var(--glow), transparent 60%);
  opacity:.9;
  filter: blur(6px);
}

/* Colores por artista (ajusta si quieres) */
.artist-card[data-search*="marroko"]{ --glow: rgba(120,140,255,.35); }
.artist-card[data-search*="el asere"]{ --glow: rgba(255,255,255,.22); }
.artist-card[data-search*="kalatrava"]{ --glow: rgba(255,90,90,.28); }
.artist-card[data-search*="big de litto"]{ --glow: rgba(90,200,255,.30); }
/* =========================
   DISCOVER – HOVER 3D SUAVE
========================= */

.discover-grid{ perspective: 1000px; }

.artist-card{
  transform: translateZ(0);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  will-change: transform;
}

.artist-card:hover{
  transform: translateY(-8px) rotateX(.8deg) rotateY(-.8deg);
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
  border-color: rgba(255,255,255,.22);
}
/* =========================
   DISCOVER – LOOK PREMIUM
========================= */

#discover{
  background: radial-gradient(1000px 400px at 10% 0%, rgba(255,255,255,.06), transparent 55%);
}

.discover-grid{
  gap: 18px; /* un pelín más de aire */
}

.artist-card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.20));
  backdrop-filter: blur(10px);
}
/* Móvil: aplica efecto sin hover */
@media (hover: none) {
  .artist-card{
    box-shadow: 0 18px 50px rgba(0,0,0,.45);
    border-color: rgba(255,255,255,.18);
  }
  .artist-card::before{
    opacity: 1;
  }
}