/* ========= Pinguin Dark — paleta extraída de los fanarts ========= */
:root {
  --bg: #0d0d0d;
  --bg-soft: #161616;
  --surface: #1e1e1e;
  --surface-2: #282828;
  --border: #383838;
  --red: #b83838;
  --red-bright: #d94b4b;
  --red-deep: #480808;
  --red-wine: #380808;
  --text: #f4f2f2;
  --muted: #b8b8b8;
  --gold: #f5a623;
  --yellow: #ffd21e;
  --pink: #f8b8c8;
  --purple: #381838;
  --radius: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ========= NAV ========= */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 22px;
  background: rgba(13, 13, 13, .82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem; letter-spacing: 1.5px;
}
.nav-brand b { color: var(--red-bright); font-weight: 400; }
.nav-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--red);
}
.nav-links { display: flex; align-items: center; gap: 20px; font-size: .95rem; }
.nav-links a:not(.live-badge):hover { color: var(--red-bright); }

.live-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--red-deep);
  border: 1px solid var(--red);
  color: #ffdada;
  font-weight: 700; font-size: .78rem; letter-spacing: 1px;
  padding: 5px 12px; border-radius: 999px;
  animation: pulseBorder 2s infinite;
}
.live-badge[hidden] { display: none; }

/* nav compacta en móvil: solo el avatar como logo */
@media (max-width: 600px) {
  .nav { padding: 8px 14px; gap: 10px; }
  .nav-brand span { display: none; }
  .nav-brand { flex-shrink: 0; }
  .nav-links { gap: 11px; font-size: .88rem; flex-wrap: wrap; justify-content: flex-end; }
  .nav-links a { padding: 6px 2px; }   /* área de toque más cómoda en móvil */
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ff4747;
  animation: blink 1.2s infinite;
}
@keyframes blink { 50% { opacity: .25; } }
@keyframes pulseBorder {
  0%, 100% { box-shadow: 0 0 0 0 rgba(217, 75, 75, .5); }
  50% { box-shadow: 0 0 0 6px rgba(217, 75, 75, 0); }
}

/* ========= HERO ========= */
.hero {
  position: relative;
  min-height: 88vh;
  display: grid; place-items: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(184, 56, 56, .28), transparent 60%),
    radial-gradient(ellipse 60% 45% at 85% 100%, rgba(72, 8, 8, .8), transparent 70%),
    radial-gradient(ellipse 60% 45% at 15% 100%, rgba(56, 24, 56, .55), transparent 70%),
    var(--bg);
}
.hero-bg::after {
  /* trama de puntos tipo banner */
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(244, 242, 242, .05) 1px, transparent 1.5px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, transparent, #000 40%);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 40%);
}
.hero-inner { position: relative; z-index: 2; padding: 60px 20px; }

.avatar-ring {
  width: 168px; height: 168px;
  margin: 0 auto 26px;
  border-radius: 50%;
  padding: 5px;
  background: conic-gradient(var(--red), var(--gold), var(--red-deep), var(--red));
  animation: spinRing 9s linear infinite;
}
.avatar-ring img {
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 4px solid var(--bg);
  animation: spinRing 9s linear infinite reverse;
}
@keyframes spinRing { to { transform: rotate(360deg); } }

.hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.2rem, 10vw, 6.5rem);
  letter-spacing: 4px;
  line-height: 1;
  text-shadow: 0 4px 0 #000, 0 8px 28px rgba(184, 56, 56, .45);
}
.hero-title span {
  background: linear-gradient(180deg, var(--red-bright) 20%, var(--red-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 3px 0 #000);
}
.hero-sub {
  margin-top: 10px;
  color: var(--muted);
  letter-spacing: 2px;
  font-size: clamp(.85rem, 2.4vw, 1.05rem);
}
.hero-sub, .aries { color: var(--muted); }

.hero-socials {
  margin-top: 34px;
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700; font-size: .95rem;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.btn:hover { transform: translateY(-3px); }
.btn.ig:hover { border-color: #e1306c; box-shadow: 0 8px 24px rgba(225, 48, 108, .3); color: #ff87b3; }
.btn.yt:hover { border-color: #ff0000; box-shadow: 0 8px 24px rgba(255, 0, 0, .3); color: #ff6b6b; }
.btn.tw:hover { border-color: #9146ff; box-shadow: 0 8px 24px rgba(145, 70, 255, .3); color: #c39dff; }
.btn.tk:hover { border-color: #fe2c55; box-shadow: 0 8px 24px rgba(254, 44, 85, .3); color: #25f4ee; }
.btn.dc:hover { border-color: #5865f2; box-shadow: 0 8px 24px rgba(88, 101, 242, .3); color: #8b97ff; }

.scroll-hint {
  display: inline-block;
  margin-top: 46px;
  color: var(--red-bright);
  font-size: 1.3rem;
  animation: bounce 1.8s infinite;
}
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* emotes flotantes */
.float-emote {
  position: absolute;
  width: clamp(56px, 8vw, 96px);
  opacity: .9;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .6));
  animation: floaty 6s ease-in-out infinite;
  z-index: 1;
}
.e1 { top: 16%; left: 8%; animation-delay: 0s; rotate: -8deg; }
.e2 { top: 60%; left: 13%; animation-delay: 1.5s; rotate: 6deg; }
.e3 { top: 20%; right: 9%; animation-delay: .8s; rotate: 10deg; }
.e4 { top: 62%; right: 12%; animation-delay: 2.2s; rotate: -6deg; }
@keyframes floaty {
  0%, 100% { transform: translateY(0) }
  50% { transform: translateY(-18px) }
}
@media (max-width: 640px) { .e2, .e4 { display: none; } }

/* ========= STREAM EN VIVO ========= */
.stream-section[hidden] { display: none; }
.live-dot-title {
  display: inline-block;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #ff4747;
  animation: blink 1.2s infinite;
  vertical-align: middle;
  margin-right: 4px;
}
.stream-frame {
  margin-top: 26px;
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 960px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--red);
  box-shadow: 0 16px 44px rgba(72, 8, 8, .6);
}
.stream-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* entrada animada de la galería */
.tile { opacity: 0; transform: translateY(16px); }
.tile.in { opacity: 1; transform: none; }

/* ========= TEMA DÍA DE STREAM (se activa solo cuando está en vivo) ========= */
html.live .hero-bg::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 75% 55% at 50% 105%, rgba(255, 71, 71, .22), transparent 70%);
  animation: livePulse 3.2s ease-in-out infinite;
}
@keyframes livePulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
html.live .nav { border-bottom-color: var(--red); box-shadow: 0 1px 18px rgba(184, 56, 56, .35); }
.live-particles {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.live-particle {
  position: absolute;
  bottom: -40px;
  opacity: 0;
  animation: riseUp linear infinite;
  text-shadow: 0 0 12px currentColor;
}
@keyframes riseUp {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
  10%  { opacity: .85; }
  85%  { opacity: .5; }
  100% { transform: translateY(-95vh) rotate(45deg); opacity: 0; }
}

/* ========= SECCIONES ========= */
.section { max-width: 1200px; margin: 0 auto; padding: 84px 20px 30px; }
.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  letter-spacing: 3px;
}
.section-title .aries { color: var(--red-bright); }
.section-sub { color: var(--muted); margin-top: 4px; }
.section-sub b { color: var(--text); }

/* ===== Horario de streams ===== */
.next-stream {
  margin: 16px auto 22px; max-width: 640px; text-align: center;
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 18px; color: var(--muted); font-size: .98rem;
}
.next-stream:empty { display: none; }
.next-stream b { color: var(--text); }
.next-stream .ns-live { color: var(--red-bright); font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }

.sched { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.sched-day {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 20px;
}
.sched-day.off { opacity: .72; }
.sched-day.live {
  border-color: var(--red);
  background: linear-gradient(90deg, rgba(184, 56, 56, .12), var(--surface) 62%);
  box-shadow: 0 8px 26px rgba(184, 56, 56, .15);
}
.sd-name {
  font-family: "Bebas Neue", sans-serif; letter-spacing: 2px; font-size: 1.5rem;
  min-width: 132px; color: var(--text);
}
.sched-day.off .sd-name { color: var(--muted); }
.sd-info { flex: 1; min-width: 210px; color: var(--text); font-weight: 500; display: inline-flex; align-items: center; gap: 9px; }
.sched-day.off .sd-info { color: var(--muted); font-weight: 400; }
.sd-tag {
  margin-left: auto; font-size: .78rem; font-weight: 700; letter-spacing: .5px;
  padding: 5px 12px; border-radius: 999px; background: #2a2a2a; color: var(--muted);
  border: 1px solid var(--border); white-space: nowrap;
}
.sd-tag.tag-ext { background: rgba(245, 166, 35, .16); color: var(--gold); border-color: var(--gold); }
.sd-tag.tag-fix { background: rgba(184, 56, 56, .16); color: var(--red-bright); border-color: var(--red); }

.ext-box {
  max-width: 720px; margin: 26px auto 0; background: var(--bg-soft);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 24px;
}
.ext-title { font-family: "Bebas Neue", sans-serif; letter-spacing: 2px; font-size: 1.7rem; color: var(--gold); }
.ext-title span { color: var(--muted); font-size: 1rem; letter-spacing: 1px; }
.ext-sub { color: var(--muted); margin: 4px 0 16px; font-size: .94rem; }
.ext-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 0; padding: 0; }
.ext-list li {
  display: flex; align-items: center; gap: 12px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px; font-size: .95rem; color: var(--text);
}
.ext-list li i { margin-left: auto; font-style: normal; font-weight: 700; color: var(--gold); white-space: nowrap; }
.ext-list li b { color: var(--text); }
.ext-ic {
  font-family: "Bebas Neue", sans-serif; letter-spacing: 1px; font-size: .85rem;
  padding: 4px 9px; border-radius: 8px; color: #fff; min-width: 54px; text-align: center;
}
.ic-bits { background: #9146ff; }
.ic-sub { background: var(--red); }
.ic-dono { background: var(--gold); color: #1a1a1a; }
.ic-hype { background: #e0417a; }
.ext-cap { margin-top: 16px; color: var(--muted); font-size: .88rem; line-height: 1.5; }
.ext-cap b { color: var(--text); }

@media (max-width: 560px) {
  .ext-list { grid-template-columns: 1fr; }
  .sd-tag { margin-left: 0; }
  .sd-name { min-width: 96px; font-size: 1.3rem; }
}

/* filtros */
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin: 26px 0 22px; }
.chip {
  background: var(--surface);
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 999px;
  font: inherit; font-size: .9rem; font-weight: 500;
  cursor: pointer;
  transition: all .15s;
}
.chip:hover { color: var(--text); border-color: var(--red); }
.chip.active {
  background: var(--red-deep);
  border-color: var(--red);
  color: #ffdada;
  font-weight: 700;
}

/* galería masonry */
.masonry { columns: 4 260px; column-gap: 14px; }
.tile {
  break-inside: avoid;
  margin-bottom: 14px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  cursor: zoom-in;
  transition: opacity .35s ease, transform .22s ease, border-color .18s, box-shadow .18s;
}
.tile.in:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: var(--red);
  box-shadow: 0 12px 30px rgba(72, 8, 8, .55);
}
.tile img { width: 100%; height: auto; }
.tile .tag {
  position: absolute; top: 10px; left: 10px;
  background: rgba(13, 13, 13, .75);
  backdrop-filter: blur(4px);
  color: var(--pink);
  font-size: .68rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px; border-radius: 999px;
  border: 1px solid rgba(184, 56, 56, .5);
  opacity: 0;
  transition: opacity .18s;
}
.tile:hover .tag { opacity: 1; }

/* en móvil: 2 columnas para menos scroll (y las tags siempre visibles) */
@media (max-width: 560px) {
  .masonry { columns: 2; column-gap: 10px; }
  .tile { margin-bottom: 10px; }
  .tile .tag { opacity: 1; font-size: .6rem; padding: 2px 7px; }
}

/* ========= APARTADO GALERÍA (inicio) ========= */
.gcta {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 30px;
  align-items: center;
  background: linear-gradient(160deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}
@media (max-width: 760px) { .gcta { grid-template-columns: 1fr; gap: 22px; } }
.gcta-preview { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.gcta-thumb {
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
  transition: transform .18s, border-color .18s, box-shadow .18s;
}
.gcta-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gcta-thumb:hover { transform: translateY(-3px) scale(1.02); border-color: var(--red); box-shadow: 0 10px 24px rgba(72, 8, 8, .55); }
.gcta-count {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.7rem; letter-spacing: 1.5px;
  color: var(--gold);
}
.gcta-count span { color: var(--red-bright); }
.gcta-text { color: var(--muted); margin: 8px 0 20px; max-width: 46ch; }
.gcta-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.btn-big {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red-deep);
  border: 1px solid var(--red);
  color: #ffdada;
  font-weight: 700; font-size: 1rem;
  padding: 13px 26px; border-radius: 999px;
  transition: transform .15s, box-shadow .15s, background .15s, color .15s;
}
.btn-big:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(184, 56, 56, .4); background: var(--red); color: #fff; }
.btn-ghost18 {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--border); color: var(--muted);
  padding: 12px 20px; border-radius: 999px; font-weight: 600; font-size: .9rem;
  transition: color .15s, border-color .15s;
}
.btn-ghost18:hover { color: var(--red-bright); border-color: var(--red); }

/* ========= PÁGINA GALERÍA ========= */
.page-head { max-width: 1200px; margin: 0 auto; padding: 46px 20px 0; }
.page-head .section-title { font-size: clamp(2.6rem, 7vw, 3.8rem); }
.page-back { margin-top: 10px; }
.page-back a { color: var(--red-bright); font-weight: 600; }
.page-back a:hover { text-decoration: underline; }
.section-tight { padding-top: 30px; }

/* entrada +18 */
.plus18 {
  display: flex; align-items: center; gap: 18px;
  background: linear-gradient(160deg, var(--red-deep), var(--bg-soft));
  border: 1px solid var(--red);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: transform .18s, box-shadow .18s;
}
.plus18:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(184, 56, 56, .35); }
.plus18-badge { font-size: 2.2rem; line-height: 1; }
.plus18-txt h3 { font-family: "Bebas Neue", sans-serif; font-size: 1.6rem; letter-spacing: 1.5px; color: #ffdada; }
.plus18-txt p { color: var(--muted); font-size: .9rem; }
.plus18-cta { margin-left: auto; color: var(--red-bright); font-weight: 700; white-space: nowrap; }
@media (max-width: 560px) { .plus18 { flex-wrap: wrap; } .plus18-cta { margin-left: 0; } }

/* contacto */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; margin-top: 26px; }
.contact-card {
  background: linear-gradient(160deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: border-color .18s, box-shadow .18s;
}
.contact-card:hover { border-color: var(--red); box-shadow: 0 12px 30px rgba(72, 8, 8, .4); }
.contact-ico {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--surface-2); border: 1px solid var(--border);
  font-size: 1.6rem; margin-bottom: 14px;
}
.contact-ico-dc { color: #8b97ff; }
.contact-card h3 { font-family: "Bebas Neue", sans-serif; font-size: 1.5rem; letter-spacing: 1.5px; }
.contact-card p { color: var(--muted); font-size: .92rem; margin-top: 2px; }
.contact-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-top: 16px; }
.contact-copy {
  background: var(--surface); border: 1px solid var(--border); color: var(--muted);
  font: inherit; font-weight: 600; font-size: .88rem;
  padding: 11px 18px; border-radius: 999px; cursor: pointer;
  transition: color .15s, border-color .15s;
}
.contact-copy:hover { color: var(--text); border-color: var(--red); }

/* banner "enviar fanart" (arriba de la galería) */
.send-banner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 22px; flex-wrap: wrap;
  background: linear-gradient(160deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
}
.send-txt h2 { font-family: "Bebas Neue", sans-serif; font-size: clamp(1.6rem, 4vw, 2.2rem); letter-spacing: 2px; }
.send-txt h2 .aries { color: var(--red-bright); }
.send-txt p { color: var(--muted); font-size: .95rem; margin-top: 4px; max-width: 54ch; }
.send-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.btn-dc-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: #5865f2; color: #fff;
  font-weight: 700; font-size: .92rem;
  padding: 11px 20px; border-radius: 999px;
  transition: transform .15s, box-shadow .15s;
}
.btn-dc-link:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(88, 101, 242, .4); }

/* ========= FORMULARIO ENVIAR FANART ========= */
.form-wrap { max-width: 640px; }
.fanart-form {
  background: linear-gradient(160deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field > span { font-weight: 700; font-size: .95rem; color: var(--text); }
.field > span small { font-weight: 400; color: var(--muted); }
.field .req { color: var(--red-bright); }
.fanart-form input[type="text"],
.fanart-form input[type="url"],
.fanart-form textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font: inherit; font-size: .95rem;
  padding: 12px 14px;
  transition: border-color .15s, box-shadow .15s;
}
.fanart-form input::placeholder,
.fanart-form textarea::placeholder { color: #6e6e6e; }
.fanart-form input:focus,
.fanart-form textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(184, 56, 56, .22);
}
.fanart-form textarea { resize: vertical; min-height: 96px; }
.field .hint { color: var(--muted); font-size: .8rem; }
.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-submit { align-self: flex-start; border: none; cursor: pointer; margin-top: 4px; }
.form-submit:disabled { opacity: .6; cursor: default; }
.form-note { color: var(--muted); font-size: .82rem; line-height: 1.5; }
.form-note b { color: var(--text); }
.form-msg {
  border-radius: 10px; padding: 13px 16px; font-size: .92rem; font-weight: 500;
  border: 1px solid var(--border); background: var(--surface-2); color: var(--text);
}
.form-msg.ok { border-color: #3fae6b; background: rgba(63, 174, 107, .14); color: #b6f0cd; }
.form-msg.err { border-color: var(--red); background: var(--red-deep); color: #ffd7d7; }
.form-alt { margin-top: 22px; color: var(--muted); }
.form-alt > p { font-size: .9rem; margin-bottom: 10px; }

/* ========= YUREI DARKO ========= */
.yurei-grid {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: 36px;
  margin-top: 34px;
  align-items: start;
}
@media (max-width: 760px) { .yurei-grid { grid-template-columns: 1fr; } }
.yurei-art img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--red);
  box-shadow: 0 18px 44px rgba(72, 8, 8, .55);
  transform: rotate(-1.5deg);
  transition: transform .25s;
}
.yurei-art img:hover { transform: rotate(0deg) scale(1.02); }
.yurei-quote {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 1.5px;
  color: var(--pink);
  border-left: 4px solid var(--red);
  padding: 6px 18px;
  margin-bottom: 18px;
}
.yurei-bio > p { color: var(--muted); max-width: 62ch; }
.yurei-stats {
  list-style: none;
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 10px;
}
.yurei-stats li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex; flex-direction: column; gap: 2px;
}
.yurei-stats b {
  color: var(--gold);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.yurei-stats span { font-size: .92rem; }

/* ========= CRÉDITOS ========= */
.credit-list { list-style: none; margin: 26px 0 8px; display: flex; flex-wrap: wrap; gap: 12px; }
.credit-name {
  background: var(--surface);
  border: 1px solid var(--red);
  color: var(--pink);
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 999px;
}
.credit-soon {
  border: 1px dashed var(--border);
  color: var(--muted);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: .9rem;
}
.credit-note {
  margin-top: 22px;
  background: linear-gradient(160deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  color: var(--muted);
  max-width: 640px;
}
.discord-chip {
  margin-top: 14px;
  display: inline-flex; align-items: center; gap: 9px;
  background: #5865f2;
  color: #fff;
  border: none;
  font: inherit; font-weight: 700; font-size: .95rem;
  padding: 11px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}
.discord-chip small { font-weight: 400; opacity: .8; }
.discord-chip:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(88, 101, 242, .4); }

/* ========= CARDS REDES ========= */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 30px;
}
.card {
  background: linear-gradient(160deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .18s, border-color .18s, box-shadow .18s;
}
.card:hover { transform: translateY(-5px); }
.card-icon {
  width: 62px; height: 62px;
  display: grid; place-items: center;
  border-radius: 16px;
  margin-bottom: 16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
}
.card h3 { font-family: "Bebas Neue", sans-serif; font-size: 1.6rem; letter-spacing: 2px; }
.card p { color: var(--muted); font-size: .92rem; }
.card-cta {
  display: inline-block;
  margin-top: 16px;
  font-weight: 700; font-size: .88rem;
  color: var(--red-bright);
}
.card-ig:hover { border-color: #e1306c; box-shadow: 0 14px 34px rgba(225, 48, 108, .22); }
.card-ig:hover .card-icon { color: #ff87b3; border-color: #e1306c; }
.card-yt:hover { border-color: #ff0000; box-shadow: 0 14px 34px rgba(255, 0, 0, .2); }
.card-yt:hover .card-icon { color: #ff6b6b; border-color: #ff0000; }
.card-tw:hover { border-color: #9146ff; box-shadow: 0 14px 34px rgba(145, 70, 255, .22); }
.card-tw:hover .card-icon { color: #c39dff; border-color: #9146ff; }
button.card { text-align: left; font: inherit; color: var(--text); cursor: pointer; }
.card-dc:hover { border-color: #5865f2; box-shadow: 0 14px 34px rgba(88, 101, 242, .22); }
.card-dc:hover .card-icon { color: #8b97ff; border-color: #5865f2; }
.card-tk:hover { border-color: #fe2c55; box-shadow: 0 14px 34px rgba(254, 44, 85, .22); }
.card-tk:hover .card-icon { color: #25f4ee; border-color: #fe2c55; }
.credit-link { color: #8b97ff; text-decoration: underline; }
.credit-link:hover { color: #b3bcff; }
.card-kofi:hover { border-color: #ff5e5b; box-shadow: 0 14px 34px rgba(255, 94, 91, .2); }
.card-kofi:hover .card-icon { color: #ff8a88; border-color: #ff5e5b; }
.card-soon { opacity: .65; cursor: default; }
.card-cta-soon {
  color: var(--muted);
  border: 1px dashed var(--border);
  border-radius: 999px;
  padding: 4px 14px;
}

/* ========= METAS DE SUBS ========= */
.metas { margin-top: 56px; }
.metas-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.9rem;
  letter-spacing: 2px;
}
.metas-grid {
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: 26px;
  align-items: center;
  margin-top: 18px;
}
@media (max-width: 640px) { .metas-grid { grid-template-columns: 1fr; justify-items: center; } }
.metas-img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--red);
  box-shadow: 0 14px 36px rgba(72, 8, 8, .5);
  transform: rotate(-1.5deg);
  transition: transform .25s;
}
.metas-img:hover { transform: rotate(0deg) scale(1.03); }
.metas-info {
  color: var(--muted);
  font-size: .92rem;
  margin-top: 10px;
  max-width: 75ch;
}
.metas-info b { color: var(--text); }
.metas-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 26px;
}
.tier {
  background: linear-gradient(160deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: transform .18s, box-shadow .18s;
}
.tier:hover { transform: translateY(-4px); }
.tier h4 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 1.5px;
  margin: 10px 0 6px;
}
.tier p { color: var(--muted); font-size: .9rem; }
.tier-x {
  display: inline-block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 1.5px;
  padding: 4px 16px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border);
}
.tier-mid { border-color: rgba(245, 166, 35, .55); }
.tier-mid .tier-x { border-color: var(--gold); color: var(--gold); }
.tier-mid:hover { box-shadow: 0 12px 32px rgba(245, 166, 35, .18); }
.tier-nsfw { border-color: var(--red); }
.tier-nsfw .tier-x { border-color: var(--red-bright); color: var(--red-bright); background: var(--red-deep); }
.tier-nsfw:hover { box-shadow: 0 12px 32px rgba(184, 56, 56, .35); }

/* ========= FOOTER ========= */
.footer {
  margin-top: 90px;
  padding: 40px 20px 50px;
  text-align: center;
  color: var(--muted);
  font-size: .9rem;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse 70% 120% at 50% 130%, rgba(72, 8, 8, .5), transparent 70%),
    var(--bg);
}
.footer-mini { margin-top: 6px; font-size: .78rem; opacity: .6; }
.nsfw-link { opacity: .75; transition: opacity .15s, color .15s; }
.nsfw-link:hover { opacity: 1; color: var(--red-bright); }
.aries-btn {
  background: none; border: none;
  color: var(--red-bright);
  font: inherit; font-size: 1.05rem;
  cursor: pointer;
  transition: transform .2s;
}
.aries-btn:hover { transform: scale(1.35) rotate(-12deg); display: inline-block; }

/* ========= POTO (easter egg) ========= */
.poto {
  position: fixed;
  bottom: -10px; right: 0;
  width: min(360px, 65vw);
  mix-blend-mode: screen;   /* el fondo negro del gif se funde con la página */
  z-index: 90;
  cursor: pointer;
  animation: potoIn .5s cubic-bezier(.2, 1.4, .4, 1);
}
.poto[hidden] { display: none; }
@keyframes potoIn {
  from { transform: translateY(100%) scale(.6); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

/* ========= MODO CREEPY ========= */
.creepy-btn {
  background: none; border: none;
  color: var(--muted);
  font-size: 1.05rem;
  cursor: pointer;
  opacity: .55;
  transition: opacity .2s, transform .2s, color .2s;
  padding: 2px 4px;
}
.creepy-btn:hover { opacity: 1; color: var(--red-bright); transform: rotate(-12deg) scale(1.2); }
html.creepy .creepy-btn { opacity: 1; color: #b6ff2e; text-shadow: 0 0 10px #b6ff2e; }

html.creepy {
  --bg: #040404;
  --bg-soft: #090909;
  --surface: #101010;
  --surface-2: #181414;
  --border: #2a0808;
  --red: #ff1e1e;
  --red-bright: #ff3232;
  --red-deep: #520000;
  --red-wine: #2e0000;
  --text: #e6efe2;
  --muted: #8fa08a;
  --gold: #b6ff2e;
  --pink: #c96be0;
}
html.creepy body { background: var(--bg); }
html.creepy .avatar-ring img,
html.creepy .nav-avatar { filter: hue-rotate(115deg) saturate(1.4) contrast(1.1); }
html.creepy .tile img { filter: grayscale(.55) contrast(1.25); transition: filter .25s; }
html.creepy .tile:hover img { filter: none; }
html.creepy .float-emote { filter: hue-rotate(115deg) saturate(1.3) drop-shadow(0 6px 14px rgba(0, 0, 0, .6)); }
html.creepy .hero-title { animation: glitch 2.8s infinite; }
@keyframes glitch {
  0%, 91%, 100% { transform: none; filter: none; }
  92% { transform: translate(-4px, 1px) skewX(5deg); filter: drop-shadow(3px 0 #0ff) drop-shadow(-3px 0 #f00); }
  94% { transform: translate(3px, -1px) skewX(-4deg); filter: drop-shadow(-3px 0 #b6ff2e); }
  96% { transform: none; filter: none; }
  97% { transform: translate(-2px, 0) scale(1.01); filter: drop-shadow(2px 0 #f0f); }
}
/* scanlines + parpadeo */
html.creepy body::before {
  content: "";
  position: fixed; inset: 0;
  z-index: 200;
  pointer-events: none;
  background: repeating-linear-gradient(to bottom, transparent 0 2px, rgba(0, 0, 0, .18) 2px 4px);
  animation: flicker 4s infinite;
}
@keyframes flicker {
  0%, 89%, 100% { opacity: .5; }
  90% { opacity: .1; }
  92% { opacity: .7; }
  94% { opacity: .2; }
}

/* ========= TOAST ========= */
.toast {
  position: fixed;
  left: 50%; bottom: 28px;
  transform: translateX(-50%);
  background: var(--surface-2);
  border: 1px solid var(--red);
  color: var(--text);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: .92rem; font-weight: 500;
  z-index: 120;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .6);
  animation: toastIn .25s ease;
}
@keyframes toastIn {
  from { transform: translate(-50%, 16px); opacity: 0; }
  to   { transform: translate(-50%, 0); opacity: 1; }
}

/* ========= LIGHTBOX ========= */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(8, 8, 8, .93);
  backdrop-filter: blur(6px);
  display: grid; place-items: center;
}
.lightbox[hidden] { display: none; }
.lightbox figure {
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.lightbox img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .8);
}
.lightbox figcaption { color: var(--muted); font-size: .9rem; letter-spacing: .5px; }
.lb-close, .lb-prev, .lb-next {
  position: fixed;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 46px; height: 46px;
  font-size: 1.25rem;
  cursor: pointer;
  display: grid; place-items: center;
  transition: border-color .15s, color .15s;
  z-index: 101;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { border-color: var(--red); color: var(--red-bright); }
.lb-close { top: 18px; right: 18px; }
.lb-tools { position: fixed; top: 18px; left: 18px; display: flex; gap: 10px; z-index: 101; }
.lb-tool {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 46px; height: 46px;
  font-size: 1.05rem;
  cursor: pointer;
  display: grid; place-items: center;
  transition: border-color .15s, color .15s;
}
.lb-tool:hover { border-color: var(--red); color: var(--red-bright); }
.lb-tool.playing { border-color: var(--red); color: var(--red-bright); animation: pulseBorder 2s infinite; }
.lb-prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 14px; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) {
  .lb-prev { left: 6px; } .lb-next { right: 6px; }
}
