:root{
  --c1:#46bcbc; --c2:#d99d85; --sub1:#99bbbb; --sub2:#dac286;
  --title-color:#ffffff; --text-color:#383838; --muted:#636363;
  --accent-red:#ff2a2a;
}

*{box-sizing:border-box}

html,body{
  height:100%;
  margin:0;
  font-family:'BankGothic MD BT','Arial Black',sans-serif;
  background:#000 !important;          /* fondo negro total */
  color:var(--title-color);
}

/* CABECERA + línea roja */
header{
  position:fixed;
  top:0; left:0; right:0;
  height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 20px;
  background:rgba(0,0,0,0.65);
  z-index:40;
  border-bottom:1px solid var(--accent-red);   /* línea roja */
}

.logo-row{display:flex;align-items:center;gap:12px}

#logoPreview{
  width:56px;
  height:56px;
  border-radius:8px;
  object-fit:cover;
  background:#111;
}

nav a{
  color:var(--title-color);
  text-decoration:none;
  margin:0 10px;
  font-weight:600;
}

.container{
  max-width:1100px;
  margin:100px auto 40px;
  padding:0 16px;
}

/* HERO SIEMPRE NEGRO debajo de la imagen */
.hero{
  min-height:60vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:-3px;
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  background-color:#000 !important;     /* fondo negro incluso con imagen */
}

/* TÍTULOS PRINCIPALES */
.melina{
  font-family:'TRON','CGF Locust Resistance',serif;
  font-size:clamp(30px,9vw,50px);
  line-height:2;
}
.and-cristian{
  font-family:'BankGothic MD BT';
  font-size:clamp(30px,9vw,50px);
  color:var(--muted);
  margin-top:-30px;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:-20px;
}

.card{
  background:rgba(255,255,255,.03);
  padding:16px;
  border-radius:10px;
}

/* FOOTER */
footer{
  padding:24px;
  text-align:center;
  color:rgba(255,255,255,.7);
  margin-top:10px;
}

/* REDES */
.follow-row{display:flex;gap:8px;align-items:center;justify-content:center;margin-top:12px}
.social-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:8px;
  background:transparent;
  border:1px solid rgba(255,255,255,.07);
  color:var(--title-color);
  text-decoration:none;
}

/* AUDIO */
.audio-controls{
  position:fixed;
  left:18px;
  bottom:86px;
  background:rgba(0,0,0,.55);
  color:#fff;
  padding:8px;
  border-radius:10px;
  display:flex;
  gap:8px;
  align-items:center;
  z-index:90;
}

/* NOTA */
.editor-note{
  position:fixed;
  right:18px;
  bottom:18px;
  background:rgba(0,0,0,.6);
  color:#fff;
  padding:8px;
  border-radius:8px;
  font-size:12px;
  z-index:90;
}

/* ⬆️ TIPOS DE TEXTO 10% MÁS GRANDES (About / Historia / texto estándar) */
.container p{
  font-size:110% !important;
  line-height:1.55;
}
.container h1,
.container h2{
  font-size:110% !important;
}

/* NAV EN MÓVIL */
@media(max-width:720px){
  nav a{
    display:block;
    margin:4px 0;
    text-align:right;
  }
}:root{
  --c1:#46bcbc; --c2:#d99d85; --sub1:#99bbbb; --sub2:#dac286;
  --title-color:#ffffff; --text-color:#383838; --muted:#636363;
}
*{box-sizing:border-box}
html,body{height:100%;margin:0;font-family: 'BankGothic MD BT', Arial black, sans-serif;background:#0b0b0b;color:var(--title-color);}
header{position:fixed;top:0;left:0;right:0;height:72px;display:flex;align-items:center;justify-content:space-between;padding:12px 20px;background:linear-gradient(180deg, rgba(0,0,0,.5), rgba(0,0,0,.15));z-index:40;}
.logo-row{display:flex;align-items:center;gap:12px}
#logoPreview{width:56px;height:56px;border-radius:8px;object-fit:cover;background:#111}
nav a{color:var(--title-color);text-decoration:none;margin:0 10px;font-weight:600}
.container{max-width:1100px;margin:100px auto 40px;padding:0 16px;}
.hero{min-height:60vh;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;gap:-3px;background-position:center;background-size:cover;background-repeat:no-repeat;}
.melina{font-family: 'TRON', 'CGF Locust Resistance', serif;font-size:clamp(30px,9vw,50px);line-height:2}
.and-cristian{font-family:BankGothic MD BT;font-size:calc(clamp(30px,9vw,50px));color:var(--muted);margin-top:-30px}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:-20px}
.card{background:rgba(255,255,255,.03);padding:16px;border-radius:10px}
footer{padding:24px;text-align:center;color:rgba(255,255,255,.7);margin-top:10px}
.follow-row{display:flex;gap:8px;align-items:center;justify-content:center;margin-top:12px}
.social-btn{display:inline-flex;align-items:center;gap:8px;padding:8px 12px;border-radius:8px;background:transparent;border:1px solid rgba(255,255,255,.07);color:var(--title-color);text-decoration:none}
.audio-controls{position:fixed;left:18px;bottom:86px;background:rgba(0,0,0,.55);color:#fff;padding:8px;border-radius:10px;display:flex;gap:8px;align-items:center;z-index:90}
.editor-note{position:fixed;right:18px;bottom:18px;background:rgba(0,0,0,.6);color:#fff;padding:8px;border-radius:8px;font-size:12px;z-index:90}
@media (max-width:720px){nav a{display:none}}