/* ============================================================
   CosplayerID — frontend.css
   Tema: Claro (base)
   Fuente: Inter local con fallback sistema
   Versión: 1.0.0
   ============================================================ */

/* ------------------------------------------------------------
   1. FUENTES LOCALES
   ------------------------------------------------------------ */
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ------------------------------------------------------------
   2. VARIABLES — TEMA CLARO
   ------------------------------------------------------------ */
:root {
  /* Colores base */
  --clr-primary:        #a855f7;
  --clr-primary-dark:   #9333ea;
  --clr-primary-light:  #d8b4fe;
  --clr-secondary:      #ec4899;
  --clr-secondary-dark: #db2777;
  --clr-accent:         #06b6d4;

  /* Fondo */
  --clr-bg:             #f8f7ff;
  --clr-bg-2:           #ffffff;
  --clr-bg-3:           #f1f0f9;
  --clr-bg-card:        #ffffff;

  /* Texto */
  --clr-text:           #0f0e17;
  --clr-text-2:         #4b4869;
  --clr-text-3:         #8b88a8;
  --clr-text-inv:       #ffffff;

  /* Bordes */
  --clr-border:         #e2e0f0;
  --clr-border-2:       #c8c5e0;

  /* Semánticos */
  --clr-success:        #22c55e;
  --clr-warning:        #f59e0b;
  --clr-error:          #ef4444;
  --clr-info:           #3b82f6;

  /* Neón cards (boost) */
  --neon-purple:        #a855f7;
  --neon-pink:          #ec4899;
  --neon-cyan:          #06b6d4;
  --neon-gold:          #f59e0b;
  --neon-red:           #ef4444;

  /* Tipografía */
  --font:               'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-xs:       0.75rem;
  --font-size-sm:       0.875rem;
  --font-size-base:     1rem;
  --font-size-md:       1.125rem;
  --font-size-lg:       1.25rem;
  --font-size-xl:       1.5rem;
  --font-size-2xl:      2rem;
  --font-size-3xl:      2.5rem;

  /* Espaciado */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;

  /* Radios */
  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-full: 9999px;

  /* Sombras */
  --shadow-sm:  0 1px 3px rgba(15,14,23,.06), 0 1px 2px rgba(15,14,23,.04);
  --shadow-md:  0 4px 12px rgba(15,14,23,.08), 0 2px 4px rgba(15,14,23,.04);
  --shadow-lg:  0 8px 24px rgba(15,14,23,.10), 0 4px 8px rgba(15,14,23,.06);
  --shadow-card: 0 2px 8px rgba(168,85,247,.08);

  /* Transiciones */
  --t-fast:   120ms ease;
  --t-base:   200ms ease;
  --t-slow:   350ms ease;

  /* Layout */
  --container: 1280px;
  --nav-h:     64px;
}

/* ------------------------------------------------------------
   3. RESET COMPLETO — sin estilos del navegador
   ------------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: var(--font);
  font-size: var(--font-size-base);
  font-weight: 400;
  line-height: 1.6;
  color: var(--clr-text);
  background: var(--clr-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}
button { cursor: pointer; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-text);
}
p { line-height: 1.7; }
table { border-collapse: collapse; width: 100%; }

/* ------------------------------------------------------------
   4. UTILIDADES
   ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-5);
}
@media (max-width: 640px) {
  .container { padding: 0 var(--sp-4); }
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.flex   { display: flex; }
.grid   { display: grid; }
.hidden { display: none !important; }
.text-center { text-align: center; }
.text-muted  { color: var(--clr-text-3); }
.truncate    { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.w-full  { width: 100%; }
.relative { position: relative; }

/* Gradiente de texto marca */
.text-gradient {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ------------------------------------------------------------
   5. NAVBAR
   ------------------------------------------------------------ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border);
  transition: box-shadow var(--t-base);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}
.navbar__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: var(--sp-6);
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-shrink: 0;
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--clr-text);
  transition: opacity var(--t-fast);
}
.navbar__logo:hover { opacity: .85; }
.navbar__logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: var(--font-size-sm);
  font-weight: 700;
  flex-shrink: 0;
}
.navbar__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.navbar__logo-name {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--clr-text);
}
.navbar__logo-sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--clr-primary);
  letter-spacing: .04em;
  text-transform: uppercase;
}
/* Logo imagen cuando exista */
.navbar__logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

/* Nav links — desktop */
.navbar__nav {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  margin: 0 auto;
}
.navbar__link {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--clr-text-2);
  border-radius: var(--r-md);
  transition: color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}
.navbar__link:hover {
  color: var(--clr-text);
  background: var(--clr-bg-3);
}
.navbar__link.active {
  color: var(--clr-primary);
  background: rgba(168,85,247,.08);
}
.navbar__link i { font-size: 14px; }

/* Búsqueda navbar */
.navbar__search {
  position: relative;
  flex-shrink: 0;
}
.navbar__search-input {
  width: 200px;
  height: 36px;
  padding: 0 var(--sp-4) 0 36px;
  background: var(--clr-bg-3);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-full);
  font-size: var(--font-size-sm);
  color: var(--clr-text);
  transition: all var(--t-base);
}
.navbar__search-input:focus {
  width: 260px;
  background: var(--clr-bg-2);
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(168,85,247,.12);
}
.navbar__search-input::placeholder { color: var(--clr-text-3); }
.navbar__search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--clr-text-3);
  font-size: 14px;
  pointer-events: none;
}

/* Acciones navbar derecha */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-shrink: 0;
  margin-left: auto;
}

/* Botón notificaciones */
.navbar__notif {
  position: relative;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  color: var(--clr-text-2);
  transition: all var(--t-fast);
}
.navbar__notif:hover {
  background: var(--clr-bg-3);
  color: var(--clr-text);
}
.navbar__notif-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 8px;
  height: 8px;
  background: var(--clr-secondary);
  border-radius: 50%;
  border: 2px solid var(--clr-bg-2);
}

/* Avatar / menú usuario */
.navbar__user {
  position: relative;
}
.navbar__user-btn {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-1) var(--sp-2);
  border-radius: var(--r-lg);
  border: 1px solid var(--clr-border);
  background: var(--clr-bg-2);
  color: var(--clr-text);
  font-size: var(--font-size-sm);
  font-weight: 500;
  transition: all var(--t-fast);
  cursor: pointer;
}
.navbar__user-btn:hover {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(168,85,247,.08);
}
.navbar__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: var(--font-size-xs);
  font-weight: 700;
  flex-shrink: 0;
  overflow: hidden;
}
.navbar__avatar img { width: 100%; height: 100%; object-fit: cover; }
.navbar__chevron {
  font-size: 11px;
  color: var(--clr-text-3);
  transition: transform var(--t-fast);
}
.navbar__user-btn[aria-expanded="true"] .navbar__chevron {
  transform: rotate(180deg);
}

/* Dropdown menú usuario */
.navbar__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-2);
  z-index: 200;
  opacity: 0;
  transform: translateY(-8px) scale(.97);
  pointer-events: none;
  transition: opacity var(--t-base), transform var(--t-base);
}
.navbar__dropdown.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.navbar__dropdown-header {
  padding: var(--sp-3) var(--sp-3) var(--sp-2);
  border-bottom: 1px solid var(--clr-border);
  margin-bottom: var(--sp-2);
}
.navbar__dropdown-name {
  font-weight: 600;
  font-size: var(--font-size-sm);
  color: var(--clr-text);
}
.navbar__dropdown-handle {
  font-size: var(--font-size-xs);
  color: var(--clr-text-3);
}
.navbar__dropdown-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--font-size-sm);
  color: var(--clr-text-2);
  border-radius: var(--r-md);
  transition: all var(--t-fast);
  cursor: pointer;
  width: 100%;
}
.navbar__dropdown-item:hover {
  background: var(--clr-bg-3);
  color: var(--clr-text);
}
.navbar__dropdown-item i { width: 16px; text-align: center; }
.navbar__dropdown-divider {
  height: 1px;
  background: var(--clr-border);
  margin: var(--sp-2) 0;
}
.navbar__dropdown-item--danger { color: var(--clr-error); }
.navbar__dropdown-item--danger:hover { background: rgba(239,68,68,.06); }

/* Hamburger — móvil */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  transition: background var(--t-fast);
}
.navbar__hamburger:hover { background: var(--clr-bg-3); }
.navbar__hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all var(--t-base);
}
.navbar__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Menú móvil */
.navbar__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--clr-bg-2);
  z-index: 99;
  padding: var(--sp-4);
  overflow-y: auto;
  flex-direction: column;
  gap: var(--sp-2);
  opacity: 0;
  transform: translateX(100%);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.navbar__mobile.open {
  display: flex;
  opacity: 1;
  transform: translateX(0);
}
.navbar__mobile-link {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--font-size-base);
  font-weight: 500;
  color: var(--clr-text-2);
  border-radius: var(--r-lg);
  transition: all var(--t-fast);
}
.navbar__mobile-link:hover, .navbar__mobile-link.active {
  background: var(--clr-bg-3);
  color: var(--clr-primary);
}
.navbar__mobile-search {
  position: relative;
  margin-bottom: var(--sp-2);
}
.navbar__mobile-search input {
  width: 100%;
  height: 44px;
  padding: 0 var(--sp-4) 0 42px;
  background: var(--clr-bg-3);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  font-size: var(--font-size-base);
  color: var(--clr-text);
}
.navbar__mobile-search i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--clr-text-3);
}

/* Responsive navbar */
@media (max-width: 900px) {
  .navbar__nav, .navbar__search { display: none; }
  .navbar__hamburger { display: flex; }
  .navbar__actions .btn--outline { display: none; }
}
@media (max-width: 480px) {
  .navbar__logo-sub { display: none; }
}

/* ------------------------------------------------------------
   6. BOTONES
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0 var(--sp-5);
  height: 40px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  border-radius: var(--r-md);
  transition: all var(--t-base);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  border: 1.5px solid transparent;
  user-select: none;
}
.btn:active { transform: scale(.97); }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

.btn--primary {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  color: #fff;
  border-color: var(--clr-primary-dark);
  box-shadow: 0 2px 8px rgba(168,85,247,.25);
}
.btn--primary:hover:not(:disabled) {
  box-shadow: 0 4px 16px rgba(168,85,247,.35);
  transform: translateY(-1px);
}

.btn--secondary {
  background: linear-gradient(135deg, var(--clr-secondary), var(--clr-secondary-dark));
  color: #fff;
  border-color: var(--clr-secondary-dark);
  box-shadow: 0 2px 8px rgba(236,72,153,.25);
}
.btn--secondary:hover:not(:disabled) {
  box-shadow: 0 4px 16px rgba(236,72,153,.35);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--clr-primary);
  border-color: var(--clr-primary);
}
.btn--outline:hover:not(:disabled) {
  background: rgba(168,85,247,.06);
}

.btn--ghost {
  background: transparent;
  color: var(--clr-text-2);
  border-color: var(--clr-border);
}
.btn--ghost:hover:not(:disabled) {
  background: var(--clr-bg-3);
  color: var(--clr-text);
}

.btn--danger {
  background: var(--clr-error);
  color: #fff;
  border-color: #dc2626;
}

.btn--sm  { height: 32px; padding: 0 var(--sp-3); font-size: var(--font-size-xs); border-radius: var(--r-sm); }
.btn--lg  { height: 48px; padding: 0 var(--sp-8); font-size: var(--font-size-base); border-radius: var(--r-lg); }
.btn--xl  { height: 56px; padding: 0 var(--sp-10); font-size: var(--font-size-md); border-radius: var(--r-lg); }
.btn--full { width: 100%; }
.btn--icon { width: 40px; padding: 0; }
.btn--icon.btn--sm { width: 32px; }
.btn--icon.btn--lg { width: 48px; }

/* Loader dentro del botón */
.btn__loader { display: none; }
.btn.loading .btn__text { display: none; }
.btn.loading .btn__loader { display: inline-flex; }

/* ------------------------------------------------------------
   7. BADGES / TAGS
   ------------------------------------------------------------ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px var(--sp-2);
  font-size: var(--font-size-xs);
  font-weight: 600;
  border-radius: var(--r-full);
  white-space: nowrap;
  line-height: 1.4;
}
.badge--primary  { background: rgba(168,85,247,.12);  color: var(--clr-primary-dark); }
.badge--secondary{ background: rgba(236,72,153,.12);  color: var(--clr-secondary-dark); }
.badge--success  { background: rgba(34,197,94,.12);   color: #15803d; }
.badge--warning  { background: rgba(245,158,11,.12);  color: #b45309; }
.badge--danger   { background: rgba(239,68,68,.12);   color: #dc2626; }
.badge--info     { background: rgba(59,130,246,.12);  color: #1d4ed8; }
.badge--gray     { background: var(--clr-bg-3);       color: var(--clr-text-2); }
.badge--nsfw     { background: #ef4444; color: #fff; }
.badge--sfw      { background: #22c55e; color: #fff; }
.badge--verified { background: linear-gradient(135deg,#a855f7,#ec4899); color: #fff; }
.badge--new      { background: linear-gradient(135deg,#06b6d4,#3b82f6); color: #fff; }
.badge--trend    { background: linear-gradient(135deg,#f59e0b,#ef4444); color: #fff; }
.badge--top      { background: linear-gradient(135deg,#f59e0b,#fbbf24); color: #7c2d12; }
.badge--boost    { background: linear-gradient(135deg,#a855f7,#7c3aed); color: #fff; }
.badge--lg { padding: 4px var(--sp-3); font-size: var(--font-size-xs); }

/* ------------------------------------------------------------
   8. CARDS DE PERFIL COSPLAYER
   ------------------------------------------------------------ */
.profile-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--clr-bg-card);
  border: 2px solid var(--clr-border);
  transition: all var(--t-slow);
  cursor: pointer;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
}
.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-primary);
}

/* Imagen de fondo */
.profile-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.profile-card:hover .profile-card__img {
  transform: scale(1.04);
}

/* Overlay gradiente */
.profile-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.0) 40%,
    rgba(0,0,0,.5) 70%,
    rgba(0,0,0,.85) 100%
  );
  z-index: 1;
}

/* NSFW placeholder — imagen aleatoria servida por PHP */
.profile-card__nsfw-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  background: var(--clr-bg-3);
}
.profile-card__nsfw-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(20px) brightness(.7);
  position: absolute;
  inset: 0;
}
.profile-card__nsfw-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--sp-4);
}
.profile-card__nsfw-icon {
  font-size: 2.5rem;
  margin-bottom: var(--sp-2);
}
.profile-card__nsfw-text {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--sp-3);
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}

/* Tags arriba */
.profile-card__tags {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  right: var(--sp-3);
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  flex-wrap: wrap;
  z-index: 4;
}

/* Boost indicator arriba derecha */
.profile-card__boost {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px var(--sp-2);
  background: rgba(168,85,247,.9);
  backdrop-filter: blur(4px);
  border-radius: var(--r-full);
  font-size: var(--font-size-xs);
  font-weight: 700;
  color: #fff;
}

/* Número de ranking (fondo grande) */
.profile-card__rank-num {
  position: absolute;
  bottom: 60px;
  right: var(--sp-3);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,.12);
  line-height: 1;
  z-index: 2;
  pointer-events: none;
  user-select: none;
}

/* Info abajo */
.profile-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-3);
  z-index: 4;
}
.profile-card__user {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-2);
}
.profile-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.5);
  object-fit: cover;
  flex-shrink: 0;
  background: linear-gradient(135deg,var(--clr-primary),var(--clr-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: var(--font-size-xs);
  font-weight: 700;
  overflow: hidden;
}
.profile-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.profile-card__handle {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
  display: flex;
  align-items: center;
  gap: 4px;
}
.profile-card__handle .verified-icon {
  color: var(--clr-primary-light);
  font-size: 12px;
}
.profile-card__stats {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.profile-card__stat {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: rgba(255,255,255,.9);
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.profile-card__stat i { font-size: 11px; }
.profile-card__stat--likes i  { color: #f43f5e; }
.profile-card__stat--boost i  { color: #facc15; }
.profile-card__stat--comments i { color: #94a3b8; }

/* Barra de boost (bottom) */
.profile-card__boost-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,.15);
  z-index: 5;
}
.profile-card__boost-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary));
  border-radius: 0 2px 2px 0;
  transition: width var(--t-slow);
}

/* Marcos neón por nivel de boost */
.profile-card--boost-1 { border-color: var(--neon-purple); box-shadow: 0 0 12px rgba(168,85,247,.2); }
.profile-card--boost-2 { border-color: var(--neon-pink);   box-shadow: 0 0 16px rgba(236,72,153,.3); }
.profile-card--boost-3 { border-color: var(--neon-cyan);   box-shadow: 0 0 20px rgba(6,182,212,.35); }
.profile-card--boost-1.profile-card--pulse { animation: pulse-purple 2s ease-in-out infinite; }
.profile-card--boost-2.profile-card--pulse { animation: pulse-pink   2s ease-in-out infinite; }
.profile-card--boost-3.profile-card--pulse { animation: pulse-cyan   2s ease-in-out infinite; }

@keyframes pulse-purple {
  0%,100% { box-shadow: 0 0 12px rgba(168,85,247,.2); }
  50%      { box-shadow: 0 0 24px rgba(168,85,247,.5); }
}
@keyframes pulse-pink {
  0%,100% { box-shadow: 0 0 16px rgba(236,72,153,.3); }
  50%      { box-shadow: 0 0 32px rgba(236,72,153,.6); }
}
@keyframes pulse-cyan {
  0%,100% { box-shadow: 0 0 20px rgba(6,182,212,.35); }
  50%      { box-shadow: 0 0 40px rgba(6,182,212,.7); }
}

/* Marco admin/especial */
.profile-card--frame-gold   { border-color: var(--neon-gold); box-shadow: 0 0 16px rgba(245,158,11,.3); }
.profile-card--frame-rainbow {
  border-image: linear-gradient(135deg,#f43f5e,#f59e0b,#22c55e,#06b6d4,#a855f7) 1;
  animation: rainbow-border 3s linear infinite;
}
@keyframes rainbow-border {
  0%   { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

/* ------------------------------------------------------------
   9. GRID DE PERFILES
   ------------------------------------------------------------ */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--sp-4);
}
@media (max-width: 1200px) {
  .profiles-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
}
@media (max-width: 640px) {
  .profiles-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
}
@media (max-width: 360px) {
  .profiles-grid { grid-template-columns: 1fr; }
}

/* Grid horizontal scroll (para tops) */
.profiles-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 200px;
  gap: var(--sp-4);
  overflow-x: auto;
  padding-bottom: var(--sp-3);
  scrollbar-width: thin;
  scrollbar-color: var(--clr-border) transparent;
}
.profiles-scroll::-webkit-scrollbar { height: 4px; }
.profiles-scroll::-webkit-scrollbar-track { background: transparent; }
.profiles-scroll::-webkit-scrollbar-thumb {
  background: var(--clr-border);
  border-radius: var(--r-full);
}
@media (max-width: 640px) {
  .profiles-scroll { grid-auto-columns: 160px; gap: var(--sp-3); }
}

/* ------------------------------------------------------------
   10. SKELETON LOADERS
   ------------------------------------------------------------ */
@keyframes skeleton-wave {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.skeleton {
  background: linear-gradient(
    90deg,
    var(--clr-bg-3) 25%,
    var(--clr-border) 50%,
    var(--clr-bg-3) 75%
  );
  background-size: 200% 100%;
  animation: skeleton-wave 1.5s ease-in-out infinite;
  border-radius: var(--r-md);
}
.skeleton-card {
  aspect-ratio: 3/4;
  border-radius: var(--r-xl);
}
.skeleton-text { height: 14px; border-radius: var(--r-sm); margin-bottom: 8px; }
.skeleton-text--sm  { width: 60%; }
.skeleton-text--md  { width: 80%; }
.skeleton-text--full { width: 100%; }
.skeleton-avatar { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; }
.skeleton-badge { width: 60px; height: 22px; border-radius: var(--r-full); }

/* ------------------------------------------------------------
   11. SECCIÓN CON HEADER (tops, listas)
   ------------------------------------------------------------ */
.section { margin-bottom: var(--sp-10); }
.section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-5);
  gap: var(--sp-4);
}
.section__title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--clr-text);
}
.section__subtitle {
  font-size: var(--font-size-sm);
  color: var(--clr-text-3);
  margin-top: 2px;
}
.section__link {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: gap var(--t-fast);
}
.section__link:hover { gap: var(--sp-2); }
@media (max-width: 480px) {
  .section__title { font-size: var(--font-size-lg); }
}

/* ------------------------------------------------------------
   12. HERO
   ------------------------------------------------------------ */
.hero {
  padding: var(--sp-16) 0 var(--sp-12);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(168,85,247,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: rgba(168,85,247,.08);
  border: 1px solid rgba(168,85,247,.2);
  border-radius: var(--r-full);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--clr-primary);
  margin-bottom: var(--sp-6);
}
.hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--clr-text);
  margin-bottom: var(--sp-5);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero__desc {
  font-size: var(--font-size-md);
  color: var(--clr-text-2);
  max-width: 560px;
  margin: 0 auto var(--sp-8);
  line-height: 1.7;
}

/* Buscador de handle en hero */
.hero__search {
  max-width: 520px;
  margin: 0 auto var(--sp-6);
}
.hero__search-box {
  display: flex;
  background: var(--clr-bg-2);
  border: 2px solid var(--clr-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.hero__search-box:focus-within {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 4px rgba(168,85,247,.12);
}
.hero__search-prefix {
  display: flex;
  align-items: center;
  padding: 0 var(--sp-4);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--clr-text-3);
  white-space: nowrap;
  border-right: 1px solid var(--clr-border);
  background: var(--clr-bg-3);
}
.hero__search-input {
  flex: 1;
  height: 54px;
  padding: 0 var(--sp-4);
  font-size: var(--font-size-base);
  font-weight: 500;
  color: var(--clr-text);
  background: transparent;
}
.hero__search-input::placeholder { color: var(--clr-text-3); }
.hero__search-btn {
  flex-shrink: 0;
  height: 54px;
  padding: 0 var(--sp-5);
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  color: #fff;
  font-weight: 700;
  font-size: var(--font-size-sm);
  transition: opacity var(--t-fast);
  border-radius: 0 var(--r-xl) var(--r-xl) 0;
}
.hero__search-btn:hover { opacity: .9; }

/* Resultado live del handle */
.hero__handle-result {
  margin-top: var(--sp-3);
  font-size: var(--font-size-sm);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: 24px;
  transition: all var(--t-base);
}
.hero__handle-result--available { color: var(--clr-success); }
.hero__handle-result--taken     { color: var(--clr-error); }
.hero__handle-result--claimable { color: #f59e0b; }
.hero__handle-result--checking  { color: var(--clr-text-3); }

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .hero__search-prefix { display: none; }
  .hero__search-box { border-radius: var(--r-lg); }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; }
}

/* ------------------------------------------------------------
   13. FORMULARIOS
   ------------------------------------------------------------ */
.form-group { margin-bottom: var(--sp-5); }
.form-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: var(--sp-2);
}
.form-label__link {
  font-weight: 500;
  color: var(--clr-primary);
  font-size: var(--font-size-xs);
  transition: opacity var(--t-fast);
}
.form-label__link:hover { opacity: .8; }
.form-label__hint {
  font-weight: 400;
  color: var(--clr-text-3);
  font-size: var(--font-size-xs);
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.input-icon {
  position: absolute;
  left: 14px;
  color: var(--clr-text-3);
  font-size: 14px;
  pointer-events: none;
  z-index: 1;
}
.form-input {
  width: 100%;
  height: 46px;
  padding: 0 var(--sp-4);
  background: var(--clr-bg-2);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-md);
  font-size: var(--font-size-sm);
  color: var(--clr-text);
  transition: all var(--t-base);
  appearance: none;
}
.input-wrapper .input-icon ~ .form-input { padding-left: 40px; }
.form-input:hover { border-color: var(--clr-border-2); }
.form-input:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(168,85,247,.12);
  background: var(--clr-bg-2);
  outline: none;
}
.form-input::placeholder { color: var(--clr-text-3); }
.form-input--error { border-color: var(--clr-error) !important; }
.form-input--success { border-color: var(--clr-success) !important; }
.input-wrapper--handle {
  display: flex;
  align-items: center;
  background: var(--clr-bg-2);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-base), box-shadow var(--t-base);
  padding: 0;
}
.input-wrapper--handle:focus-within {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(168,85,247,.12);
}

.input-wrapper--handle .input-prefix {
  display: flex;
  align-items: center;
  padding: 0 var(--sp-3);
  font-size: var(--font-size-xs);
  font-weight: 500;
  color: var(--clr-text-3);
  background: var(--clr-bg-3);
  border-right: 1.5px solid var(--clr-border);
  white-space: nowrap;
  min-height: 46px;
  flex-shrink: 0;
  pointer-events: none;
}
.form-input--handle {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  border-radius: 0 !important;
  padding-left: var(--sp-3);
  flex: 1;
  min-width: 0;
}

.input-status {
  position: absolute;
  right: 12px;
  font-size: var(--font-size-xs);
  font-weight: 600;
}
.input-status--available { color: var(--clr-success); }
.input-status--taken     { color: var(--clr-error); }
.input-status--checking  { color: var(--clr-text-3); }
.input-status--short     { color: var(--clr-warning); }

.input-toggle-pass {
  position: absolute;
  right: 12px;
  color: var(--clr-text-3);
  font-size: 14px;
  transition: color var(--t-fast);
  z-index: 1;
}
.input-toggle-pass:hover { color: var(--clr-text-2); }

.form-error {
  display: block;
  font-size: var(--font-size-xs);
  color: var(--clr-error);
  margin-top: var(--sp-1);
  min-height: 16px;
}
.form-hint {
  display: block;
  font-size: var(--font-size-xs);
  color: var(--clr-text-3);
  margin-top: var(--sp-1);
}

/* Checkbox */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] { display: none; }
.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--clr-border-2);
  border-radius: var(--r-sm);
  flex-shrink: 0;
  margin-top: 2px;
  transition: all var(--t-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkbox-label input:checked + .checkbox-custom {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
}
.checkbox-label input:checked + .checkbox-custom::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}
.checkbox-text {
  font-size: var(--font-size-sm);
  color: var(--clr-text-2);
  line-height: 1.5;
}
.checkbox-text a { color: var(--clr-primary); text-decoration: underline; }

/* Password strength */
.password-strength { margin-top: var(--sp-2); }
.password-strength__bar {
  height: 4px;
  background: var(--clr-bg-3);
  border-radius: var(--r-full);
  overflow: hidden;
  margin-bottom: 4px;
}
.password-strength__fill {
  height: 100%;
  border-radius: var(--r-full);
  transition: width var(--t-base), background var(--t-base);
  width: 0;
}
.password-strength__label {
  font-size: var(--font-size-xs);
  font-weight: 600;
}

/* Role selector */
.role-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}
.role-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-4);
  background: var(--clr-bg-3);
  border: 2px solid var(--clr-border);
  border-radius: var(--r-lg);
  cursor: pointer;
  transition: all var(--t-base);
  text-align: center;
}
.role-option input { display: none; }
.role-option:hover, .role-option--active {
  border-color: var(--clr-primary);
  background: rgba(168,85,247,.06);
}
.role-option__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--clr-primary);
}
.role-option__title {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--clr-text);
}
.role-option__desc {
  font-size: var(--font-size-xs);
  color: var(--clr-text-3);
}

/* Alerta */
.alert {
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  font-size: var(--font-size-sm);
  font-weight: 500;
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.alert--error   { background: rgba(239,68,68,.08);  color: #dc2626; border: 1px solid rgba(239,68,68,.2); }
.alert--success { background: rgba(34,197,94,.08);  color: #15803d; border: 1px solid rgba(34,197,94,.2); }
.alert--warning { background: rgba(245,158,11,.08); color: #b45309; border: 1px solid rgba(245,158,11,.2); }
.alert--info    { background: rgba(59,130,246,.08); color: #1d4ed8; border: 1px solid rgba(59,130,246,.2); }

/* ------------------------------------------------------------
   14. AUTH PAGES
   ------------------------------------------------------------ */
.auth-body {
  background: var(--clr-bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6) var(--sp-4);
}
.auth-wrapper {
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-5);
}
.auth-wrapper--wide { max-width: 500px; }
.auth-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--font-size-lg);
  font-weight: 800;
  color: var(--clr-text);
}
.auth-logo img { height: 40px; }
.auth-card {
  width: 100%;
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-md);
}
.auth-card__header { text-align: center; margin-bottom: var(--sp-6); }
.auth-card__title  { font-size: var(--font-size-xl); font-weight: 800; margin-bottom: var(--sp-1); }
.auth-card__subtitle { font-size: var(--font-size-sm); color: var(--clr-text-3); }
.auth-form { display: flex; flex-direction: column; }
.auth-divider {
  text-align: center;
  position: relative;
  margin: var(--sp-5) 0;
  color: var(--clr-text-3);
  font-size: var(--font-size-xs);
}
.auth-divider::before, .auth-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 50px);
  height: 1px;
  background: var(--clr-border);
}
.auth-divider::before { left: 0; }
.auth-divider::after  { right: 0; }
.auth-footer {
  font-size: var(--font-size-xs);
  color: var(--clr-text-3);
  text-align: center;
}
.auth-footer a { color: var(--clr-primary); }
@media (max-width: 480px) {
  .auth-card { padding: var(--sp-5); }
}

/* ------------------------------------------------------------
   15. FILTROS / TABS
   ------------------------------------------------------------ */
.filter-tabs {
  display: flex;
  gap: var(--sp-1);
  background: var(--clr-bg-3);
  border-radius: var(--r-lg);
  padding: var(--sp-1);
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-tabs::-webkit-scrollbar { display: none; }
.filter-tab {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--clr-text-2);
  border-radius: var(--r-md);
  transition: all var(--t-fast);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  background: none;
}
.filter-tab:hover { color: var(--clr-text); background: var(--clr-bg-2); }
.filter-tab.active {
  background: var(--clr-bg-2);
  color: var(--clr-primary);
  box-shadow: var(--shadow-sm);
}

/* ------------------------------------------------------------
   16. PAGINACIÓN / LOAD MORE
   ------------------------------------------------------------ */
.load-more {
  display: flex;
  justify-content: center;
  margin-top: var(--sp-8);
}

/* ------------------------------------------------------------
   17. FOOTER
   ------------------------------------------------------------ */
.footer {
  background: var(--clr-bg-2);
  border-top: 1px solid var(--clr-border);
  padding: var(--sp-10) 0 var(--sp-6);
  margin-top: var(--sp-16);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-8);
  margin-bottom: var(--sp-8);
}
.footer__brand-desc {
  font-size: var(--font-size-sm);
  color: var(--clr-text-3);
  margin-top: var(--sp-3);
  line-height: 1.7;
}
.footer__col-title {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: var(--sp-3);
}
.footer__link {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--clr-text-3);
  padding: var(--sp-1) 0;
  transition: color var(--t-fast);
}
.footer__link:hover { color: var(--clr-primary); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-5);
  border-top: 1px solid var(--clr-border);
  font-size: var(--font-size-xs);
  color: var(--clr-text-3);
  gap: var(--sp-4);
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ------------------------------------------------------------
   18. MÓDULOS ACTIVABLES (data-module)
   Los módulos inactivos no se renderizan
   ------------------------------------------------------------ */
[data-module] { display: none; }
[data-module].module-active { display: block; }
[data-module="grid"].module-active { display: grid; }
[data-module="flex"].module-active { display: flex; }

/* ------------------------------------------------------------
   19. RESPONSIVE HELPERS
   ------------------------------------------------------------ */
@media (max-width: 1200px) { .hide-xl { display: none !important; } }
@media (max-width: 900px)  { .hide-lg { display: none !important; } }
@media (max-width: 640px)  { .hide-md { display: none !important; } }
@media (max-width: 480px)  { .hide-sm { display: none !important; } }
@media (min-width: 641px)  { .show-mobile { display: none !important; } }

/* ------------------------------------------------------------
   20. SCROLL TOP BUTTON
   ------------------------------------------------------------ */
.scroll-top {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  width: 44px;
  height: 44px;
  background: var(--clr-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(12px);
  transition: all var(--t-base);
  pointer-events: none;
  z-index: 50;
  font-size: 14px;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top:hover { background: var(--clr-primary-dark); }
@media (max-width: 480px) {
  .scroll-top { bottom: var(--sp-4); right: var(--sp-4); }
}

/* ------------------------------------------------------------
   21. ANIMACIONES ENTRADA
   ------------------------------------------------------------ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.animate-fade-up { animation: fadeInUp .4s ease both; }
.animate-fade    { animation: fadeIn .3s ease both; }

/* Delay helpers */
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }