/* Blood RP — landing estática (tema oscuro / acentos rojo sangre) */
:root {
  --bg-deep: #07060a;
  --bg-card: #121018;
  --bg-elevated: #1a1622;
  --border: rgba(196, 30, 58, 0.22);
  --text: #e8e4ec;
  --text-muted: #9a929e;
  --accent: #c41e3a;
  --accent-dim: #8b1530;
  --accent-glow: rgba(196, 30, 58, 0.45);
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --radius: 12px;
  --header-h: 72px;
  /* Cursor flecha Blood RP (mismo diseño en toda la página; fallback del sistema) */
  --cursor-default: url("../images/cursor-bloodrp-pointer.svg") 5 4, default;
  --cursor-pointer: url("../images/cursor-bloodrp-pointer.svg") 5 4, pointer;
}

@keyframes btn-pulse-glow {
  0%,
  100% {
    box-shadow: 0 4px 28px var(--accent-glow), 0 0 0 0 rgba(196, 30, 58, 0.35);
  }
  50% {
    box-shadow: 0 8px 40px rgba(196, 30, 58, 0.55), 0 0 0 6px rgba(196, 30, 58, 0.08);
  }
}

@keyframes discord-glow {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.35);
  }
  50% {
    box-shadow: 0 8px 32px rgba(88, 101, 242, 0.55);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  cursor: var(--cursor-default);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
}

button,
[role="button"],
input[type="submit"],
input[type="checkbox"],
input[type="radio"],
select,
label.wl-check {
  cursor: var(--cursor-pointer);
}

.wl-input,
.wl-textarea {
  cursor: text;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="url"],
input[type="tel"],
input[type="number"],
textarea {
  cursor: text;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration: none;
  cursor: var(--cursor-pointer);
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(7, 6, 10, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.site-header--compact .header-inner--compact {
  justify-content: space-between;
  gap: 1rem;
}

.site-header--compact .discord-auth-slot {
  margin-left: auto;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.06em;
  color: var(--text);
  text-decoration: none;
  transition: transform 0.25s ease, filter 0.3s ease, letter-spacing 0.25s ease;
}

.logo:hover {
  transform: scale(1.03);
  letter-spacing: 0.1em;
  filter: drop-shadow(0 0 14px rgba(196, 30, 58, 0.45));
}

.logo span {
  color: var(--accent);
  transition: color 0.25s ease, text-shadow 0.3s ease;
}

.logo:hover span {
  text-shadow: 0 0 20px var(--accent-glow);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.site-nav ul a {
  position: relative;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition:
    color 0.28s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    text-shadow 0.3s ease;
}

.site-nav ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav ul a:hover {
  color: var(--text);
  transform: translateY(-2px);
  text-shadow: 0 0 18px rgba(196, 30, 58, 0.25);
}

.site-nav ul a:hover::after {
  transform: scaleX(1);
}

.site-nav ul a:focus-visible {
  color: var(--text);
  outline: none;
}

.site-nav ul a:focus-visible::after {
  transform: scaleX(1);
}

.btn-nav {
  margin-left: 1rem;
}

.discord-auth-slot {
  display: flex;
  align-items: center;
  margin-left: 0.75rem;
}

.discord-login-btn {
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    filter 0.25s ease,
    border-color 0.25s ease;
}

.discord-login-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px rgba(88, 101, 242, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
  filter: brightness(1.08);
}

.discord-login-btn:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 0.12s;
}

.discord-login-btn--disabled {
  opacity: 0.52;
  cursor: not-allowed;
  pointer-events: none;
  transform: none !important;
  filter: none !important;
  box-shadow: none !important;
}

button.login-page__discord-btn:disabled,
.login-page__discord-btn.discord-login-btn--disabled {
  opacity: 0.52;
  cursor: not-allowed;
}

.discord-menu {
  position: relative;
  margin-left: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.discord-bell {
  position: relative;
}

.discord-menu__bell {
  position: relative;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(26, 22, 34, 0.78);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: var(--cursor-pointer);
  transition: border-color 0.22s ease, transform 0.2s ease, box-shadow 0.28s ease;
}

.discord-menu__bell:hover {
  border-color: rgba(196, 30, 58, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.34);
}

.discord-menu__bell:active {
  transform: scale(0.97);
}

.discord-menu__bell-icon {
  font-size: 0.95rem;
  line-height: 1;
}

.discord-menu__bell-dot {
  position: absolute;
  top: 0.34rem;
  right: 0.34rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.68);
}

.discord-menu__bell-dot--guest {
  background: #6b7280;
  box-shadow: 0 0 6px rgba(107, 114, 128, 0.45);
}

.discord-menu__bell-dot--none {
  background: #ef4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.68);
}

.discord-menu__bell-dot--pending {
  background: #f97316;
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.65);
}

.discord-menu__bell-dot--yes {
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.55);
}

.discord-bell-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}

.discord-bell-modal[hidden] {
  display: none !important;
}

.discord-bell-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(4px);
}

.discord-bell-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 22rem;
  margin: 0;
  padding: 1.35rem 1.25rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-card);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.discord-bell-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 10px;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--text-muted);
  background: transparent;
  cursor: var(--cursor-pointer);
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.discord-bell-modal__close:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.discord-bell-modal__heading {
  margin: 0 2rem 0.65rem 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(232, 197, 71, 0.88);
  font-weight: 600;
}

.discord-bell-modal__body-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.discord-bell-modal__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem 0.65rem;
  margin: 0 0 0.15rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.discord-bell-modal__time {
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
  font-variant-numeric: tabular-nums;
}

.discord-bell-modal__tag {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  border: 1px solid rgba(196, 30, 58, 0.35);
  color: rgba(232, 197, 71, 0.92);
  background: rgba(196, 30, 58, 0.12);
}

.discord-bell-modal__eyebrow {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(232, 197, 71, 0.75);
}

.discord-bell-modal__body {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text);
}

.discord-bell-modal__footer-muted {
  margin: 0.35rem 0 0;
  font-size: 0.72rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.42);
}

body.discord-bell-modal-open {
  overflow: hidden;
}

.discord-menu__trigger {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.6rem 0.35rem 0.45rem;
  font: inherit;
  color: var(--text);
  background: rgba(26, 22, 34, 0.75);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: var(--cursor-pointer);
  transition:
    border-color 0.25s ease,
    box-shadow 0.35s ease,
    background 0.25s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.discord-menu__trigger:hover {
  border-color: rgba(196, 30, 58, 0.55);
  background: rgba(46, 40, 58, 0.75);
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.2), 0 0 0 1px rgba(196, 30, 58, 0.15);
}

.discord-menu__trigger:active {
  transform: scale(0.98);
  transition-duration: 0.1s;
}

.discord-menu__trigger[aria-expanded="true"] {
  border-color: rgba(196, 30, 58, 0.55);
  box-shadow: 0 0 0 1px rgba(196, 30, 58, 0.25);
}

.discord-menu__trigger-avatar {
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.discord-menu__trigger-name {
  font-size: 0.82rem;
  font-weight: 600;
  max-width: 6.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.discord-menu__caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--text-muted);
  margin-left: 0.1rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.discord-menu.is-open .discord-menu__caret {
  transform: rotate(180deg);
}

.discord-menu__panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 160;
  min-width: 240px;
  max-width: min(92vw, 280px);
  padding: 0.4rem 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(196, 30, 58, 0.08);
}

.discord-menu__header {
  padding: 0.65rem 1rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  line-height: 1.35;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.25rem;
}

.discord-menu__header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.discord-menu__header-sub {
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.discord-menu__wl-badge {
  flex-shrink: 0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.2rem 0.45rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(196, 30, 58, 0.12);
  color: #c9a8b0;
  white-space: nowrap;
}

.discord-menu__wl-badge--yes {
  background: rgba(46, 160, 67, 0.2);
  border-color: rgba(46, 160, 67, 0.45);
  color: #8fd99f;
}

.discord-menu__wl-badge--pending {
  background: rgba(245, 158, 11, 0.2);
  border-color: rgba(245, 158, 11, 0.55);
  color: #f7c766;
}

.discord-menu__sep {
  height: 1px;
  margin: 0.35rem 0.65rem;
  background: var(--border);
}

a.discord-menu__item,
button.discord-menu__item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.55rem 1rem;
  font: inherit;
  font-size: 0.9rem;
  text-align: left;
  text-decoration: none;
  color: var(--text);
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: var(--cursor-pointer);
  transition:
    background 0.22s ease,
    color 0.2s ease,
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    padding-left 0.22s ease,
    box-shadow 0.22s ease;
}

a.discord-menu__item:hover,
button.discord-menu__item:hover {
  background: rgba(196, 30, 58, 0.14);
  text-decoration: none;
  color: var(--text);
  transform: translateX(4px);
  padding-left: 1.15rem;
  box-shadow: inset 3px 0 0 rgba(196, 30, 58, 0.65);
}

.discord-menu__item--muted {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.discord-menu__item--leave {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
}

.auth-error-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0.85rem 1.25rem;
  text-align: center;
  font-size: 0.9rem;
  color: #fff;
  background: linear-gradient(90deg, var(--accent-dim), var(--accent));
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.auth-error-bar--out {
  opacity: 0;
  transform: translateY(-100%);
}

.login-page .auth-error-bar {
  background: linear-gradient(90deg, rgba(48, 22, 28, 0.98), rgba(24, 12, 16, 0.99));
  color: #fecaca;
  border-bottom: 1px solid rgba(196, 30, 58, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.wl-thanks-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0.75rem 1rem 0.85rem;
  text-align: center;
  font-size: 0.88rem;
  color: #fff;
  background: linear-gradient(90deg, #14532d, #16a34a);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.wl-thanks-banner__text {
  margin: 0 0 0.65rem;
  line-height: 1.45;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.wl-thanks-banner > .wl-thanks-banner__dismiss {
  margin-top: 0.15rem;
}

.wl-thanks-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
  justify-content: center;
}

.wl-thanks-banner__link {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s ease, transform 0.2s ease, text-underline-offset 0.2s ease;
}

.wl-thanks-banner__link:hover {
  opacity: 0.95;
  transform: translateY(-1px);
  text-underline-offset: 4px;
}

.wl-thanks-banner__dismiss {
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  font-family: inherit;
  color: #14532d;
  background: #fff;
  border: none;
  border-radius: 6px;
  cursor: var(--cursor-pointer);
  transition: transform 0.2s ease, box-shadow 0.25s ease, filter 0.2s ease;
}

.wl-thanks-banner__dismiss:hover {
  filter: brightness(1.05);
  transform: scale(1.05);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.wl-thanks-banner__dismiss:active {
  transform: scale(0.98);
}

.wl-thanks-banner--out {
  opacity: 0;
  transform: translateY(-100%);
}

/* Página fija de gracias tras enviar whitelist (whitelist-gracias.html) */
.wl-done {
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
  min-height: 55vh;
  display: flex;
  align-items: center;
}

.wl-done__wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.wl-done__card {
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  padding: 2.25rem 1.75rem 2rem;
  text-align: center;
  background: linear-gradient(165deg, rgba(24, 24, 27, 0.92), rgba(12, 12, 14, 0.96));
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(196, 30, 58, 0.08);
}

.wl-done__mark {
  margin-bottom: 1.25rem;
  color: #4ade80;
}

.wl-done__check {
  display: inline-block;
  vertical-align: middle;
  filter: drop-shadow(0 0 12px rgba(74, 222, 128, 0.25));
}

.wl-done__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 5vw, 2.75rem);
  letter-spacing: 0.04em;
  margin: 0 0 1rem;
  color: var(--text);
}

.wl-done__lead {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.wl-done__note {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(161, 161, 170, 0.95);
  margin: 0 0 1.75rem;
}

.wl-done__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.wl-done__discord {
  margin: 0;
  font-size: 0.88rem;
}

.wl-done__discord-link {
  color: #5865f2;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.wl-done__discord-link:hover {
  color: #7289da;
  border-bottom-color: rgba(114, 137, 218, 0.5);
}

.wl-done__discord-hint {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: rgba(161, 161, 170, 0.85);
  font-weight: 400;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: var(--cursor-pointer);
  transition: border-color 0.25s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.nav-toggle:hover {
  border-color: rgba(196, 30, 58, 0.55);
  box-shadow: 0 0 20px var(--accent-glow);
  transform: scale(1.05);
}

.nav-toggle:active {
  transform: scale(0.98);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: background 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle:hover span {
  background: var(--accent);
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: var(--radius);
  border: none;
  cursor: var(--cursor-pointer);
  isolation: isolate;
  overflow: hidden;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.25s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 38%,
    rgba(255, 255, 255, 0.22) 48%,
    rgba(255, 255, 255, 0.08) 52%,
    transparent 62%,
    transparent 100%
  );
  transform: translateX(-120%) skewX(-12deg);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
  pointer-events: none;
}

.btn:hover::before {
  transform: translateX(120%) skewX(-12deg);
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.05);
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
  transition-duration: 0.1s;
  filter: brightness(0.97);
}

.btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

.btn-lg {
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.8rem;
}

.btn-primary {
  background: linear-gradient(145deg, #d42845 0%, var(--accent) 40%, var(--accent-dim) 100%);
  background-size: 200% 200%;
  color: #fff;
  box-shadow: 0 4px 28px var(--accent-glow);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    background-position 0.5s ease;
}

.btn-primary:hover {
  background-position: 100% 50%;
  animation: btn-pulse-glow 1.8s ease-in-out infinite;
}

.btn-primary:active {
  animation: none;
}

.btn-discord {
  background: linear-gradient(145deg, #6b77f5, #5865f2 45%, #4752c4);
  background-size: 200% 200%;
  color: #fff;
  box-shadow: 0 4px 20px rgba(88, 101, 242, 0.35);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    background-position 0.45s ease;
}

.btn-discord:hover {
  background-position: 100% 50%;
  animation: discord-glow 2s ease-in-out infinite;
}

.btn-discord:active {
  animation: none;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 0 transparent;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    background 0.35s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

.btn-outline:hover {
  color: #fff;
  border-color: #e83252;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.55), rgba(139, 21, 48, 0.35));
  box-shadow: 0 0 28px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}


/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 3rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, var(--accent-glow), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(139, 21, 48, 0.2), transparent),
    linear-gradient(180deg, var(--bg-deep) 0%, #0d0b12 100%);
  pointer-events: none;
  animation: hero-bg-drift 16s ease-in-out infinite alternate;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: -18% -10%;
  background:
    radial-gradient(circle at 18% 36%, rgba(196, 30, 58, 0.16), transparent 38%),
    radial-gradient(circle at 82% 62%, rgba(88, 70, 196, 0.12), transparent 34%);
  mix-blend-mode: screen;
  opacity: 0.75;
  filter: blur(8px);
  animation: hero-orb-float 13s ease-in-out infinite;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 1;
}

@keyframes hero-bg-drift {
  0% {
    transform: scale(1) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.03) translate3d(-0.7%, 0.9%, 0);
  }
}

@keyframes hero-orb-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
    opacity: 0.7;
  }
  50% {
    transform: translate3d(1.4%, -1.2%, 0) rotate(2deg);
    opacity: 0.9;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.hero-tags li {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(26, 22, 34, 0.6);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    color 0.25s ease,
    background 0.3s ease;
}

.hero-tags li:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 30, 58, 0.5);
  color: var(--text);
  background: rgba(196, 30, 58, 0.12);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35), 0 0 16px rgba(196, 30, 58, 0.15);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin: 0 0 1.25rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
  transition: text-shadow 0.45s ease, filter 0.35s ease, color 0.3s ease;
}

.hero-content:hover h1 em {
  text-shadow: 0 0 40px rgba(196, 30, 58, 0.55), 0 0 80px rgba(196, 30, 58, 0.2);
  filter: brightness(1.12);
}

.hero-lead {
  max-width: 38rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0 0 2rem;
}

/* Home — elegant / clean refinements */
.page-home .hero {
  padding-bottom: 5.5rem;
}

.hero-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.92;
}

.page-home .hero-eyebrow::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 1px;
  margin-top: 0.9rem;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  opacity: 0.5;
  pointer-events: none;
}

.hero-scroll__label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-scroll__line {
  width: 1px;
  height: 2.25rem;
  background: linear-gradient(180deg, var(--accent), transparent);
  transform-origin: top;
  animation: hero-scroll-line 2.4s ease-in-out infinite;
}

@keyframes hero-scroll-line {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleY(0.88);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

.home-stats {
  border-block: 1px solid rgba(196, 30, 58, 0.14);
  background: rgba(8, 7, 11, 0.72);
  backdrop-filter: blur(10px);
}

.home-stats__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2.35rem 0;
  text-align: center;
}

.home-stat {
  position: relative;
  padding: 0 1rem;
}

.home-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 2.75rem;
  background: linear-gradient(180deg, transparent, rgba(196, 30, 58, 0.25), transparent);
}

.home-stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.85rem);
  letter-spacing: 0.08em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.home-stat--accent .home-stat__value {
  color: var(--accent);
}

.home-stat__label {
  display: block;
  max-width: 14rem;
  margin-inline: auto;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.section-kicker {
  margin: 0 0 0.45rem;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.88;
}

.section-sub--after-kicker {
  margin-top: 0;
  margin-bottom: 2.25rem;
}

.section--home-tight {
  padding-top: 3.25rem;
}

.home-features .card--home {
  position: relative;
  overflow: hidden;
}

.home-features .card--home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(196, 30, 58, 0.45), transparent);
  opacity: 0.75;
}

.home-manifesto {
  padding: 2.75rem 0;
  background: linear-gradient(180deg, transparent, rgba(196, 30, 58, 0.045), transparent);
}

.home-manifesto__quote {
  margin: 0 auto;
  max-width: 26rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: clamp(1.12rem, 2.6vw, 1.42rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.03em;
  line-height: 1.55;
  color: rgba(232, 228, 236, 0.92);
}

.page-home .hero-content {
  animation: home-hero-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes home-hero-in {
  from {
    opacity: 0;
    transform: translateY(1.1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .home-stats__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.85rem 0;
  }

  .home-stat:not(:last-child)::after {
    display: none;
  }
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--bg-deep) 0%, #0c0a10 50%, var(--bg-deep) 100%);
  border-block: 1px solid var(--border);
}

.section-muted {
  background: var(--bg-card);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.04em;
  text-align: center;
  margin: 0 0 0.75rem;
  font-weight: 400;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-pillars {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.card:hover {
  border-color: rgba(196, 30, 58, 0.45);
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(196, 30, 58, 0.12),
    0 0 36px rgba(196, 30, 58, 0.08);
  transform: translateY(-6px) scale(1.01);
}

.card h3 {
  font-size: 1.1rem;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pillar {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--radius);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.pillar:hover {
  transform: translateY(-4px) scale(1.02);
  background: rgba(196, 30, 58, 0.06);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.pillar-icon {
  display: block;
  color: var(--accent);
  font-size: 0.65rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.2em;
  transition: transform 0.4s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.pillar:hover .pillar-icon {
  transform: scale(1.35) rotate(12deg);
  color: #e83252;
  text-shadow: 0 0 16px var(--accent-glow);
}

.pillar h3 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
}

.pillar p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* VIP */
.vip-grid {
  max-width: 720px;
  margin-inline: auto;
}

.card-vip ul {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.card-vip li {
  margin-bottom: 0.35rem;
}

.card-vip-featured {
  position: relative;
  border-color: rgba(196, 30, 58, 0.5);
  background: linear-gradient(160deg, var(--bg-elevated), var(--bg-card));
}

/* Shop */
.shop-grid {
  max-width: 1000px;
  margin-inline: auto;
}

.shop-quick-grid {
  margin: 1.5rem auto 0;
  max-width: 960px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.shop-tile {
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  justify-content: center;
  text-align: center;
  padding: 1.35rem 1.1rem 1.15rem;
  cursor: var(--cursor-pointer);
  border-radius: 16px;
  border: 1px solid rgba(196, 30, 58, 0.2);
  background:
    radial-gradient(circle at 18% 0%, rgba(66, 29, 42, 0.24), transparent 46%),
    linear-gradient(165deg, rgba(18, 15, 28, 0.98), rgba(11, 9, 18, 0.99));
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.28s ease;
}

.shop-tile h2 {
  margin: 0 0 0.42rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.55rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #f2f3f8;
}

.shop-tile__icon {
  width: min(94px, 26vw);
  height: auto;
  margin: 0 auto 0.7rem;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.36));
}

.shop-tile p {
  margin: 0;
  color: rgba(202, 206, 220, 0.9);
  line-height: 1.5;
  font-size: 0.9rem;
  max-width: 18ch;
  margin-inline: auto;
}

.shop-tile__list {
  margin: 0.7rem 0 0;
  padding: 0;
  list-style: none;
  width: 100%;
  text-align: left;
  display: grid;
  gap: 0.45rem;
}

.shop-tile__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.86rem;
  color: var(--text);
  background: rgba(12, 10, 18, 0.6);
}

.shop-tile__list span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ae6b4;
}

.shop-tile__list span::before {
  content: "";
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.55);
}

.shop-tile.is-active {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.16) inset,
    0 0 22px rgba(196, 30, 58, 0.18);
  animation: shop-tile-active-pulse 2.2s ease-in-out infinite;
}

.shop-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 30, 58, 0.45);
}

.shop-tile.is-active::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -45%;
  width: 46%;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(8deg);
  animation: shop-tile-active-sweep 2.8s linear infinite;
  pointer-events: none;
}

@keyframes shop-tile-active-pulse {
  0%,
  100% {
    box-shadow:
      0 22px 44px rgba(0, 0, 0, 0.45),
      0 0 0 1px rgba(255, 255, 255, 0.16) inset,
      0 0 20px rgba(196, 30, 58, 0.16);
  }
  50% {
    box-shadow:
      0 24px 48px rgba(0, 0, 0, 0.48),
      0 0 0 1px rgba(255, 255, 255, 0.2) inset,
      0 0 30px rgba(196, 30, 58, 0.24);
  }
}

@keyframes shop-tile-active-sweep {
  from {
    left: -45%;
  }
  to {
    left: 120%;
  }
}

.shop-legacy {
  margin-top: 2rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border);
}

.shop-pane {
  display: none;
}

.shop-pane.is-open {
  display: block;
  animation: shop-pane-in 0.2s ease;
}

@keyframes shop-pane-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-shop {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.35rem 1.1rem 1.25rem;
  border-radius: 14px;
  background: linear-gradient(165deg, rgba(17, 15, 26, 0.96), rgba(12, 10, 18, 0.98));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  transition: transform 0.22s ease, border-color 0.25s ease, box-shadow 0.3s ease;
}

.card-shop:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 30, 58, 0.42);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.38);
}

.card-shop h3 {
  margin-bottom: 0.5rem;
  font-size: 1.45rem;
  letter-spacing: 0.01em;
}

.card-shop ul {
  margin: 0 0 1.35rem;
  padding-left: 1.05rem;
  color: var(--text-muted);
  flex: 1;
  line-height: 1.45;
}

.card-shop li {
  margin-bottom: 0.52rem;
}

.card-shop__price {
  margin: -0.2rem 0 0.95rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #f2d6df;
  opacity: 0.92;
}

.card-shop .btn {
  align-self: flex-start;
  margin-top: auto;
}

.shop-price-chip {
  align-self: center;
  margin-top: auto;
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 92px;
  align-items: center;
  padding: 0.46rem 0.78rem 0.42rem;
  border-radius: 13px;
  border: 1px solid rgba(196, 30, 58, 0.48);
  background: radial-gradient(circle at 50% 0%, rgba(42, 30, 44, 0.7), rgba(15, 12, 24, 0.98));
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.shop-price-chip__label {
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(220, 198, 208, 0.95);
}

.shop-price-chip__value {
  line-height: 1;
  font-family: var(--font-display);
  font-size: 2.05rem;
  letter-spacing: 0.03em;
  color: #ff6a8d;
  text-shadow: 0 0 18px rgba(255, 106, 141, 0.34);
}

.card-shop--featured {
  border-color: rgba(196, 30, 58, 0.5);
  background: linear-gradient(160deg, var(--bg-elevated), var(--bg-card));
}

.shop-category {
  margin-top: 3.25rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.shop-category__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 0 0 0.65rem;
}

.shop-category__sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 38rem;
  margin: 0 auto 2.25rem;
}

.shop-category__cta {
  margin: 1.1rem 0 0.2rem;
  display: flex;
  justify-content: center;
}

.shop-bloodcoin-hero {
  display: flex;
  justify-content: center;
  margin: 0 auto 1.8rem;
}

.shop-bloodcoin-hero__img {
  width: min(260px, 72vw);
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}

.shop-category--locales {
  margin-top: 2.5rem;
  padding-top: 2.25rem;
}

.shop-category--locales .shop-category__title {
  font-size: clamp(1.45rem, 3.2vw, 1.85rem);
  margin-bottom: 0.45rem;
}

.shop-category--locales .shop-category__sub {
  margin-bottom: 1.35rem;
  font-size: 0.85rem;
  opacity: 0.92;
}

.locale-products {
  display: flex;
  justify-content: center;
  max-width: 26rem;
  margin-inline: auto;
}

.locale-products.locale-products--wide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  max-width: min(72rem, 98vw);
  width: 100%;
  align-items: stretch;
}

@media (max-width: 768px) {
  .shop-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 360px;
  }
}

@media (max-width: 1024px) {
  .locale-products.locale-products--wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }
}

@media (max-width: 640px) {
  .locale-products.locale-products--wide {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    max-width: min(40rem, 94vw);
  }
}

.card-locale--clean {
  position: relative;
  width: 100%;
  min-width: 0;
  padding: 0;
  overflow: visible;
  border-color: rgba(196, 30, 58, 0.18);
  background: linear-gradient(180deg, rgba(18, 16, 24, 0.98), var(--bg-card));
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.32);
}

/* Cinta promocional — solo Uwu (esquina superior derecha) */
.card-locale__sale-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  width: 6.75rem;
  height: 6.75rem;
  overflow: hidden;
  pointer-events: none;
}

.card-locale__sale-ribbon-inner {
  position: absolute;
  top: 1.05rem;
  right: -2.35rem;
  width: 10.5rem;
  padding: 0.42rem 0 0.38rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.08rem;
  transform: rotate(42deg);
  transform-origin: center;
  font-family: var(--font-display);
  line-height: 1;
  text-align: center;
  color: #fffaf8;
  background: linear-gradient(
    185deg,
    #fb7185 0%,
    var(--accent) 38%,
    var(--accent-dim) 72%,
    #4c0519 100%
  );
  border-top: 1px solid rgba(255, 200, 210, 0.55);
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.25),
    0 8px 28px rgba(196, 30, 58, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.card-locale__sale-ribbon-line {
  font-size: 0.52rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.96;
}

.card-locale__sale-ribbon-pct {
  font-size: clamp(1.05rem, 2.8vmin, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.12em;
}

.card-locale--clean:hover {
  transform: none;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(196, 30, 58, 0.1);
}

.card-locale__head {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem 1.25rem;
  padding: 1.05rem 1.25rem 1.1rem 1.1rem;
  padding-right: max(1.25rem, 2vw);
  border-bottom: 1px solid rgba(196, 30, 58, 0.14);
  box-shadow: inset 0 -1px 0 rgba(74, 222, 128, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, transparent 58%);
  overflow: visible;
}

.card-locale__head-main {
  flex: none;
  width: 100%;
  min-width: 0;
}

.card-locale__title {
  margin: 0 0 0.15rem;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text);
  line-height: 1;
}

.card-locale__meta {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.88;
}

.card-locale__head-aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-shrink: 0;
  padding-top: 0.15rem;
  overflow: visible;
}

.locale-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.34rem 0.85rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
}

.locale-pill--ok {
  color: #ecfdf5;
  background: linear-gradient(
    165deg,
    rgba(52, 211, 153, 0.22) 0%,
    rgba(22, 163, 74, 0.28) 42%,
    rgba(21, 128, 61, 0.38) 100%
  );
  border: 1px solid rgba(110, 231, 183, 0.55);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 0 24px rgba(34, 197, 94, 0.28),
    0 6px 18px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.locale-pill--ok::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #bbf7d0, #22c55e 55%, #15803d);
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.9), 0 0 20px rgba(34, 197, 94, 0.55);
  flex-shrink: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .locale-pill--ok::before {
    animation: locale-pill-dot-pulse 2.4s ease-in-out infinite;
  }
}

@keyframes locale-pill-dot-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.9), 0 0 20px rgba(34, 197, 94, 0.55);
  }
  50% {
    opacity: 0.92;
    transform: scale(1.06);
    box-shadow: 0 0 14px rgba(74, 222, 128, 1), 0 0 28px rgba(34, 197, 94, 0.65);
  }
}

@media (prefers-reduced-motion: reduce) {
  .locale-pill--ok::before {
    animation: none;
  }
}

/* Debe ganar a .card p (0.95rem / text-muted) */
.card.card-locale .card-locale__price {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vmin, 2.15rem);
  letter-spacing: 0.06em;
  line-height: 1;
  font-weight: 400;
  color: transparent;
  background: linear-gradient(165deg, #fff5f6 0%, #ffb8c3 28%, var(--accent) 72%, var(--accent-dim) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 1px 3px rgba(196, 30, 58, 0.35));
}

@supports not (background-clip: text) {
  .card.card-locale .card-locale__price {
    color: var(--accent);
    background: none;
    filter: drop-shadow(0 1px 3px rgba(196, 30, 58, 0.28));
  }
}

.card-locale__price-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.08rem;
  margin-left: auto;
  padding: 0.22rem 0.45rem 0.26rem 0.5rem;
  background: linear-gradient(145deg, rgba(196, 30, 58, 0.1), rgba(18, 16, 24, 0.85));
  border: 1px solid rgba(196, 30, 58, 0.35);
  border-radius: var(--radius);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.25),
    0 3px 12px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.card-locale__price-label {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.9;
}

.locale-gallery {
  padding: 0.65rem 0.75rem 0;
  overflow: hidden;
  border-radius: 0;
}

.locale-gallery__stage {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #050508;
  aspect-ratio: 16 / 9;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.locale-gallery__main {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
  transition: opacity 0.2s ease;
}

.locale-gallery__thumbs {
  display: flex;
  gap: 0.35rem;
  padding: 0.55rem 0 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(196, 30, 58, 0.35) transparent;
}

.locale-gallery__thumbs::-webkit-scrollbar {
  height: 4px;
}

.locale-gallery__thumbs::-webkit-scrollbar-thumb {
  background: rgba(196, 30, 58, 0.35);
  border-radius: 999px;
}

.locale-gallery__thumb {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 4.15rem;
  height: 2.35rem;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  cursor: var(--cursor-pointer);
  background: var(--bg-deep);
  opacity: 0.72;
  transition:
    opacity 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.locale-gallery__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.locale-gallery__thumb:hover {
  opacity: 1;
}

.locale-gallery__thumb.is-active {
  opacity: 1;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(196, 30, 58, 0.3), 0 2px 10px rgba(196, 30, 58, 0.15);
}

.locale-gallery__thumb:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.card-locale__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 0.85rem 1.1rem 1.1rem;
  overflow: visible;
}

.card-locale__foot .locale-info-trigger {
  flex-shrink: 0;
}

.card.card-locale .card-locale__price--foot {
  text-align: right;
  line-height: 0.9;
  flex-shrink: 0;
  min-width: 0;
}

.card-locale__foot .card-locale__price-wrap {
  flex-shrink: 0;
}

.locale-info-dialog {
  margin: auto;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: min(24rem, 92vw);
  background: var(--bg-card);
  color: var(--text);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  overflow-x: hidden;
  box-sizing: border-box;
}

.locale-info-dialog::backdrop {
  background: rgba(5, 4, 8, 0.75);
  backdrop-filter: blur(6px);
}

.locale-info-dialog__inner {
  position: relative;
  padding: 1.25rem 1.35rem 1.15rem;
}

.locale-info-dialog__x {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: var(--cursor-pointer);
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.locale-info-dialog__x:hover {
  color: var(--text);
  background: rgba(196, 30, 58, 0.12);
}

.locale-info-dialog__x:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.locale-info-dialog__title {
  margin: 0 2rem 0.65rem 0;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text);
}

.locale-info-dialog__lead {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.locale-info-dialog__preview {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.locale-info-dialog__preview-label {
  margin-right: 0.4rem;
}

.locale-info-dialog__preview-link {
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 30, 58, 0.4);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    text-shadow 0.2s ease;
}

.locale-info-dialog__preview-link:hover {
  color: #ff8a9a;
  border-bottom-color: rgba(196, 30, 58, 0.75);
  text-shadow: 0 0 18px var(--accent-glow);
}

.locale-info-dialog__preview-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.locale-info-dialog__preview-link--disabled {
  cursor: help;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px dashed rgba(154, 146, 158, 0.45);
  pointer-events: auto;
}

.locale-info-dialog__preview-link--disabled:hover {
  color: var(--text-muted);
  text-shadow: none;
  border-bottom-color: rgba(154, 146, 158, 0.55);
}

.locale-info-dialog__list {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.locale-info-dialog__list li {
  margin-bottom: 0.4rem;
}

.locale-info-dialog__foot {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-muted);
  opacity: 0.95;
}

.locale-info-dialog__btn {
  width: 100%;
}

.badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--accent);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}

.badge.badge--available {
  background: linear-gradient(145deg, #22c55e, #15803d);
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.35);
}

.badge.badge--off {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.36rem 0.72rem 0.34rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(239, 68, 68, 0.45);
  background: linear-gradient(180deg, rgba(38, 10, 16, 0.95), rgba(22, 6, 10, 0.98));
  color: #ffe9ee;
  letter-spacing: 0.08em;
  box-shadow:
    0 0 0 1px rgba(239, 68, 68, 0.12) inset,
    0 8px 18px rgba(0, 0, 0, 0.35);
}

.badge.badge--off::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.65);
}

/* Whitelist */
.whitelist-steps {
  list-style: none;
  margin: 0 0 2.25rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  counter-reset: wl-step;
}

.whitelist-step {
  position: relative;
  margin: 0;
  padding: 1.5rem 1.5rem 1.5rem 3.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  counter-increment: wl-step;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.whitelist-step:hover {
  border-color: rgba(196, 30, 58, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.whitelist-step::before {
  content: counter(wl-step);
  position: absolute;
  left: 1rem;
  top: 1.35rem;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(145deg, var(--accent), var(--accent-dim));
  border-radius: 50%;
  box-shadow: 0 2px 12px var(--accent-glow);
}

.whitelist-step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--text);
}

.whitelist-step p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.whitelist-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.container--wl {
  max-width: 640px;
}

.wl-lead {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-muted);
  text-align: center;
}

.wl-gate {
  max-width: 36rem;
  margin-inline: auto;
}

.wl-gate__steps {
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
  text-align: left;
}

.wl-gate__steps li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 2.75rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.wl-gate__step-num {
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.85rem;
  height: 1.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(145deg, var(--accent), var(--accent-dim));
  border-radius: 50%;
  box-shadow: 0 2px 12px var(--accent-glow);
}

.wl-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.wl-gate__warn {
  margin: 0 0 1rem;
  padding: 1rem 1.15rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #f0d4d8;
  text-align: center;
  background: rgba(196, 30, 58, 0.14);
  border: 1px solid rgba(196, 30, 58, 0.35);
  border-radius: var(--radius);
}

.wl-gate__note {
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: center;
  opacity: 0.95;
}

.wl-gate__soft {
  display: block;
  width: 100%;
  max-width: 22rem;
  margin: 0 auto 0.75rem;
}

.wl-gate__devhint {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--text-muted);
  text-align: center;
  opacity: 0.88;
}

.wl-gate__devhint code {
  font-size: 0.85em;
  padding: 0.1em 0.35em;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 4px;
}

.wl-form-panel__title {
  margin-bottom: 0.5rem;
}

.wl-form-panel__lead {
  margin-bottom: 1.75rem;
}

.wl-no-whitelist-notice {
  margin: -0.5rem 0 1.5rem;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text);
  background: rgba(220, 53, 69, 0.12);
  border: 1px solid rgba(220, 53, 69, 0.35);
  border-radius: 10px;
}

.wl-no-whitelist-notice strong {
  font-weight: 600;
}

.wl-discord-hint {
  margin: 0 0 2rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  text-align: center;
}

.wl-discord-hint a {
  font-weight: 600;
}

.wl-sponsor-panel {
  margin: 0 0 1.5rem;
  padding: 1.4rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.wl-sponsor-panel__title {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  color: var(--text);
}

.wl-sponsor-panel__lead {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.55;
}

.wl-sponsor-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.wl-form {
  position: relative;
  margin: 0 auto;
  padding: 2rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.wl-form-step {
  display: block;
}

.wl-form-step[hidden] {
  display: none !important;
}

.wl-field-hint {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(154, 146, 158, 0.85);
}

.wl-input--display {
  cursor: default;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.35);
  border-style: dashed;
}

.wl-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.wl-field {
  margin-bottom: 1.35rem;
}

.wl-field:last-of-type {
  margin-bottom: 0;
}

.wl-label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.wl-num {
  color: var(--accent);
  font-weight: 700;
  margin-right: 0.15rem;
}

.wl-req {
  color: var(--accent);
  font-weight: 700;
}

.wl-input,
.wl-textarea,
.wl-select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition:
    border-color 0.25s ease,
    box-shadow 0.3s ease,
    background 0.25s ease,
    transform 0.22s ease;
}

.wl-input:hover,
.wl-textarea:hover,
.wl-select:hover {
  border-color: rgba(196, 30, 58, 0.38);
  background: rgba(10, 8, 14, 0.95);
}

.wl-input:focus,
.wl-textarea:focus,
.wl-select:focus {
  outline: none;
  border-color: rgba(196, 30, 58, 0.55);
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.15);
  transform: translateY(-1px);
}

.wl-select:focus {
  transform: none;
}

.wl-textarea {
  resize: vertical;
  min-height: 5rem;
}

.wl-select {
  cursor: var(--cursor-pointer);
}

.wl-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: var(--cursor-pointer);
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-muted);
  padding: 0.4rem 0.5rem;
  margin: -0.4rem -0.5rem;
  border-radius: 10px;
  transition: color 0.25s ease, background 0.25s ease;
}

.wl-check:hover {
  color: var(--text);
  background: rgba(196, 30, 58, 0.07);
}

.wl-check input {
  margin-top: 0.2rem;
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  accent-color: var(--accent);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.wl-check:hover input {
  transform: scale(1.12);
  box-shadow: 0 0 0 2px rgba(196, 30, 58, 0.25);
}

.wl-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.wl-footnote {
  margin: 1.75rem 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
  opacity: 0.9;
}

@media (max-width: 720px) {
  .whitelist-steps {
    grid-template-columns: 1fr;
  }

  .wl-form {
    padding: 1.5rem 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg,
  .hero-bg::before,
  .hero-scroll__line {
    animation: none !important;
  }

  .whitelist-step:hover {
    transform: none;
  }
}

.postulaciones-hero {
  padding-top: 2rem;
  min-height: auto;
}

.page-postulaciones .postulaciones-hero {
  padding-top: clamp(2rem, 5vw, 3.25rem);
}

.postulaciones-hero__title {
  text-align: left;
  margin-bottom: 0.75rem;
}

.postulaciones-inline-anchor {
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 30, 58, 0.4);
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.postulaciones-inline-anchor:hover {
  color: #ff6b7a;
  border-bottom-color: rgba(196, 30, 58, 0.75);
}

.postulaciones-inline-anchor:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.postulaciones-bandas-section {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.postulaciones-bandas-section .section-title {
  margin-bottom: 0.35rem;
}

.postulaciones-bandas-section__sub {
  margin-bottom: 1.5rem !important;
}

.postulaciones-bandas-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 44rem;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.postulaciones-bandas-option {
  position: relative;
  margin: 0;
  padding: 1.15rem 1.25rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  text-align: left;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.26);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.postulaciones-bandas-option__status {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 2;
  pointer-events: none;
}

.postulaciones-bandas-option__status-glow {
  position: absolute;
  inset: -6px -4px -6px -4px;
  border-radius: 999px;
  background: radial-gradient(ellipse 100% 120% at 50% 0%, rgba(74, 222, 128, 0.45) 0%, transparent 65%);
  opacity: 0.85;
  filter: blur(8px);
  z-index: 0;
}

.postulaciones-bandas-option__status-inner {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  padding: 0.38rem 0.72rem 0.38rem 0.55rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f0fdf4;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(52, 211, 153, 0.22) 28%,
    rgba(22, 163, 74, 0.45) 55%,
    rgba(20, 83, 45, 0.65) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(187, 247, 208, 0.55);
  border-radius: 999px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.4),
    0 6px 20px rgba(0, 0, 0, 0.45),
    0 0 28px rgba(34, 197, 94, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.postulaciones-bandas-option__status-dot {
  flex-shrink: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 28%, #d1fae5, #4ade80 50%, #15803d);
  box-shadow:
    0 0 10px #4ade80,
    0 0 18px rgba(74, 222, 128, 0.75);
}

.postulaciones-bandas-option__status-text {
  line-height: 1;
  padding-top: 0.06em;
}

.postulaciones-bandas-option:hover .postulaciones-bandas-option__status-inner {
  border-color: rgba(204, 251, 241, 0.75);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 8px 26px rgba(0, 0, 0, 0.5),
    0 0 36px rgba(34, 197, 94, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12);
}

.postulaciones-bandas-option:hover .postulaciones-bandas-option__status-glow {
  opacity: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .postulaciones-bandas-option__status-dot {
    animation: bandas-status-dot-pulse 2.2s ease-in-out infinite;
  }
}

@keyframes bandas-status-dot-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow:
      0 0 10px #4ade80,
      0 0 18px rgba(74, 222, 128, 0.75);
  }
  50% {
    opacity: 0.92;
    transform: scale(1.12);
    box-shadow:
      0 0 14px #86efac,
      0 0 26px rgba(74, 222, 128, 0.95);
  }
}

@media (prefers-reduced-motion: reduce) {
  .postulaciones-bandas-option__status-dot {
    animation: none;
  }
}

.postulaciones-bandas-option:hover {
  border-color: rgba(196, 30, 58, 0.3);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.32), 0 0 32px rgba(196, 30, 58, 0.06);
  transform: translateY(-2px);
}

.postulaciones-bandas-option--clickable {
  cursor: var(--cursor-pointer);
}

.postulaciones-bandas-option--clickable:focus {
  outline: none;
}

.postulaciones-bandas-option--clickable:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.postulaciones-bandas-option__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.15;
  color: var(--text);
}

.postulaciones-bandas-option__text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.52;
  color: var(--text-muted);
}

.postulaciones-bandas-option--lore,
.postulaciones-bandas-option--libre {
  padding: 0;
  overflow: hidden;
}

.postulaciones-bandas-option__media {
  margin: 0;
  line-height: 0;
  background: #0a090d;
  border-bottom: 1px solid rgba(196, 30, 58, 0.15);
}

.postulaciones-bandas-option__media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 13rem;
  object-fit: cover;
  object-position: 50% 25%;
}

.postulaciones-bandas-option--lore .postulaciones-bandas-option__media img {
  object-position: 50% 20%;
}

.postulaciones-bandas-option__body {
  padding: 1rem 1.25rem 1.2rem;
}

.postulaciones-bandas-option--lore .postulaciones-bandas-option__title,
.postulaciones-bandas-option--libre .postulaciones-bandas-option__title {
  margin-top: 0;
}

@media (max-width: 640px) {
  .postulaciones-bandas-options {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .postulaciones-bandas-option:hover {
    transform: none;
  }
}

/* Modal: bandas de lore GTA V (postulaciones) */
.lore-gangs-dialog.locale-info-dialog {
  max-width: min(30rem, 94vw);
  width: calc(100% - 2rem);
  border-color: rgba(196, 30, 58, 0.32);
  background: linear-gradient(165deg, rgba(20, 17, 28, 0.99) 0%, rgba(18, 16, 24, 1) 45%, var(--bg-card) 100%);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(196, 30, 58, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.lore-gangs-dialog .locale-info-dialog__title {
  padding-bottom: 0.15rem;
  border-bottom: 1px solid rgba(196, 30, 58, 0.12);
  margin-bottom: 0.75rem;
  max-width: 100%;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Cierre: mismo lenguaje visual que el antiguo botón Cerrar (primario rojo + glow) */
.lore-gangs-dialog.locale-info-dialog .locale-info-dialog__x {
  top: 0.45rem;
  right: 0.45rem;
  width: 2.55rem;
  height: 2.55rem;
  font-size: 1.45rem;
  font-weight: 300;
  line-height: 1;
  color: #fff;
  background: linear-gradient(145deg, #d42845 0%, var(--accent) 40%, var(--accent-dim) 100%);
  background-size: 200% 200%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow: 0 4px 28px var(--accent-glow);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    background-position 0.5s ease,
    filter 0.25s ease;
}

.lore-gangs-dialog.locale-info-dialog .locale-info-dialog__x:hover {
  color: #fff;
  background-position: 100% 50%;
  filter: brightness(1.06);
  box-shadow: 0 8px 40px rgba(196, 30, 58, 0.55), 0 0 0 6px rgba(196, 30, 58, 0.08);
  transform: translateY(-2px) scale(1.04);
  animation: btn-pulse-glow 1.8s ease-in-out infinite;
}

.lore-gangs-dialog.locale-info-dialog .locale-info-dialog__x:active {
  animation: none;
  transform: translateY(0) scale(0.96);
  filter: brightness(0.95);
}

.lore-gangs-dialog.locale-info-dialog .locale-info-dialog__x:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .lore-gangs-dialog.locale-info-dialog .locale-info-dialog__x:hover {
    animation: none;
  }
}

.lore-gangs-dialog__inner {
  max-height: min(82vh, 38rem);
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 0.5rem;
  scrollbar-gutter: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(196, 30, 58, 0.65) rgba(10, 9, 14, 0.85);
}

.lore-gangs-dialog__inner::-webkit-scrollbar {
  width: 7px;
}

.lore-gangs-dialog__inner::-webkit-scrollbar-button {
  display: none;
  height: 0;
  width: 0;
}

.lore-gangs-dialog__inner::-webkit-scrollbar-track {
  background: rgba(12, 10, 18, 0.9);
  border-radius: 999px;
  margin: 0.35rem 0;
}

.lore-gangs-dialog__inner::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(212, 40, 60, 0.75) 0%, rgba(139, 21, 48, 0.9) 100%);
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.lore-gangs-dialog__inner::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(230, 55, 75, 0.88) 0%, var(--accent) 100%);
}

.lore-gangs-dialog__inner::-webkit-scrollbar-thumb:active {
  background: var(--accent-dim);
}

.lore-gangs-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-width: 0;
  max-width: 100%;
}

.lore-gangs-list__item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  min-width: 0;
  max-width: 100%;
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.lore-gangs-list__item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(196, 30, 58, 0.18);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(196, 30, 58, 0.06);
}

.lore-gangs-list__swatch {
  flex-shrink: 0;
  width: 0.45rem;
  margin-top: 0.35rem;
  min-height: 2.25rem;
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

.lore-gangs-list__item--families .lore-gangs-list__swatch {
  background: linear-gradient(180deg, #4ade80, #15803d);
  box-shadow: 0 0 14px rgba(74, 222, 128, 0.35);
}

.lore-gangs-list__item--ballas .lore-gangs-list__swatch {
  background: linear-gradient(180deg, #c084fc, #6b21a8);
  box-shadow: 0 0 14px rgba(192, 132, 252, 0.35);
}

.lore-gangs-list__item--vagos .lore-gangs-list__swatch {
  background: linear-gradient(180deg, #fde047, #ca8a04);
  box-shadow: 0 0 14px rgba(250, 204, 21, 0.35);
}

.lore-gangs-list__item--marabunta .lore-gangs-list__swatch {
  background: linear-gradient(180deg, #60a5fa, #1d4ed8);
  box-shadow: 0 0 14px rgba(96, 165, 250, 0.35);
}

.lore-gangs-list__item--aztecas .lore-gangs-list__swatch {
  background: linear-gradient(180deg, #22d3ee, #0e7490);
  box-shadow: 0 0 14px rgba(34, 211, 238, 0.35);
}

.lore-gangs-list__item--lost .lore-gangs-list__swatch {
  background: linear-gradient(180deg, #fb923c, #171717 55%, #171717);
  box-shadow: 0 0 12px rgba(251, 146, 60, 0.25);
}

.lore-gangs-list__body {
  min-width: 0;
  flex: 1;
}

.lore-gangs-list__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem 0.65rem;
  margin-bottom: 0.35rem;
}

.lore-gangs-list__name {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text);
  line-height: 1.2;
}

.lore-gangs-list__pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.48rem;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ecfdf5;
  background: linear-gradient(
    165deg,
    rgba(52, 211, 153, 0.42) 0%,
    rgba(22, 163, 74, 0.5) 55%,
    rgba(21, 128, 61, 0.58) 100%
  );
  border: 1px solid rgba(134, 239, 172, 0.5);
  border-radius: 999px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 2px 10px rgba(0, 0, 0, 0.35),
    0 0 14px rgba(34, 197, 94, 0.22);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.lore-gangs-list__desc {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.48;
  color: var(--text-muted);
  overflow-wrap: break-word;
  word-break: break-word;
}

.lore-gangs-list__desc strong {
  color: rgba(232, 228, 236, 0.92);
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .lore-gangs-list__item {
    transition: none;
  }
}

.section-cta {
  padding: 3.5rem 0;
}

.cta-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 2.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.cta-block:hover {
  border-color: rgba(196, 30, 58, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 40px rgba(196, 30, 58, 0.08);
  transform: translateY(-2px);
}

.cta-block h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.5rem;
  font-weight: 400;
}

.cta-block p {
  margin: 0;
  color: var(--text-muted);
  max-width: 32rem;
}

.partner-page {
  padding-top: 2rem;
  padding-bottom: 3rem;
  min-height: 50vh;
}

.partner-layout {
  max-width: 28rem;
  margin: 0 auto;
}

.partner-page__intro {
  text-align: center;
  margin-bottom: 1.5rem;
}

.partner-page__intro .section-title {
  margin-bottom: 0.5rem;
}

.partner-page__lead {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.partner-spotlight {
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem 1.25rem;
  border: 1px solid rgba(244, 114, 182, 0.28);
  background: linear-gradient(165deg, rgba(24, 18, 32, 0.98) 0%, rgba(18, 14, 22, 0.99) 50%, rgba(16, 12, 20, 1) 100%);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 12px 40px rgba(0, 0, 0, 0.35),
    0 0 48px rgba(192, 132, 252, 0.06);
}

.partner-spotlight__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(244, 114, 182, 0.12);
}

.partner-spotlight__logo {
  flex-shrink: 0;
  width: auto;
  max-height: 2.65rem;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(244, 114, 182, 0.2));
}

.partner-spotlight__titles {
  min-width: 0;
  text-align: left;
}

.partner-spotlight__name {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.1;
  color: #fce7f3;
  text-shadow: 0 0 24px rgba(244, 114, 182, 0.25);
}

.partner-spotlight__tagline {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(228, 212, 236, 0.88);
}

.partner-spotlight__highlights {
  margin: 0 0 0.85rem;
  padding-left: 1.05rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.partner-spotlight__highlights li {
  margin-bottom: 0.45rem;
}

.partner-spotlight__highlights li:last-child {
  margin-bottom: 0;
}

.partner-spotlight__support {
  margin: 0 0 0.9rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(196, 181, 210, 0.9);
}

.partner-spotlight__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.btn-babymods {
  flex: 1 1 auto;
  min-width: 7rem;
  justify-content: center;
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a0a14;
  background: linear-gradient(180deg, #fbcfe8 0%, #f472b6 45%, #db2777 100%);
  border: 1px solid rgba(251, 207, 232, 0.5);
  box-shadow: 0 4px 16px rgba(219, 39, 119, 0.25);
}

.btn-babymods:hover {
  color: #1a0a14;
  filter: brightness(1.06);
  box-shadow: 0 6px 22px rgba(219, 39, 119, 0.35);
}

.btn-babymods--ghost {
  color: #fbcfe8;
  background: transparent;
  border-color: rgba(244, 114, 182, 0.45);
  box-shadow: none;
}

.btn-babymods--ghost:hover {
  color: #fff;
  background: rgba(244, 114, 182, 0.12);
  border-color: rgba(244, 114, 182, 0.65);
}

.partner-page__contact {
  margin-top: 2rem;
  text-align: center;
}

.partner-page__contact p {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.partner-page__discord-link {
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 30, 58, 0.45);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    text-shadow 0.2s ease;
}

.partner-page__discord-link:hover {
  color: #ff6b7a;
  border-bottom-color: rgba(196, 30, 58, 0.75);
  text-shadow: 0 0 16px var(--accent-glow);
}

.partner-page__discord-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.partner-block {
  text-align: center;
}

.partner-block .section-title {
  margin-bottom: 0.75rem;
}

.partner-block p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.link-mail {
  position: relative;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease, text-shadow 0.3s ease;
}

.link-mail::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #ff6b6b);
  transform: scaleX(0.35);
  transform-origin: left;
  opacity: 0.6;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}

.link-mail:hover {
  color: #ff6b6b;
  transform: translateY(-2px);
  text-shadow: 0 0 20px var(--accent-glow);
  text-decoration: none;
}

.link-mail:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.link-mail:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 2px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  background: #050408;
}

.footer-inner {
  display: grid;
  gap: 1.5rem;
  text-align: center;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
}

.footer-brand p {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}

.footer-nav a {
  position: relative;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.28s ease, text-shadow 0.3s ease;
}

.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-nav a:hover {
  color: var(--text);
  transform: translateY(-3px);
  text-decoration: none;
  text-shadow: 0 0 14px rgba(196, 30, 58, 0.22);
}

.footer-nav a:hover::after {
  transform: scaleX(1);
}

.footer-nav a:focus-visible {
  color: var(--text);
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 2px;
}

.footer-nav a:focus-visible::after {
  transform: scaleX(1);
}

.footer-copy {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.85;
}

/* Mobile */
@media (max-width: 900px) {
  .grid-3,
  .grid-pillars {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 6, 10, 0.97);
    flex-direction: column;
    align-items: stretch;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .btn-nav {
    margin-left: 0;
    width: 100%;
  }

  .discord-auth-slot {
    margin-left: 0;
    width: 100%;
    justify-content: flex-start;
  }

  .discord-menu {
    margin-left: 0;
    width: 100%;
  }

  .discord-menu__trigger {
    width: 100%;
    justify-content: flex-start;
    border-radius: var(--radius);
  }

  .discord-menu__trigger-name {
    max-width: none;
    flex: 1;
  }

  .discord-menu__panel {
    position: static;
    width: 100%;
    max-width: none;
    margin-top: 0.5rem;
    box-shadow: none;
    border-radius: var(--radius);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-scroll__line {
    animation: none;
    opacity: 0.55;
    transform: none;
  }

  .page-home .hero-content {
    animation: none;
  }

  .logo:hover,
  .hero-tags li:hover,
  .locale-gallery__main {
    transition: none;
  }

  .locale-info-dialog::backdrop {
    backdrop-filter: none;
  }

  .card:hover,
  .pillar:hover,
  .pillar:hover .pillar-icon,
  .cta-block:hover,
  .link-mail:hover,
  .footer-nav a:hover,
  .site-nav ul a:hover,
  .btn:hover,
  .btn:active,
  .nav-toggle:hover,
  .discord-menu__trigger:hover,
  .discord-menu__trigger:active,
  .discord-login-btn:hover,
  .discord-login-btn:active,
  a.discord-menu__item:hover,
  button.discord-menu__item:hover,
  .hero-content:hover h1 em,
  .wl-check:hover input,
  .wl-input:focus,
  .wl-textarea:focus,
  .wl-select:focus,
  .wl-thanks-banner__link:hover,
  .wl-thanks-banner__dismiss:hover,
  .wl-thanks-banner__dismiss:active {
    transform: none;
    animation: none;
    filter: none;
    text-shadow: none;
  }

  .btn::before,
  .btn:hover::before {
    transform: none;
    transition: none;
  }

  .btn:hover,
  .btn:active {
    filter: none;
  }

  .btn-primary:hover,
  .btn-discord:hover {
    animation: none;
  }

  .site-nav ul a::after,
  .footer-nav a::after,
  .link-mail::after {
    transition: none;
  }

  a.discord-menu__item:hover,
  button.discord-menu__item:hover {
    padding-left: 1rem;
    box-shadow: none;
  }

  .login-page__discord-btn:hover,
  .login-page__discord-btn:active,
  .login-page__logo {
    transform: none;
    animation: none;
    filter: none;
  }
}

/* —— Pantalla de acceso / panel (identidad Blood RP) —— */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Login (login.html): fondo negro + fuego/brasa subiendo desde abajo (canvas) + acentos Blood RP */
.login-page {
  position: relative;
  min-height: 100vh;
  margin: 0;
  font-family: var(--font-body);
  color: #eae8e3;
  background-color: #000000;
}

.login-page__particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.login-page .login-page__main {
  color: #eae8e3;
}

.login-page .login-page__partner-embed .partner-page__intro .section-title {
  color: #f5f0e6;
}

.login-page .login-page__partner-embed .partner-page__lead {
  color: rgba(200, 195, 185, 0.82);
}

.login-page .login-page__partner-embed .partner-page__contact p {
  color: rgba(200, 195, 185, 0.78);
}

.login-page .login-page__social-link {
  color: rgba(168, 164, 158, 0.55);
}

.login-page .login-page__social-link:hover {
  color: #fca5a5;
}

.login-page .login-page__legal a,
.login-page .login-page__credit,
.login-page .login-page__credit a {
  color: rgba(148, 144, 138, 0.72);
}

.login-page .login-page__legal a:hover,
.login-page .login-page__credit a:hover {
  color: var(--accent);
}

.login-page .login-page__disclaimer {
  color: rgba(120, 116, 110, 0.58);
}

.login-page .login-page__tagline {
  color: rgba(200, 196, 188, 0.78);
}

/* Logo Blood RP centrado en Jugar; debajo Acceso + Discord. Se oculta en Partners/Eventos. */
.login-page__hero-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 0 0.85rem;
  padding: 0;
  border: none;
  font: inherit;
  line-height: 0;
}

@supports selector(:has(*)) {
  .login-page__main:has(#login-panel-partners:not([hidden])) .login-page__hero-title,
  .login-page__main:has(#login-panel-eventos:not([hidden])) .login-page__hero-title {
    display: none;
  }
}

.login-page__hero-img {
  display: block;
  width: min(80vw, 500px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 18px rgba(196, 30, 58, 0.55))
    drop-shadow(0 0 48px rgba(196, 30, 58, 0.42))
    drop-shadow(0 0 88px rgba(139, 21, 48, 0.3));
  pointer-events: none;
  user-select: none;
}

@media (max-width: 480px) {
  .login-page__hero-img {
    width: min(78vw, 360px);
    filter:
      drop-shadow(0 0 14px rgba(196, 30, 58, 0.5))
      drop-shadow(0 0 40px rgba(196, 30, 58, 0.38));
  }
}

/* Login simple (login.html): columna centrada + pestañas píldora */
.login-page__wrap {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: min(640px, 94vw);
  margin-inline: auto;
  padding: clamp(1.25rem, 4vw, 2rem) clamp(1.15rem, 4vw, 1.75rem) 1.5rem;
  box-sizing: border-box;
}

.login-page__wrap .login-page__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  width: 100%;
  padding-top: clamp(2rem, 9vh, 4.25rem);
  padding-bottom: 0.35rem;
}

.login-page__tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 1.5rem;
  padding: 0.4rem;
  border-radius: 999px;
  border: 1px solid rgba(196, 30, 58, 0.32);
  background: rgba(22, 20, 18, 0.94);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 140, 150, 0.08),
    0 8px 32px rgba(0, 0, 0, 0.35);
}

.login-page__tab {
  flex: 1 1 auto;
  min-width: 5.25rem;
  padding: 0.55rem 0.65rem;
  margin: 0;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(150, 146, 138, 0.72);
  background: transparent;
  cursor: var(--cursor-pointer);
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.login-page__tab:hover {
  color: rgba(252, 165, 165, 0.95);
}

.login-page__tab[aria-selected="true"] {
  color: #fecaca;
  background: linear-gradient(180deg, rgba(48, 22, 28, 0.98) 0%, rgba(24, 14, 18, 0.99) 100%);
  border-color: rgba(196, 30, 58, 0.5);
  box-shadow:
    0 0 26px rgba(196, 30, 58, 0.3),
    inset 0 1px 0 rgba(255, 140, 150, 0.12);
}

.login-page__tab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.login-page__wrap .login-page__footer {
  max-width: 100%;
  margin-top: auto;
  padding-top: 1.25rem;
}

/* Layout tipo panel: sidebar + contenido (index u otras páginas con .index-dashboard) */
.login-dashboard {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-columns: min(280px, 92vw) 1fr;
  align-items: stretch;
}

.page-home .index-dashboard.login-dashboard {
  min-height: 100vh;
  grid-template-columns: min(268px, 90vw) 1fr;
}

.index-dashboard .login-dashboard__body {
  padding-left: 0;
  padding-right: 0;
}

.index-dashboard .login-dashboard__masthead {
  padding-left: clamp(1.25rem, 3vw, 2rem);
  padding-right: clamp(1.25rem, 3vw, 2rem);
}

.home-procesos__cta {
  width: 100%;
  max-width: 22rem;
  justify-content: center;
  margin-top: 0.35rem;
}

.home-procesos__cta--secondary {
  margin-top: 0.5rem;
}

.login-dashboard__panel-center--procesos {
  width: 100%;
  max-width: none;
}

.login-page__panel--procesos-wl {
  padding-top: 0.35rem;
  width: 100%;
}

.home-procesos-wl {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  margin: 0;
  padding: 1rem 1.25rem 1.15rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid rgba(196, 30, 58, 0.95);
  background: linear-gradient(135deg, rgba(22, 19, 30, 0.92) 0%, rgba(18, 16, 26, 0.88) 100%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  width: 100%;
  max-width: 100%;
}

.home-procesos-wl__meta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 1rem;
  min-width: 0;
}

.home-procesos-wl__label {
  margin: 0;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 600;
}

.home-procesos-wl__state {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1.2;
}

.home-procesos-wl--pending .home-procesos-wl__state {
  color: #fb923c;
  text-shadow: 0 0 24px rgba(251, 146, 60, 0.25);
}

.home-procesos-wl--yes .home-procesos-wl__state {
  color: #4ade80;
}

.home-procesos-wl--denied .home-procesos-wl__state {
  color: #f87171;
}

.home-procesos-wl--none .home-procesos-wl__state,
.home-procesos-wl--guest .home-procesos-wl__state {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.home-procesos-wl__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.35rem;
  position: relative;
  width: 100%;
}

.home-procesos-wl__steps::before {
  content: "";
  position: absolute;
  left: calc(100% / 6);
  right: calc(100% / 6);
  top: 1.15rem;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  z-index: 0;
  pointer-events: none;
}

.home-procesos-wl__step {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.45rem;
  padding: 0 0.15rem;
}

.home-procesos-wl__dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(60, 60, 70, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.12);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.home-procesos-wl__step-title {
  font-size: 0.68rem;
  line-height: 1.35;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  text-transform: none;
  letter-spacing: 0.02em;
}

.home-procesos-wl__step-result {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  min-height: 1em;
  letter-spacing: 0.03em;
}

.home-procesos-wl--pending .home-procesos-wl__step-result {
  color: #fb923c;
}

.home-procesos-wl--yes .home-procesos-wl__step-result {
  color: #4ade80;
}

.home-procesos-wl--denied .home-procesos-wl__step-result {
  color: #f87171;
}

.home-procesos-wl__step--upcoming .home-procesos-wl__dot {
  background: rgba(45, 45, 52, 0.95);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.4);
}

.home-procesos-wl__step--current .home-procesos-wl__dot {
  background: linear-gradient(145deg, #b91c1c, #dc2626);
  border-color: rgba(248, 113, 113, 0.45);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.25);
}

.home-procesos-wl__step--current .home-procesos-wl__step-title {
  color: rgba(255, 255, 255, 0.88);
}

.home-procesos-wl__step--done .home-procesos-wl__dot {
  background: linear-gradient(145deg, #166534, #22c55e);
  border-color: rgba(74, 222, 128, 0.45);
  color: #fff;
}

.home-procesos-wl__step--done .home-procesos-wl__step-title {
  color: rgba(255, 255, 255, 0.55);
}

.home-procesos-wl__step--done.home-procesos-wl__step--rejected .home-procesos-wl__dot {
  background: linear-gradient(145deg, #991b1b, #dc2626);
  border-color: rgba(248, 113, 113, 0.5);
}

.home-procesos-wl__step--done.home-procesos-wl__step--rejected .home-procesos-wl__step-title {
  color: rgba(255, 255, 255, 0.65);
}

.home-procesos-wl--pending .home-procesos-wl__step--current .home-procesos-wl__dot {
  background: linear-gradient(145deg, #c2410c, #f97316);
  border-color: rgba(251, 146, 60, 0.5);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.22);
  animation: home-procesos-pulse 2s ease-in-out infinite;
}

@keyframes home-procesos-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.22);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(249, 115, 22, 0.12);
  }
}

.home-procesos-wl__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  margin-top: 0.25rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-procesos-wl__cta {
  width: 100%;
  max-width: none;
  justify-content: center;
  text-align: center;
}

@media (max-width: 480px) {
  .home-procesos-wl__meta {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    min-width: 0;
    width: 100%;
  }

  .home-procesos-wl__steps {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
  }

  .home-procesos-wl__steps::before {
    display: none;
  }

  .home-procesos-wl__step {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    max-width: 100%;
    gap: 0.65rem;
  }

  .home-procesos-wl__step-title {
    flex: 1;
    font-size: 0.74rem;
  }

  .home-procesos-wl__step-result {
    width: 100%;
    margin-left: 2.85rem;
    margin-top: -0.15rem;
  }
}

/* Inicio: dashboard tipo saludo + tres columnas (acento dorado local) */
.index-dashboard .login-dashboard__main:has(#home-panel-inicio:not([hidden])) .login-dashboard__masthead {
  display: none;
}

.index-dashboard .login-dashboard__main:has(#home-panel-inicio:not([hidden])) .login-dashboard__body {
  padding-top: clamp(0.65rem, 2vw, 1.1rem);
}

.home-inicio-dash {
  --hi-gold: #e8c547;
  --hi-gold-dim: #b8922a;
  --hi-card: #15131c;
  --hi-card-border: rgba(255, 255, 255, 0.08);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 1.5rem;
}

.home-inicio-dash__hero {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem 1.5rem;
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.home-inicio-dash__hello {
  margin: 0 0 0.35rem;
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}

.home-inicio-dash__hello span {
  color: var(--hi-gold);
}

.home-inicio-dash__sub {
  margin: 0;
  max-width: 36rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(200, 194, 210, 0.82);
}

.home-inicio-dash__sub strong {
  color: rgba(232, 197, 71, 0.95);
  font-weight: 600;
}

.home-inicio-dash__hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1rem;
}

.home-inicio-dash__server {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
  background: var(--hi-card);
  border: 1px solid var(--hi-card-border);
}

.home-inicio-dash__server-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.55);
  flex-shrink: 0;
}

.home-inicio-dash__server-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.2;
}

.home-inicio-dash__server-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(154, 146, 158, 0.75);
}

.home-inicio-dash__server-count {
  font-size: 0.95rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--text);
}

.home-inicio-dash__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0a090d;
  background: linear-gradient(180deg, #f0d56a 0%, var(--hi-gold) 45%, var(--hi-gold-dim) 100%);
  cursor: var(--cursor-pointer);
  box-shadow: 0 4px 20px rgba(232, 197, 71, 0.25);
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.home-inicio-dash__play:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(232, 197, 71, 0.32);
}

.home-inicio-dash__play:focus-visible {
  outline: 2px solid var(--hi-gold);
  outline-offset: 3px;
}

.home-inicio-dash__play-icon {
  flex-shrink: 0;
}

.home-inicio-dash__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.15rem);
  align-items: stretch;
}

@media (max-width: 960px) {
  .home-inicio-dash__grid {
    grid-template-columns: 1fr;
  }
}

.home-inicio-card {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 1rem 1rem 1.1rem;
  border-radius: 14px;
  background: var(--hi-card);
  border: 1px solid var(--hi-card-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.home-inicio-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.home-inicio-card__title {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.home-inicio-card__icon {
  display: flex;
  color: var(--hi-gold);
  opacity: 0.95;
}

.home-inicio-card__empty {
  margin: auto 0;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(154, 146, 158, 0.7);
}

/* Tarjeta Eventos en inicio: solo cabecera, cuerpo vacío */
.home-inicio-card__void {
  flex: 1;
  min-height: 5.5rem;
}

.home-inicio-card__footnote {
  margin: 0.5rem 0 0;
  text-align: center;
  font-size: 0.72rem;
}

.home-inicio-card__footnote a {
  color: var(--hi-gold);
  font-weight: 600;
  text-decoration: none;
}

.home-inicio-card__footnote a:hover {
  text-decoration: underline;
}

.home-inicio-suggest {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.home-inicio-suggest__bulb {
  color: var(--hi-gold);
  margin-bottom: 0.35rem;
}

.home-inicio-suggest__name {
  margin: 0 0 0.15rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.home-inicio-suggest__by {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  color: rgba(154, 146, 158, 0.85);
}

.home-inicio-suggest__author {
  color: var(--hi-gold);
  font-weight: 600;
}

.home-inicio-suggest__text {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(200, 194, 210, 0.88);
}

.home-inicio-suggest__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
}

.home-inicio-suggest__votes {
  display: flex;
  gap: 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(200, 194, 210, 0.75);
}

.home-inicio-suggest__vote--down {
  color: rgba(248, 113, 113, 0.85);
}

.home-inicio-suggest__all {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hi-gold);
  text-decoration: none;
}

.home-inicio-suggest__all:hover {
  color: #f5d76e;
  text-decoration: underline;
}

/* Panel Sugerencias (sistema tipo grid, sin recompensas/monedas) */
.login-dashboard__panel--suggest {
  padding: 0;
  align-self: stretch;
}

.suggest-sys {
  --ss-gold: #e8c547;
  --ss-gold-dim: #b8922a;
  --ss-card: #15131c;
  --ss-border: rgba(255, 255, 255, 0.08);
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(0.75rem, 2vw, 0.25rem) 1.5rem;
}

.suggest-sys__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.suggest-sys__title {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}

.suggest-sys__new {
  flex-shrink: 0;
  padding: 0.6rem 1.15rem;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0a090d;
  background: linear-gradient(180deg, #f0d56a 0%, var(--ss-gold) 45%, var(--ss-gold-dim) 100%);
  cursor: var(--cursor-pointer);
  box-shadow: 0 4px 18px rgba(232, 197, 71, 0.22);
  transition: filter 0.15s ease, transform 0.15s ease;
}

.suggest-sys__new:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.suggest-sys__new:focus-visible {
  outline: 2px solid var(--ss-gold);
  outline-offset: 3px;
}

.suggest-sys__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
  padding: 0.65rem 0.85rem;
  margin-bottom: 1.15rem;
  border-radius: 12px;
  background: rgba(10, 8, 16, 0.85);
  border: 1px solid var(--ss-border);
}

.suggest-sys__funnel {
  display: flex;
  color: rgba(200, 194, 210, 0.65);
}

.suggest-sys__select {
  min-width: 10rem;
  padding: 0.45rem 2rem 0.45rem 0.65rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
  background: var(--ss-card);
  border: 1px solid var(--ss-border);
  border-radius: 8px;
  cursor: var(--cursor-pointer);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239a92a0' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
}

.suggest-sys__select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.suggest-sys__daily {
  margin-left: auto;
  font-size: 0.75rem;
  color: rgba(154, 146, 158, 0.9);
}

.suggest-sys__daily strong {
  color: var(--text);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.suggest-sys__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.suggest-card {
  display: flex;
  flex-direction: column;
  padding: 1rem 1rem 0.85rem;
  border-radius: 14px;
  background: var(--ss-card);
  border: 1px solid var(--ss-border);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.suggest-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}

.suggest-card__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}

.suggest-card__badge {
  flex-shrink: 0;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.18);
  border: 1px solid rgba(59, 130, 246, 0.35);
}

.suggest-card__badge--accepted {
  color: #86efac;
  background: rgba(34, 197, 94, 0.16);
  border-color: rgba(34, 197, 94, 0.35);
}

.suggest-card__badge--rejected {
  color: #fca5a5;
  background: rgba(248, 113, 113, 0.14);
  border-color: rgba(248, 113, 113, 0.35);
}

.suggest-card__cat {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ss-gold);
}

.suggest-card__cat-icon {
  display: flex;
  color: var(--ss-gold);
  opacity: 0.95;
}

.suggest-card__reply {
  margin: 0.65rem 0 0;
  padding: 0.65rem 0.75rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text);
  background: rgba(196, 30, 58, 0.1);
  border-left: 3px solid rgba(196, 30, 58, 0.65);
  border-radius: 8px;
}

.suggest-card__body {
  margin: 0 0 0.85rem;
  flex: 1;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(200, 194, 210, 0.88);
}

.suggest-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.suggest-card__user {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
}

.suggest-card__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: #0a090d;
  background: linear-gradient(135deg, var(--ss-gold) 0%, var(--ss-gold-dim) 100%);
}

.suggest-card__avatar--b {
  background: linear-gradient(135deg, #a78bfa 0%, #6366f1 100%);
  color: #fff;
}

.suggest-card__avatar--c {
  background: linear-gradient(135deg, #34d399 0%, #059669 100%);
  color: #06281f;
}

.suggest-card__avatar--d {
  background: linear-gradient(135deg, #fb7185 0%, #e11d48 100%);
  color: #fff;
}

.suggest-card__name {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(200, 194, 210, 0.9);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.suggest-card__date {
  flex-shrink: 0;
  font-size: 0.68rem;
  color: rgba(154, 146, 158, 0.85);
  font-variant-numeric: tabular-nums;
}

.suggest-card__votes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.suggest-card__vote {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(200, 194, 210, 0.9);
  background: rgba(0, 0, 0, 0.25);
  cursor: var(--cursor-pointer);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.suggest-card__vote:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.suggest-card__vote--up:hover {
  color: #86efac;
  border-color: rgba(34, 197, 94, 0.35);
}

.suggest-card__vote--down:hover {
  color: #fca5a5;
  border-color: rgba(248, 113, 113, 0.35);
}

.suggest-card__vote:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.suggest-card__vote.is-active {
  border-color: rgba(232, 197, 71, 0.45);
  background: rgba(232, 197, 71, 0.12);
  color: var(--text);
}

.suggest-card__vote--up.is-active {
  color: #86efac;
  border-color: rgba(34, 197, 94, 0.45);
}

.suggest-card__vote--down.is-active {
  color: #fca5a5;
  border-color: rgba(248, 113, 113, 0.45);
}

.suggest-sys__empty {
  margin: 0 0 1rem;
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(154, 146, 158, 0.75);
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
}

.suggest-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.suggest-modal[hidden] {
  display: none !important;
}

.suggest-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}

.suggest-modal__box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  max-height: calc(100vh - 2.5rem);
  overflow: auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, #1a1624 0%, #121018 100%);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.suggest-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.suggest-modal__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.suggest-modal__x {
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 8px;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--text-muted);
  background: transparent;
  cursor: var(--cursor-pointer);
  transition: color 0.15s ease, background 0.15s ease;
}

.suggest-modal__x:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.suggest-modal__form {
  padding: 1rem 1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.suggest-modal__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.suggest-modal__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(154, 146, 158, 0.9);
}

.suggest-modal__input,
.suggest-modal__textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text);
  background: rgba(0, 0, 0, 0.35);
  box-sizing: border-box;
}

.suggest-modal__input--select {
  cursor: var(--cursor-pointer);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239a92a0' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  padding-right: 2rem;
}

.suggest-modal__textarea {
  resize: vertical;
  min-height: 6rem;
}

.suggest-modal__input:focus-visible,
.suggest-modal__textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.suggest-modal__err {
  margin: 0;
  font-size: 0.8rem;
  color: #fca5a5;
}

.suggest-modal__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
  padding-top: 0.25rem;
}

.suggest-modal__btn {
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: var(--cursor-pointer);
  border: none;
  transition: filter 0.15s ease, background 0.15s ease;
}

.suggest-modal__btn--ghost {
  color: var(--text-muted);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.suggest-modal__btn--ghost:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.suggest-modal__btn--primary {
  color: #0a090d;
  background: linear-gradient(180deg, #f0d56a 0%, #e8c547 50%, #b8922a 100%);
}

.suggest-modal__btn--primary:hover {
  filter: brightness(1.06);
}

@media (max-width: 520px) {
  .suggest-sys__daily {
    width: 100%;
    margin-left: 0;
  }
}

.login-dashboard__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 1.25rem 1rem 1.5rem;
  background: linear-gradient(180deg, rgba(14, 12, 20, 0.98) 0%, rgba(10, 8, 14, 0.99) 100%);
  border-right: 1px solid var(--border);
  box-shadow: 4px 0 32px rgba(0, 0, 0, 0.25);
}

.login-dashboard__logo {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 0.12em;
  line-height: 1;
  text-decoration: none;
  color: var(--text);
  padding: 0.15rem 0;
}

.login-dashboard__logo:hover {
  text-decoration: none;
  filter: brightness(1.08);
}

.login-dashboard__logo-rp {
  color: var(--accent);
  text-shadow: 0 0 20px var(--accent-glow);
}

.login-dashboard__usercard {
  padding: 0.85rem 0.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.login-dashboard__usercard--guest {
  text-align: left;
}

.login-dashboard__userguest-mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  margin-bottom: 0.5rem;
  background: rgba(196, 30, 58, 0.15);
  border: 1px dashed rgba(196, 30, 58, 0.45);
}

.login-dashboard__userguest-mark--trinity {
  margin-bottom: 0;
  flex-shrink: 0;
}

.login-dashboard__userguest-label {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.login-dashboard__userguest-hint {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.login-dashboard__sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  min-height: 0;
}

.login-dashboard__nav-block {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.login-dashboard__nav-label {
  margin: 0;
  padding: 0 0.35rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(154, 146, 158, 0.55);
}

.login-dashboard__tablist {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.login-dashboard__nav-tab {
  width: 100%;
  text-align: left;
  padding: 0.55rem 0.65rem 0.55rem 0.75rem;
  margin: 0;
  border: none;
  border-radius: 8px;
  border-left: 3px solid transparent;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  background: transparent;
  cursor: var(--cursor-pointer);
  transition:
    color 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.login-dashboard__nav-tab:hover {
  color: var(--text);
  background: rgba(196, 30, 58, 0.08);
}

.login-dashboard__nav-tab--active,
.login-dashboard__nav-tab[aria-selected="true"] {
  color: var(--text);
  background: rgba(196, 30, 58, 0.18);
  border-left-color: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(196, 30, 58, 0.2);
}

.login-dashboard__nav-tab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.login-dashboard__nav-link {
  display: block;
  padding: 0.45rem 0.65rem 0.45rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 8px;
  transition:
    color 0.18s ease,
    background 0.18s ease;
}

button.login-dashboard__nav-link {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  margin: 0;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  text-align: left;
  cursor: pointer;
}

.login-dashboard__nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
}

.login-dashboard__nav-link--accent {
  color: var(--accent);
  font-weight: 600;
}

.login-dashboard__nav-link--accent:hover {
  color: #ff6b7a;
}

.login-dashboard__nav-link--donate {
  margin-top: 0.15rem;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: #e8c547;
}

.login-dashboard__nav-link--donate:hover {
  color: #f5d76e;
  background: rgba(232, 197, 71, 0.12);
}

.login-dashboard__nav-facciones {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.login-dashboard__nav-facciones-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.55rem 0.65rem 0.55rem 0.75rem;
  margin: 0;
  border: none;
  border-radius: 8px;
  border-left: 3px solid transparent;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  background: transparent;
  cursor: var(--cursor-pointer);
  text-align: left;
  transition:
    color 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.login-dashboard__nav-facciones-toggle:hover {
  color: var(--text);
  background: rgba(196, 30, 58, 0.08);
}

.login-dashboard__nav-facciones-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.login-dashboard__nav-chevron {
  display: block;
  width: 0.45rem;
  height: 0.45rem;
  margin-left: 0.5rem;
  flex-shrink: 0;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.65;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.login-dashboard__nav-facciones-toggle--open .login-dashboard__nav-chevron {
  transform: rotate(-135deg);
  margin-top: 0.2rem;
}

.login-dashboard__nav-facciones-panel {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.15rem 0 0.35rem 0.85rem;
}

/* display:flex del panel anulaba [hidden]: el acordeón se veía siempre abierto */
.login-dashboard__nav-facciones-panel[hidden] {
  display: none !important;
}

.login-dashboard__nav-sublink {
  display: block;
  padding: 0.4rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.15s ease, background 0.15s ease;
}

.login-dashboard__nav-sublink:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.login-dashboard__nav-sublink--muted {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.login-dashboard__main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-width: 0;
  background: rgba(7, 6, 10, 0.35);
}

.login-dashboard__masthead {
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 2rem) 1rem;
  border-bottom: 1px solid var(--border);
  background: rgba(12, 10, 16, 0.5);
}

.login-dashboard__view-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  letter-spacing: 0.08em;
  font-weight: 400;
  color: var(--text);
}

.login-dashboard__view-sub {
  margin: 0;
  max-width: 42rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.login-dashboard__body {
  flex: 1;
  padding: clamp(1rem, 2.5vw, 1.5rem) clamp(1.25rem, 3vw, 2rem);
  overflow: auto;
}

.login-dashboard__panels {
  width: 100%;
  max-width: 42rem;
  margin: 0 auto;
  min-height: 12rem;
}

.login-dashboard__panel {
  width: 100%;
}

.login-dashboard__panel-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.login-dashboard__continue {
  width: 100%;
  max-width: 280px;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.login-dashboard__logout {
  width: 100%;
  max-width: 280px;
  justify-content: center;
  margin-top: 0.65rem;
}

.login-dashboard__hint {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: rgba(154, 146, 158, 0.75);
  max-width: 28rem;
}

.login-page__panel .login-dashboard__hint a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.login-page__panel .login-dashboard__hint a:hover {
  text-decoration: underline;
}

.login-dashboard__footer {
  margin-top: auto;
  padding: 1rem clamp(1.25rem, 3vw, 2rem) 1.25rem;
  border-top: 1px solid var(--border);
  background: rgba(10, 8, 14, 0.65);
}

.login-dashboard__footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-bottom: 0.65rem;
}

.login-dashboard__social {
  margin: 0;
}

.login-dashboard__legal {
  margin: 0;
}

.login-dashboard__disclaimer {
  margin: 0 0 0.5rem;
  text-align: left;
}

.login-dashboard__credit {
  margin: 0;
  text-align: center;
}

@media (max-width: 900px) {
  .login-dashboard {
    grid-template-columns: 1fr;
  }

  .login-dashboard__sidebar {
    border-right: none;
    border-bottom: 1px solid var(--border);
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem 1.25rem;
    padding: 1rem;
  }

  .login-dashboard__logo {
    flex: 1 1 100%;
    text-align: center;
  }

  .login-dashboard__usercard {
    flex: 1 1 auto;
    min-width: min(200px, 100%);
  }

  .login-dashboard__sidebar-nav {
    flex: 1 1 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .login-dashboard__nav-block {
    flex: 1 1 auto;
    min-width: 140px;
  }

  .login-dashboard__tablist {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .login-dashboard__nav-tab {
    flex: 1 1 auto;
    min-width: 5.5rem;
    text-align: center;
    border-left: none;
    border-bottom: 3px solid transparent;
  }

  .login-dashboard__nav-tab--active,
  .login-dashboard__nav-tab[aria-selected="true"] {
    border-left-color: transparent;
    border-bottom-color: var(--accent);
  }
}

.login-page__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 1;
  text-shadow: 0 0 20px var(--accent-glow);
}

.login-page__tabpanels {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 0;
}

.login-dashboard__panels.login-page__tabpanels {
  align-items: stretch;
  max-width: none;
}

.login-page__tabpanel {
  width: 100%;
  max-width: 28rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-dashboard__panels .login-page__tabpanel {
  max-width: none;
  margin-inline: 0;
  align-items: stretch;
}

.login-dashboard__panels .login-page__tabpanel .login-dashboard__panel-center {
  align-items: center;
  max-width: 28rem;
  margin-inline: auto;
}

/* Mis procesos: stepper y tarjeta a todo el ancho del área principal */
.login-dashboard__panels:has(#home-panel-procesos:not([hidden])) {
  max-width: none;
  width: 100%;
  margin-inline: 0;
}

.login-dashboard__panels #home-panel-procesos .login-dashboard__panel-center--procesos {
  max-width: none;
  width: 100%;
  margin-inline: 0;
  align-items: stretch;
  text-align: left;
}

.login-dashboard__panels #home-panel-procesos .login-page__eyebrow {
  align-self: center;
  text-align: center;
  width: 100%;
}

.login-dashboard__panels #home-panel-procesos .login-page__panel--procesos-wl {
  width: 100%;
  max-width: none;
}

/* [hidden] debe ocultar del layout: display:flex de arriba lo anulaba en algunos navegadores */
.login-page__tabpanel[hidden] {
  display: none !important;
}

.login-page__partner-embed {
  padding-bottom: 0.5rem;
}

.login-page__partner-embed .partner-page__intro {
  margin-bottom: 1rem;
}

.login-page__partner-embed .partner-page__intro .section-title {
  font-size: clamp(1.65rem, 5vw, 2.1rem);
}

.login-page__empty {
  width: 100%;
  max-width: 400px;
  padding: 1.75rem 1.35rem;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.login-page__empty-title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: var(--text);
}

.login-page__empty-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.login-page__empty-text a {
  font-weight: 600;
}

.login-page__logo {
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 5.25rem);
  letter-spacing: 0.1em;
  color: var(--text);
  text-shadow: 0 0 48px rgba(196, 30, 58, 0.2);
  animation: login-mark-soft 5s ease-in-out infinite;
}

.login-page__logo--accent {
  color: var(--accent);
  text-shadow:
    0 0 36px var(--accent-glow),
    0 0 72px rgba(196, 30, 58, 0.25);
}

@keyframes login-mark-soft {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.92;
  }
}

.login-page__panel {
  position: relative;
  width: 100%;
  max-width: 400px;
  padding: 1.6rem 1.35rem 1.5rem;
  text-align: center;
  background: rgba(24, 22, 20, 0.92);
  border: 1px solid rgba(196, 30, 58, 0.26);
  border-radius: var(--radius);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 140, 150, 0.07),
    0 0 0 1px rgba(0, 0, 0, 0.35);
}

.login-page__panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  border-radius: var(--radius) 0 0 var(--radius);
  background: linear-gradient(180deg, var(--accent) 0%, rgba(196, 30, 58, 0.35) 55%, transparent 100%);
  pointer-events: none;
}

.login-page__tagline {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.login-page__discord-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.95rem 1.25rem;
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(145deg, #d42845 0%, var(--accent) 40%, var(--accent-dim) 100%);
  border: 1px solid rgba(255, 160, 170, 0.42);
  border-radius: 999px;
  cursor: var(--cursor-pointer);
  box-shadow:
    0 6px 28px var(--accent-glow),
    0 0 48px rgba(196, 30, 58, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition:
    transform 0.2s ease,
    box-shadow 0.25s ease,
    filter 0.2s ease;
}

.login-page__discord-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 36px rgba(196, 30, 58, 0.55),
    0 0 56px rgba(239, 68, 68, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  filter: brightness(1.05);
}

.login-page__discord-btn:active {
  transform: translateY(0);
  filter: brightness(0.97);
}

.login-page__discord-btn:focus-visible {
  outline: 2px solid rgba(255, 180, 185, 0.95);
  outline-offset: 3px;
}

.login-page__discord-icon {
  flex-shrink: 0;
  color: #fff;
}

.login-page__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  margin-top: 2rem;
  margin-bottom: 1.25rem;
}

.login-page__social-link {
  display: inline-flex;
  color: var(--text-muted);
  transition: color 0.2s ease, transform 0.2s ease;
}

.login-page__social-link:hover {
  color: var(--accent);
  transform: translateY(-2px);
  text-decoration: none;
}

.login-page__social-placeholder {
  display: inline-flex;
  color: rgba(130, 126, 120, 0.35);
  pointer-events: none;
}

.login-page__legal {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.login-page__legal a {
  color: var(--text-muted);
  text-decoration: none;
}

.login-page__legal a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.login-page__footer {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  text-align: center;
  margin-top: auto;
  padding-top: 1.75rem;
}

.login-page__disclaimer {
  margin: 0 0 1rem;
  font-size: 0.65rem;
  line-height: 1.55;
  color: rgba(154, 146, 158, 0.55);
}

.login-page__credit {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.login-page__credit a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.login-page__credit a span {
  color: var(--accent);
}

.login-page__credit a:hover {
  color: #eae8e3;
  text-decoration: none;
}

.login-page__credit a:hover span {
  color: #fca5a5;
}

/* —— Página Normativas (estilo documentación + índice lateral) —— */
.normativas-hero__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem 2rem;
}

.normativas-hero__title {
  margin-bottom: 0.65rem;
}

.normativas-hero__lead {
  margin: 0;
  max-width: 46rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(230, 225, 238, 0.88);
}

.normativas-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex-shrink: 0;
}

.normativas-body-section {
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.normativas-layout {
  display: grid;
  grid-template-columns: min(240px, 100%) 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

@media (max-width: 900px) {
  .normativas-layout {
    grid-template-columns: 1fr;
  }
}

.normativas-toc {
  position: sticky;
  top: calc(var(--header-h, 64px) + 1rem);
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.normativas-toc__title {
  margin: 0 0 0.65rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(154, 146, 158, 0.75);
}

.normativas-toc__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.normativas-toc__list a {
  display: block;
  padding: 0.4rem 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 8px;
  border-left: 3px solid transparent;
  transition:
    color 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease;
}

.normativas-toc__list a:hover {
  color: var(--text);
  background: rgba(196, 30, 58, 0.08);
}

.normativas-toc__list a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.normativas-doc {
  min-width: 0;
}

.normativas-block {
  margin-bottom: clamp(1.75rem, 3vw, 2.25rem);
  padding-bottom: clamp(1.5rem, 2.5vw, 2rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  scroll-margin-top: calc(var(--header-h, 64px) + 1rem);
}

.normativas-block:last-of-type {
  border-bottom: none;
  margin-bottom: 1rem;
  padding-bottom: 0;
}

.normativas-block__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}

.normativas-block__list {
  margin: 0;
  padding-left: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(200, 194, 210, 0.9);
}

.normativas-block__list li::marker {
  color: var(--accent);
}

.normativas-footnote {
  margin: 1.5rem 0 0;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(154, 146, 158, 0.85);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* —— Panel index (dashboard): diseño minimalista, acento rojo único —— */
.index-dashboard .login-dashboard__sidebar {
  padding: 1.5rem 1.2rem 2rem;
  gap: 1.35rem;
  background: #0c0c0e;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.index-dashboard .login-dashboard__logo {
  padding: 0.25rem 0 0.15rem;
  letter-spacing: 0.08em;
}

.index-dashboard .login-dashboard__logo-rp {
  text-shadow: none;
}

.index-dashboard .login-dashboard__usercard {
  position: relative;
  padding: 1rem 0.9rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
}

.index-dashboard .login-dashboard__usercard-head {
  position: relative;
  margin-bottom: 0.85rem;
}

.index-dashboard .login-dashboard__usercard-trinity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.index-dashboard .login-dashboard__usercard-avatar {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.index-dashboard .login-dashboard__usercard-avatar-btn {
  width: 2.85rem;
  height: 2.85rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: var(--cursor-pointer);
  background: transparent;
  box-shadow: 0 0 0 2px rgba(212, 168, 75, 0.95);
  overflow: hidden;
  transition:
    box-shadow 0.2s ease,
    transform 0.18s ease;
}

.index-dashboard .login-dashboard__usercard-avatar-btn:hover {
  box-shadow: 0 0 0 2px rgba(232, 197, 71, 1), 0 0 18px rgba(212, 168, 75, 0.35);
  transform: scale(1.04);
}

.index-dashboard .login-dashboard__usercard-avatar-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.index-dashboard .login-dashboard__usercard-avatar-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.index-dashboard .login-dashboard__userguest-mark--trinity {
  width: 2.75rem;
  height: 2.75rem;
  box-sizing: border-box;
}

.index-dashboard .login-dashboard__usercard-bell-slot {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.index-dashboard .login-dashboard__usercard-bell-slot .discord-menu__bell {
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
}

.index-dashboard .login-dashboard__usercard-bell-slot .discord-menu__bell:hover {
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.index-dashboard .login-dashboard__usercard-bell-slot .discord-menu__bell-icon {
  font-size: 1.05rem;
}

.index-dashboard .login-dashboard__usercard-panel-root {
  position: static;
}

.index-dashboard .discord-menu__panel--sidebar {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.35rem);
  margin-top: 0;
  min-width: 0;
  max-width: none;
  z-index: 180;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.55);
}

.index-dashboard .discord-menu__panel--sidebar-summary {
  padding: 0.35rem 0 0.45rem;
}

.index-dashboard .discord-menu__panel--sidebar-summary .discord-menu__header {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0.55rem;
}

.index-dashboard .login-dashboard__usercard--connected .login-dashboard__userguest-label {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: none;
  font-size: 0.8125rem;
}

.index-dashboard .login-dashboard__userguest-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
}

.index-dashboard .login-dashboard__userguest-hint {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(230, 226, 238, 0.82);
}

.index-dashboard .login-dashboard__sidebar-nav {
  gap: 1.25rem;
}

.index-dashboard .login-dashboard__nav-block {
  gap: 0.45rem;
}

.index-dashboard .login-dashboard__nav-label {
  padding: 0 0.15rem;
  margin-bottom: 0.15rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.52);
}

.index-dashboard .login-dashboard__tablist {
  gap: 0.28rem;
}

.index-dashboard .login-dashboard__nav-tab {
  padding: 0.62rem 0.85rem;
  border-radius: 10px;
  border-left: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.86);
}

.index-dashboard .login-dashboard__nav-tab:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.index-dashboard .login-dashboard__nav-tab--active,
.index-dashboard .login-dashboard__nav-tab[aria-selected="true"] {
  color: #fff;
  background: rgba(196, 30, 58, 0.12);
  border-left: none;
  box-shadow: none;
  border: 1px solid rgba(196, 30, 58, 0.22);
}

.index-dashboard .login-dashboard__nav-link {
  padding: 0.5rem 0.85rem;
  font-size: 0.8125rem;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.84);
}

.index-dashboard .login-dashboard__nav-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.index-dashboard .login-dashboard__nav-link--accent {
  color: rgba(232, 93, 116, 0.95);
  font-weight: 500;
}

.index-dashboard .login-dashboard__nav-link--accent:hover {
  color: #ff7a8c;
}

.index-dashboard .login-dashboard__nav-link--donate {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}

.index-dashboard .login-dashboard__nav-link--donate:hover {
  color: var(--accent);
  background: transparent;
}

.index-dashboard .login-dashboard__nav-facciones-toggle {
  border-left: none;
  border-radius: 10px;
  padding: 0.62rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.86);
}

.index-dashboard .login-dashboard__nav-facciones-toggle:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.index-dashboard .login-dashboard__nav-facciones-toggle--open {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.index-dashboard .login-dashboard__nav-sublink {
  color: rgba(255, 255, 255, 0.78);
}

.index-dashboard .login-dashboard__nav-sublink:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.index-dashboard .login-dashboard__nav-chevron {
  opacity: 0.82;
}

.index-dashboard .login-dashboard__main {
  background: var(--bg-deep);
}

.index-dashboard .login-dashboard__masthead {
  padding: clamp(1.65rem, 3.5vw, 2.1rem) clamp(1.35rem, 3vw, 2.25rem) 1.15rem;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.index-dashboard .login-dashboard__view-title {
  margin-bottom: 0.4rem;
  font-family: var(--font-body);
  font-size: clamp(1.3rem, 2.6vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #f5f2f8;
}

.index-dashboard .login-dashboard__view-sub {
  max-width: 34rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(200, 195, 210, 0.58);
}

.index-dashboard .login-dashboard__body {
  padding: clamp(1.35rem, 3vw, 2rem) clamp(1.35rem, 3vw, 2.25rem);
}

.index-dashboard .login-page__eyebrow {
  margin-bottom: 0.5rem;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  opacity: 0.75;
  color: var(--accent);
  text-shadow: none;
}

.index-dashboard .login-page__panel {
  max-width: min(100%, 420px);
  padding: 1.85rem 1.65rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  box-shadow: none;
}

.index-dashboard .login-page__panel::before {
  width: 2px;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(196, 30, 58, 0.08) 100%);
}

.index-dashboard .login-page__tagline {
  margin-bottom: 1.1rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(200, 195, 210, 0.75);
}

.index-dashboard .login-page__tagline strong {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.index-dashboard .btn-primary:hover {
  animation: none;
  filter: brightness(1.06);
}

.index-dashboard .btn-outline {
  border-width: 1px;
  box-shadow: none;
}

.index-dashboard .btn-outline:hover {
  animation: none;
  box-shadow: none;
}

/* Inicio: menos oro, más aire */
.index-dashboard .home-inicio-dash {
  padding-bottom: 2rem;
}

.index-dashboard .home-inicio-dash__hello {
  font-weight: 600;
  letter-spacing: -0.02em;
}

.index-dashboard .home-inicio-dash__hello span {
  color: var(--accent);
  font-weight: 600;
}

.index-dashboard .home-inicio-dash__sub {
  font-size: 0.9rem;
  color: rgba(200, 195, 210, 0.62);
}

.index-dashboard .home-inicio-dash__sub strong {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

.index-dashboard .home-inicio-dash__play {
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: none;
  color: #fff;
  background: var(--accent);
  background-image: none;
  box-shadow: none;
}

.index-dashboard .home-inicio-dash__play:hover {
  filter: brightness(1.08);
  transform: none;
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.25);
}

.index-dashboard .home-inicio-dash__play-icon {
  opacity: 0.95;
}

.index-dashboard .home-inicio-dash__server {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.index-dashboard .home-inicio-dash__grid {
  gap: 1.1rem;
}

.index-dashboard .home-inicio-card {
  min-height: 200px;
  padding: 1.1rem 1.15rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  box-shadow: none;
}

.index-dashboard .home-inicio-card__icon {
  color: rgba(196, 30, 58, 0.55);
}

.index-dashboard .home-inicio-card__title {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.82);
}

.index-dashboard .home-inicio-card__empty {
  font-size: 0.875rem;
  color: rgba(200, 195, 210, 0.5);
}

.index-dashboard .home-inicio-card__footnote a {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.index-dashboard .home-inicio-card__footnote a:hover {
  color: var(--accent);
}

.index-dashboard .home-inicio-suggest {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.index-dashboard .home-inicio-suggest__bulb,
.index-dashboard .home-inicio-suggest__author,
.index-dashboard .home-inicio-suggest__all {
  color: rgba(196, 30, 58, 0.75);
}

.index-dashboard .home-inicio-suggest__all:hover {
  color: var(--accent);
}

/* Sugerencias: botón principal alineado con acento sitio */
.index-dashboard .suggest-sys__new {
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #fff;
  background: var(--accent);
  background-image: none;
  box-shadow: none;
}

.index-dashboard .suggest-sys__new:hover {
  filter: brightness(1.08);
  transform: none;
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.22);
}

.index-dashboard .suggest-sys__title {
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Header compacto: Discord menos “neón” */
.site-header--compact .discord-login-btn.btn-discord {
  background: rgba(88, 101, 242, 0.2);
  border: 1px solid rgba(88, 101, 242, 0.35);
  box-shadow: none;
}

.site-header--compact .discord-login-btn.btn-discord:hover {
  animation: none;
  transform: none;
  filter: brightness(1.06);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
  background: rgba(88, 101, 242, 0.32);
}

.site-header--compact .discord-menu__bell {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.site-header--compact .discord-menu__bell:hover {
  box-shadow: none;
  border-color: rgba(196, 30, 58, 0.35);
}

@media (max-width: 900px) {
  .index-dashboard .login-dashboard__nav-tab,
  .index-dashboard .login-dashboard__nav-facciones-toggle {
    text-align: center;
  }
}

/* Contenido dinámico (eventos / novedades en inicio) */
.home-inicio-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  text-align: left;
}

.home-inicio-card__li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.home-inicio-card__li strong {
  font-weight: 600;
  font-size: 0.82rem;
}

.home-inicio-card__li span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
}

.home-inicio-card__li span:last-child {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 0.1rem;
}

.eventos-page__empty {
  max-width: 40rem;
  margin: 0 auto 1.25rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.eventos-page__grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 52rem;
  margin: 0 auto;
}

.eventos-card {
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-card);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.eventos-card h2 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
}

.eventos-card__date {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.eventos-card__body {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  white-space: pre-wrap;
}

/* Panel admin (admin.html) */
.admin-page-body {
  background: var(--bg, #0a090d);
}

.admin-page-badge {
  margin-left: auto;
  padding: 0.2rem 0.55rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232, 197, 71, 0.95);
  border: 1px solid rgba(232, 197, 71, 0.35);
  border-radius: 6px;
}

.admin-page {
  max-width: 52rem;
  margin: 0 auto;
  padding: 1.5rem clamp(1rem, 3vw, 2rem) 3rem;
}

.admin-page-title {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
}

.admin-gate__card {
  max-width: 24rem;
  margin: 2rem auto;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-card);
}

.admin-gate__lead {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.admin-err {
  padding: 0.65rem 0.85rem;
  margin: 0 0 1rem;
  border-radius: 8px;
  background: rgba(220, 53, 69, 0.15);
  border: 1px solid rgba(220, 53, 69, 0.35);
  color: #fecaca;
  font-size: 0.85rem;
}

.admin-section {
  margin-bottom: 2.25rem;
}

.admin-section__title {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
}

.admin-section__sub {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.admin-add-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.admin-add-grid--full {
  grid-column: 1 / -1;
}

@media (max-width: 560px) {
  .admin-add-grid {
    grid-template-columns: 1fr;
  }
}

.admin-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.admin-input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 0.65rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text);
  background: rgba(0, 0, 0, 0.25);
}

.admin-textarea {
  min-height: 4rem;
  resize: vertical;
}

.admin-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.admin-empty {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.admin-card {
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.admin-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.admin-card__head h3 {
  margin: 0;
  font-size: 1rem;
}

.admin-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.1rem 0.45rem;
  border-radius: 6px;
  background: rgba(196, 30, 58, 0.2);
  color: #fecaca;
}

.admin-card__meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0 0 0.5rem;
}

.admin-card__body {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  line-height: 1.5;
  white-space: pre-wrap;
}

.admin-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.admin-btn-danger {
  border-color: rgba(220, 53, 69, 0.45) !important;
  color: #fecaca !important;
}
