/**
 * NeemoCR Child — estilos de componentes
 * Prefijo obligatorio: neemocr-
 * Pensado para usarse desde Elementor → Avanzado → Clases CSS
 * Mobile-first · Oscuro · Compatible con Astra + Elementor
 */

/* ==========================================================================
   1. Design tokens
   ========================================================================== */

:root {
  --neemocr-bg: #090614;
  --neemocr-bg-secondary: #17102b;
  --neemocr-surface: #211638;
  --neemocr-surface-elevated: #2a1c48;
  --neemocr-text: #ffffff;
  --neemocr-text-muted: #c9c3d8;
  --neemocr-cyan: #00e5ff;
  --neemocr-pink: #ff3cac;
  --neemocr-purple: #7b2cff;
  --neemocr-purple-deep: #4a1a9e;

  --neemocr-gradient-hero: linear-gradient(
    145deg,
    #090614 0%,
    #17102b 42%,
    #2a1048 78%,
    #1a0a2e 100%
  );
  --neemocr-gradient-accent: linear-gradient(
    135deg,
    var(--neemocr-pink) 0%,
    var(--neemocr-purple) 50%,
    var(--neemocr-cyan) 100%
  );
  --neemocr-gradient-glow: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    rgba(123, 44, 255, 0.28) 0%,
    rgba(255, 60, 172, 0.08) 45%,
    transparent 70%
  );
  --neemocr-gradient-section: linear-gradient(
    180deg,
    var(--neemocr-bg) 0%,
    var(--neemocr-bg-secondary) 50%,
    var(--neemocr-bg) 100%
  );

  --neemocr-radius-sm: 0.5rem;
  --neemocr-radius: 0.875rem;
  --neemocr-radius-lg: 1.25rem;
  --neemocr-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  --neemocr-shadow-glow-pink: 0 0 24px rgba(255, 60, 172, 0.35);
  --neemocr-shadow-glow-cyan: 0 0 24px rgba(0, 229, 255, 0.3);
  --neemocr-blur: 16px;

  --neemocr-font-display: "Segoe UI", "Helvetica Neue", system-ui, sans-serif;
  --neemocr-font-body: "Segoe UI", "Helvetica Neue", system-ui, sans-serif;

  --neemocr-space-xs: 0.5rem;
  --neemocr-space-sm: 0.75rem;
  --neemocr-space-md: 1.25rem;
  --neemocr-space-lg: 2rem;
  --neemocr-space-xl: 3.5rem;
  --neemocr-space-2xl: 5rem;

  --neemocr-transition: 0.28s ease;
  --neemocr-focus-ring: 0 0 0 3px rgba(0, 229, 255, 0.55);
}

/* ==========================================================================
   2. Base suave (no agresiva sobre Elementor)
   ========================================================================== */

body.neemocr-theme {
  background-color: var(--neemocr-bg);
  color: var(--neemocr-text);
}

/* Enlaces dentro de componentes propios */
[class*="neemocr-"] a:not([class*="neemocr-button"]):not([class*="neemocr-social"]) {
  color: var(--neemocr-cyan);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color var(--neemocr-transition), opacity var(--neemocr-transition);
}

[class*="neemocr-"] a:not([class*="neemocr-button"]):not([class*="neemocr-social"]):hover {
  color: var(--neemocr-pink);
}

/* Focus visible accesible */
.neemocr-primary-button:focus-visible,
.neemocr-secondary-button:focus-visible,
.neemocr-social-button:focus-visible,
.neemocr-card a:focus-visible,
.neemocr-cosplay-card a:focus-visible,
.neemocr-video-card a:focus-visible,
.neemocr-collaboration-card a:focus-visible {
  outline: none;
  box-shadow: var(--neemocr-focus-ring);
}

/* ==========================================================================
   3. Secciones
   ========================================================================== */

.neemocr-section-dark {
  background-color: var(--neemocr-bg);
  color: var(--neemocr-text);
  position: relative;
}

.neemocr-section-gradient {
  background: var(--neemocr-gradient-section);
  color: var(--neemocr-text);
  position: relative;
  overflow: hidden;
}

.neemocr-section-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--neemocr-gradient-glow);
  pointer-events: none;
  z-index: 0;
}

.neemocr-section-gradient > * {
  position: relative;
  z-index: 1;
}

.neemocr-glass-panel {
  background: rgba(33, 22, 56, 0.55);
  backdrop-filter: blur(var(--neemocr-blur));
  -webkit-backdrop-filter: blur(var(--neemocr-blur));
  border: 1px solid rgba(201, 195, 216, 0.12);
  border-radius: var(--neemocr-radius-lg);
  box-shadow: var(--neemocr-shadow);
  padding: var(--neemocr-space-md);
  color: var(--neemocr-text);
}

@media (min-width: 768px) {
  .neemocr-glass-panel {
    padding: var(--neemocr-space-lg);
  }
}

/* ==========================================================================
   4. Tipografía
   ========================================================================== */

.neemocr-glow-title {
  font-family: var(--neemocr-font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--neemocr-text);
  text-shadow:
    0 0 28px rgba(123, 44, 255, 0.45),
    0 0 48px rgba(255, 60, 172, 0.18);
  margin: 0 0 var(--neemocr-space-sm);
}

.neemocr-glow-title .neemocr-accent,
.neemocr-glow-title em,
.neemocr-glow-title strong {
  background: var(--neemocr-gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.neemocr-lead {
  color: var(--neemocr-text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 36rem;
}

.neemocr-muted {
  color: var(--neemocr-text-muted);
}

/* ==========================================================================
   5. Hero
   ========================================================================== */

.neemocr-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  background-color: var(--neemocr-bg);
  background-image: var(--neemocr-gradient-glow), var(--neemocr-gradient-hero);
  background-size: cover;
  background-position: center top;
  color: var(--neemocr-text);
  overflow: hidden;
  padding: var(--neemocr-space-lg) var(--neemocr-space-md) var(--neemocr-space-xl);
}

/* Cuando Elementor pone imagen de fondo en el contenedor, el overlay ayuda */
.neemocr-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9, 6, 20, 0.15) 0%,
    rgba(9, 6, 20, 0.35) 40%,
    rgba(9, 6, 20, 0.92) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.neemocr-hero > * {
  position: relative;
  z-index: 1;
}

.neemocr-hero .neemocr-glow-title {
  font-size: clamp(2.25rem, 8vw, 4.5rem);
}

.neemocr-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--neemocr-space-sm);
  margin-top: var(--neemocr-space-md);
}

.neemocr-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--neemocr-space-sm);
  margin-bottom: var(--neemocr-space-sm);
}

@media (min-width: 768px) {
  .neemocr-hero {
    justify-content: center;
    padding: var(--neemocr-space-2xl) var(--neemocr-space-xl);
  }
}

/* ==========================================================================
   6. Badges En vivo / Offline
   ========================================================================== */

.neemocr-live-badge,
.neemocr-offline-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4em 0.85em;
  border-radius: 999px;
  line-height: 1;
  border: 1px solid transparent;
}

.neemocr-live-badge::before,
.neemocr-offline-badge::before {
  content: "";
  width: 0.55em;
  height: 0.55em;
  border-radius: 50%;
  flex-shrink: 0;
}

.neemocr-live-badge {
  color: #041018;
  background: var(--neemocr-cyan);
  border-color: rgba(0, 229, 255, 0.9);
  box-shadow: var(--neemocr-shadow-glow-cyan);
}

.neemocr-live-badge::before {
  background: #041018;
  box-shadow: 0 0 0 0 rgba(4, 16, 24, 0.6);
  animation: neemocr-pulse 1.6s ease-out infinite;
}

.neemocr-offline-badge {
  color: var(--neemocr-text-muted);
  background: rgba(33, 22, 56, 0.9);
  border-color: rgba(201, 195, 216, 0.25);
}

.neemocr-offline-badge::before {
  background: var(--neemocr-text-muted);
  opacity: 0.7;
}

@keyframes neemocr-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.55);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(0, 229, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 229, 255, 0);
  }
}

/* ==========================================================================
   7. Botones
   ========================================================================== */

.neemocr-primary-button,
.neemocr-secondary-button,
.neemocr-social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  min-height: 2.75rem;
  padding: 0.7em 1.35em;
  border-radius: var(--neemocr-radius-sm);
  font-family: var(--neemocr-font-body);
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none !important;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform var(--neemocr-transition),
    box-shadow var(--neemocr-transition),
    background var(--neemocr-transition),
    border-color var(--neemocr-transition),
    color var(--neemocr-transition),
    opacity var(--neemocr-transition);
  -webkit-tap-highlight-color: transparent;
}

.neemocr-primary-button {
  color: #0a0614 !important;
  background: var(--neemocr-gradient-accent);
  background-size: 160% 160%;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(123, 44, 255, 0.35);
}

.neemocr-primary-button:hover,
.neemocr-primary-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--neemocr-shadow-glow-pink);
  color: #0a0614 !important;
}

.neemocr-primary-button:active {
  transform: translateY(0);
}

.neemocr-secondary-button {
  color: var(--neemocr-text) !important;
  background: transparent;
  border-color: rgba(0, 229, 255, 0.55);
  box-shadow: inset 0 0 0 0 rgba(0, 229, 255, 0.15);
}

.neemocr-secondary-button:hover,
.neemocr-secondary-button:focus-visible {
  border-color: var(--neemocr-cyan);
  background: rgba(0, 229, 255, 0.1);
  box-shadow: var(--neemocr-shadow-glow-cyan);
  color: var(--neemocr-text) !important;
  transform: translateY(-2px);
}

/* Botón “Ver stream” — combinación visual rosa/cian */
a.neemocr-stream-button,
.neemocr-stream-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  min-height: 2.75rem;
  padding: 0.7em 1.5em;
  border-radius: var(--neemocr-radius-sm);
  font-weight: 700;
  text-decoration: none !important;
  color: #fff !important;
  background: linear-gradient(120deg, var(--neemocr-pink), var(--neemocr-purple));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--neemocr-shadow-glow-pink);
  transition: transform var(--neemocr-transition), box-shadow var(--neemocr-transition);
}

.neemocr-stream-button:hover,
.neemocr-stream-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(255, 60, 172, 0.5);
}

/* Social buttons */
.neemocr-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--neemocr-space-sm);
}

.neemocr-social-button {
  min-width: 2.75rem;
  color: var(--neemocr-text) !important;
  background: var(--neemocr-surface);
  border-color: rgba(201, 195, 216, 0.18);
  font-size: 0.85rem;
  padding: 0.65em 1em;
}

.neemocr-social-button:hover,
.neemocr-social-button:focus-visible {
  transform: translateY(-2px);
  color: #0a0614 !important;
}

.neemocr-social-button--twitch:hover,
.neemocr-social-button--twitch:focus-visible {
  background: #9146ff;
  border-color: #9146ff;
}

.neemocr-social-button--kick:hover,
.neemocr-social-button--kick:focus-visible {
  background: #53fc18;
  border-color: #53fc18;
  color: #0a0614 !important;
}

.neemocr-social-button--instagram:hover,
.neemocr-social-button--instagram:focus-visible {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
  border-color: transparent;
  color: #fff !important;
}

.neemocr-social-button--tiktok:hover,
.neemocr-social-button--tiktok:focus-visible {
  background: #010101;
  border-color: var(--neemocr-cyan);
  color: #fff !important;
  box-shadow: -2px 0 0 var(--neemocr-cyan), 2px 0 0 var(--neemocr-pink);
}

.neemocr-social-button--youtube:hover,
.neemocr-social-button--youtube:focus-visible {
  background: #ff0000;
  border-color: #ff0000;
  color: #fff !important;
}

.neemocr-social-button--x:hover,
.neemocr-social-button--x:focus-visible {
  background: #e7e9ea;
  border-color: #e7e9ea;
  color: #0a0614 !important;
}

/* ==========================================================================
   8. Tarjetas
   ========================================================================== */

.neemocr-card,
.neemocr-cosplay-card,
.neemocr-video-card,
.neemocr-collaboration-card {
  background: var(--neemocr-surface);
  border: 1px solid rgba(201, 195, 216, 0.1);
  border-radius: var(--neemocr-radius);
  overflow: hidden;
  color: var(--neemocr-text);
  box-shadow: var(--neemocr-shadow);
  transition:
    transform var(--neemocr-transition),
    border-color var(--neemocr-transition),
    box-shadow var(--neemocr-transition);
}

.neemocr-card:hover,
.neemocr-cosplay-card:hover,
.neemocr-video-card:hover,
.neemocr-collaboration-card:hover {
  transform: translateY(-4px);
  border-color: rgba(123, 44, 255, 0.45);
  box-shadow:
    var(--neemocr-shadow),
    0 0 28px rgba(123, 44, 255, 0.2);
}

.neemocr-card__media,
.neemocr-cosplay-card__media,
.neemocr-video-card__media,
.neemocr-collaboration-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--neemocr-bg-secondary);
}

.neemocr-card__body,
.neemocr-cosplay-card__body,
.neemocr-video-card__body,
.neemocr-collaboration-card__body {
  padding: var(--neemocr-space-md);
}

.neemocr-card__title,
.neemocr-cosplay-card__title,
.neemocr-video-card__title,
.neemocr-collaboration-card__title {
  margin: 0 0 0.35em;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
}

.neemocr-card__text,
.neemocr-cosplay-card__text,
.neemocr-video-card__text,
.neemocr-collaboration-card__text {
  margin: 0;
  color: var(--neemocr-text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Cosplay: vertical / portrait friendly */
.neemocr-cosplay-card {
  position: relative;
}

.neemocr-cosplay-card__media {
  aspect-ratio: 3 / 4;
}

.neemocr-cosplay-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--neemocr-space-md);
  background: linear-gradient(transparent, rgba(9, 6, 20, 0.92));
}

.neemocr-cosplay-card:hover .neemocr-cosplay-card__media {
  filter: brightness(1.05);
}

/* Video cards */
.neemocr-video-card {
  position: relative;
}

.neemocr-video-card__media {
  aspect-ratio: 16 / 9;
}

.neemocr-video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: rgba(9, 6, 20, 0.65);
  border: 2px solid var(--neemocr-cyan);
  display: grid;
  place-items: center;
  pointer-events: none;
  transition: background var(--neemocr-transition), box-shadow var(--neemocr-transition);
}

.neemocr-video-card__play::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.45rem 0 0.45rem 0.75rem;
  border-color: transparent transparent transparent var(--neemocr-cyan);
  margin-left: 0.15rem;
}

.neemocr-video-card:hover .neemocr-video-card__play {
  background: rgba(0, 229, 255, 0.2);
  box-shadow: var(--neemocr-shadow-glow-cyan);
}

/* Colaboraciones / marcas */
.neemocr-collaboration-card {
  text-align: center;
  padding: var(--neemocr-space-lg) var(--neemocr-space-md);
  background: linear-gradient(
    160deg,
    var(--neemocr-surface) 0%,
    rgba(123, 44, 255, 0.12) 100%
  );
}

.neemocr-collaboration-card__logo {
  max-width: 7.5rem;
  max-height: 3rem;
  width: auto;
  height: auto;
  margin: 0 auto var(--neemocr-space-md);
  object-fit: contain;
  filter: grayscale(0.2) brightness(1.05);
  transition: filter var(--neemocr-transition);
}

.neemocr-collaboration-card:hover .neemocr-collaboration-card__logo {
  filter: none;
}

/* ==========================================================================
   9. Galería cosplay
   ========================================================================== */

.neemocr-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--neemocr-space-md);
}

@media (min-width: 480px) {
  .neemocr-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .neemocr-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--neemocr-space-lg);
  }
}

.neemocr-gallery--dense {
  gap: var(--neemocr-space-sm);
}

/* ==========================================================================
   10. Grid de videos / eventos / destacados
   ========================================================================== */

.neemocr-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--neemocr-space-md);
}

@media (min-width: 640px) {
  .neemocr-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .neemocr-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.neemocr-event-list {
  display: flex;
  flex-direction: column;
  gap: var(--neemocr-space-sm);
}

.neemocr-event-item {
  display: flex;
  flex-wrap: wrap;
  gap: var(--neemocr-space-sm) var(--neemocr-space-md);
  align-items: baseline;
  padding: var(--neemocr-space-md);
  background: var(--neemocr-surface);
  border-radius: var(--neemocr-radius);
  border: 1px solid rgba(201, 195, 216, 0.1);
  border-left: 3px solid var(--neemocr-pink);
}

.neemocr-event-item__date {
  color: var(--neemocr-cyan);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  min-width: 6.5rem;
}

.neemocr-event-item__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 650;
}

.neemocr-event-item__meta {
  margin: 0;
  color: var(--neemocr-text-muted);
  font-size: 0.9rem;
  flex: 1 1 100%;
}

@media (min-width: 768px) {
  .neemocr-event-item__meta {
    flex: 1 1 auto;
    text-align: right;
  }
}

/* ==========================================================================
   11. Contacto / CTA
   ========================================================================== */

.neemocr-cta {
  text-align: center;
  padding: var(--neemocr-space-xl) var(--neemocr-space-md);
  background: var(--neemocr-gradient-glow), var(--neemocr-bg-secondary);
  border-radius: var(--neemocr-radius-lg);
  border: 1px solid rgba(123, 44, 255, 0.25);
}

.neemocr-cta .neemocr-glow-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.neemocr-cta .neemocr-lead {
  margin-left: auto;
  margin-right: auto;
}

.neemocr-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--neemocr-space-sm);
  margin-top: var(--neemocr-space-md);
}

/* Formularios dentro de paneles (Elementor Form / HTML) */
.neemocr-glass-panel input[type="text"],
.neemocr-glass-panel input[type="email"],
.neemocr-glass-panel input[type="url"],
.neemocr-glass-panel textarea,
.neemocr-glass-panel select,
.neemocr-contact-form input[type="text"],
.neemocr-contact-form input[type="email"],
.neemocr-contact-form input[type="url"],
.neemocr-contact-form textarea,
.neemocr-contact-form select {
  width: 100%;
  max-width: 100%;
  background: rgba(9, 6, 20, 0.65);
  color: var(--neemocr-text);
  border: 1px solid rgba(201, 195, 216, 0.2);
  border-radius: var(--neemocr-radius-sm);
  padding: 0.75em 0.9em;
  font: inherit;
  transition: border-color var(--neemocr-transition), box-shadow var(--neemocr-transition);
}

.neemocr-glass-panel input:focus-visible,
.neemocr-glass-panel textarea:focus-visible,
.neemocr-glass-panel select:focus-visible,
.neemocr-contact-form input:focus-visible,
.neemocr-contact-form textarea:focus-visible,
.neemocr-contact-form select:focus-visible {
  outline: none;
  border-color: var(--neemocr-cyan);
  box-shadow: var(--neemocr-focus-ring);
}

.neemocr-glass-panel label,
.neemocr-contact-form label {
  display: block;
  margin-bottom: 0.35em;
  color: var(--neemocr-text-muted);
  font-size: 0.9rem;
}

.neemocr-glass-panel .elementor-field-group,
.neemocr-contact-form .elementor-field-group {
  margin-bottom: var(--neemocr-space-md);
}

/* ==========================================================================
   12. Footer social
   ========================================================================== */

.neemocr-footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--neemocr-space-sm);
  padding: var(--neemocr-space-lg) var(--neemocr-space-md);
}

.neemocr-footer-note {
  text-align: center;
  color: var(--neemocr-text-muted);
  font-size: 0.85rem;
  padding-bottom: var(--neemocr-space-lg);
}

/* ==========================================================================
   13. Scroll reveal (activado por JS)
   ========================================================================== */

.neemocr-reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
  will-change: opacity, transform;
}

.neemocr-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.neemocr-reveal-delay-1 { transition-delay: 0.08s; }
.neemocr-reveal-delay-2 { transition-delay: 0.16s; }
.neemocr-reveal-delay-3 { transition-delay: 0.24s; }

/* ==========================================================================
   14. Utilidades
   ========================================================================== */

.neemocr-text-center { text-align: center; }
.neemocr-text-left { text-align: left; }

.neemocr-stack {
  display: flex;
  flex-direction: column;
  gap: var(--neemocr-space-md);
}

.neemocr-cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--neemocr-space-sm);
}

.neemocr-divider {
  height: 1px;
  border: 0;
  margin: var(--neemocr-space-lg) 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(123, 44, 255, 0.45),
    rgba(0, 229, 255, 0.35),
    transparent
  );
}

.neemocr-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;
}

/* Imágenes responsivas dentro de componentes */
.neemocr-hero img,
.neemocr-card img,
.neemocr-cosplay-card img,
.neemocr-video-card img,
.neemocr-collaboration-card img,
.neemocr-gallery img {
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   15. Accesibilidad: reduced motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }

  .neemocr-primary-button,
  .neemocr-secondary-button,
  .neemocr-social-button,
  .neemocr-stream-button,
  .neemocr-card,
  .neemocr-cosplay-card,
  .neemocr-video-card,
  .neemocr-collaboration-card,
  .neemocr-reveal {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }

  .neemocr-reveal {
    opacity: 1;
  }

  .neemocr-live-badge::before {
    animation: none !important;
  }

  .neemocr-card:hover,
  .neemocr-cosplay-card:hover,
  .neemocr-video-card:hover,
  .neemocr-collaboration-card:hover,
  .neemocr-primary-button:hover,
  .neemocr-secondary-button:hover,
  .neemocr-social-button:hover,
  .neemocr-stream-button:hover {
    transform: none !important;
  }
}

/* ==========================================================================
   16. Contraste / hover keyboard-friendly (sin depender solo del color)
   ========================================================================== */

@media (hover: hover) and (pointer: fine) {
  .neemocr-primary-button:hover {
    filter: brightness(1.05);
  }
}

/* Elementor: evita que paddings propios choquen demasiado en móvil */
@media (max-width: 767px) {
  .neemocr-hero .elementor-heading-title {
    word-break: break-word;
  }

  .neemocr-social-row {
    width: 100%;
  }

  .neemocr-social-button {
    flex: 1 1 calc(50% - var(--neemocr-space-sm));
    min-width: 0;
  }
}
