/* ============================================================================
   CREATORS — sección de creadores/promotores
   2026-05-14
   ============================================================================ */

/* ──── Grid de cards ──── */
.cr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.cr-card {
  background: linear-gradient(180deg, rgba(28,19,52,0.85), rgba(10,5,24,0.92));
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.cr-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 200, 87, 0.5);
  box-shadow: 0 10px 30px rgba(0,0,0,0.45), 0 0 24px rgba(255,200,87,0.18);
}
.cr-card:focus-visible {
  outline: 2px solid #ffc857;
  outline-offset: 2px;
}

.cr-card-banner {
  position: relative;
  aspect-ratio: 16 / 7;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(40, 25, 70, 0.6);
}
.cr-card-banner.no-img {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.18);
  font-size: 48px;
  background: linear-gradient(135deg, rgba(184,132,255,0.18), rgba(255,200,87,0.08));
}
.cr-card-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,5,24,0.92) 100%);
  pointer-events: none;
}

.cr-card-body {
  padding: 14px 16px 16px;
  position: relative;
  margin-top: -28px;
  z-index: 1;
}

.cr-card-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(184,132,255,0.3), rgba(255,200,87,0.2));
  border: 3px solid #1c1334;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.45);
  font-size: 22px;
  overflow: hidden;
  margin-bottom: 8px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}
.cr-card-avatar img {
  width: 100%; height: 100%; object-fit: cover;
}

.cr-card-info { margin-bottom: 8px; }
.cr-card-name {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 17px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 4px;
}
.cr-card-meta {
  display: flex;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
}
.cr-card-lv {
  background: rgba(255,200,87,0.15);
  border: 1px solid rgba(255,200,87,0.4);
  border-radius: 6px;
  padding: 1px 7px;
  color: #ffc857;
  font-weight: 700;
}
.cr-card-race {
  background: rgba(184,132,255,0.15);
  border: 1px solid rgba(184,132,255,0.4);
  border-radius: 6px;
  padding: 1px 7px;
  color: #b884ff;
  text-transform: capitalize;
}

.cr-card-desc {
  font-size: 12.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin-bottom: 10px;
  min-height: 36px;
}
.cr-card-desc-empty {
  color: rgba(255,255,255,0.35);
  font-style: italic;
}

.cr-card-stats {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cr-card-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}
.cr-card-chip i { font-size: 11px; }

/* ──── Empty state ──── */
.cr-empty {
  text-align: center;
  padding: 60px 20px;
  color: rgba(255,255,255,0.5);
}
.cr-empty i {
  font-size: 56px;
  color: rgba(255,255,255,0.15);
  display: block;
  margin-bottom: 12px;
}
.cr-empty h3 { font-family: var(--font-title); font-size: 18px; margin-bottom: 6px; color: rgba(255,255,255,0.65); }
.cr-empty p { font-size: 13px; }

/* ============================================================================
   PROFILE — vista individual de creador
   ============================================================================ */
.cr-profile {
  max-width: 900px;
  margin: 0 auto;
}

.cr-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: transparent;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  transition: all 0.15s ease;
}
.cr-back:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,200,87,0.4);
  color: #ffc857;
}

.cr-profile-header {
  background: linear-gradient(180deg, rgba(28,19,52,0.85), rgba(10,5,24,0.92));
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 18px;
}

.cr-profile-banner {
  position: relative;
  aspect-ratio: 16 / 5;
  background-size: cover;
  background-position: center;
  background-color: rgba(40, 25, 70, 0.6);
}
.cr-profile-banner.no-img {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.18);
  font-size: 64px;
  background: linear-gradient(135deg, rgba(184,132,255,0.18), rgba(255,200,87,0.08));
}

.cr-edit-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 200, 87, 0.5);
  border-radius: 999px;
  color: #ffc857;
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.15s ease;
}
.cr-edit-btn:hover { background: rgba(0,0,0,0.85); transform: translateY(-1px); }

.cr-profile-id {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  padding: 0 22px 14px;
  margin-top: -42px;
}

.cr-profile-avatar {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(184,132,255,0.4), rgba(255,200,87,0.25));
  border: 4px solid #0a0518;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.45);
  font-size: 36px;
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow: 0 6px 20px rgba(0,0,0,0.55);
}
.cr-profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
.cr-edit-avatar-btn {
  position: absolute;
  bottom: -2px; right: -2px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #ffc857;
  border: 2px solid #0a0518;
  color: #1f1206;
  font-size: 13px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.15s ease;
}
.cr-edit-avatar-btn:hover { transform: scale(1.1); }

.cr-profile-namewrap {
  flex: 1;
  min-width: 0;
  padding-bottom: 6px;
}
.cr-profile-name {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  /* 2026-05-14: shadow para garantizar contraste sobre banners claros */
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85), 0 1px 2px rgba(0, 0, 0, 0.9);
}
.cr-creator-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  background: linear-gradient(135deg, #ffc857, #e9a82b);
  color: #1f1206;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(255,200,87,0.4);
}
.cr-creator-badge i { font-size: 11px; }
.cr-profile-meta {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}
.cr-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  text-transform: capitalize;
}

.cr-edit-profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  /* 2026-05-14: fondo oscuro sólido para que no quede transparente sobre el banner */
  background: linear-gradient(180deg, rgba(20, 14, 38, 0.95), rgba(10, 5, 24, 0.92));
  border: 1px solid rgba(255, 200, 87, 0.5);
  border-radius: 8px;
  color: #ffc857;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  flex: 0 0 auto;
  align-self: center;
  margin-bottom: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
}
.cr-edit-profile-btn:hover {
  background: linear-gradient(180deg, rgba(40, 24, 70, 0.98), rgba(20, 10, 40, 0.95));
  border-color: rgba(255, 200, 87, 0.85);
  transform: translateY(-1px);
}

.cr-profile-desc {
  padding: 4px 22px 18px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  line-height: 1.6;
  white-space: pre-wrap;
}
.cr-desc-empty {
  font-style: italic;
  color: rgba(255,255,255,0.35);
}

.cr-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 22px 18px;
}
.cr-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  /* 2026-05-14: fondo sólido (no transparente) — antes era 40% y se veía el banner detrás */
  background: linear-gradient(180deg, rgba(20, 14, 38, 0.95), rgba(10, 5, 24, 0.97));
  border: 1px solid color-mix(in srgb, var(--lc, #999) 55%, transparent);
  border-radius: 8px;
  color: var(--lc, #fff);
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: all 0.15s ease;
}
.cr-link:hover {
  background: color-mix(in srgb, var(--lc) 15%, rgba(0,0,0,0.4));
  border-color: var(--lc);
  transform: translateY(-1px);
}
.cr-link i { font-size: 16px; }

/* ============================================================================
   POSTS
   ============================================================================ */
.cr-posts-section {
  background: linear-gradient(180deg, rgba(28,19,52,0.7), rgba(10,5,24,0.85));
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 16px;
}
.cr-posts-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-soft);
}
.cr-posts-header h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #fff;
  margin: 0;
}
.cr-posts-header h2 i { color: #ffc857; font-size: 18px; }

.cr-posts-empty {
  text-align: center;
  padding: 40px 16px;
  color: rgba(255,255,255,0.5);
}
.cr-posts-empty i { font-size: 40px; color: rgba(255,255,255,0.15); display: block; margin-bottom: 10px; }

.cr-posts-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cr-post {
  position: relative;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 14px 16px;
}
.cr-post.is-pinned {
  border-color: rgba(255,200,87,0.45);
  background: linear-gradient(180deg, rgba(255,200,87,0.08), rgba(0,0,0,0.35));
}
.cr-post-pin {
  position: absolute;
  top: 10px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-title);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffc857;
}
.cr-post-pin i { font-size: 11px; }
.cr-post-head {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 10px;
  padding-right: 60px;
}
.cr-post-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  margin: 0;
}
.cr-post-date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.45);
}
.cr-post-content {
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
  white-space: pre-wrap;
  margin-bottom: 8px;
}
.cr-post-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: rgba(78,195,247,0.10);
  border: 1px solid rgba(78,195,247,0.35);
  border-radius: 8px;
  color: #4ec3f7;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  word-break: break-all;
  margin-top: 6px;
  transition: all 0.15s ease;
}
.cr-post-link:hover { background: rgba(78,195,247,0.18); }
.cr-post-link > i:first-child { flex: 0 0 auto; }
.cr-post-link > i:last-child { flex: 0 0 auto; opacity: 0.7; font-size: 12px; }
.cr-post-link span { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.cr-post-actions {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.05);
  justify-content: flex-end;
}
.cr-post-btn {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.15s ease;
}
.cr-post-btn:hover { background: rgba(255,255,255,0.12); color: #fff; }
.cr-post-btn-danger:hover {
  background: rgba(232,90,106,0.18);
  border-color: rgba(232,90,106,0.5);
  color: #ff8898;
}

/* ============================================================================
   MODALS (editar perfil, subir imagen, crear/editar post)
   ============================================================================ */
.cr-edit-modal,
.cr-img-modal {
  max-width: 540px;
  background: linear-gradient(180deg, #1c1334 0%, #0a0518 100%);
  display: flex;
  flex-direction: column;
  max-height: calc(100dvh - 32px);
}
.cr-edit-modal .modal-body,
.cr-img-modal .modal-body {
  flex: 1;
  overflow-y: auto;
}

.cr-form-label {
  display: block;
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}
.cr-form-input,
.cr-form-textarea {
  width: 100%;
  padding: 10px 12px;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-family: var(--font-mono);
  resize: vertical;
}
.cr-form-input:focus,
.cr-form-textarea:focus {
  outline: none;
  border-color: rgba(255,200,87,0.5);
  background: rgba(0,0,0,0.55);
}
.cr-form-textarea {
  min-height: 100px;
  font-family: inherit;
  line-height: 1.5;
}
.cr-form-counter {
  text-align: right;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}
.cr-form-divider {
  height: 1px;
  background: var(--border-soft);
  margin: 16px 0;
}
.cr-form-section-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 4px;
}
.cr-form-hint {
  font-size: 11.5px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.cr-form-link-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}
.cr-form-link-row label {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
}
.cr-form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
}
.cr-form-check input { width: 16px; height: 16px; cursor: pointer; }

.cr-img-preview-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}
.cr-img-preview {
  width: 100%;
  max-width: 440px;
  background-color: rgba(10,6,20,0.7);
  background-size: cover;
  background-position: center;
  border: 1px dashed rgba(255,255,255,0.18);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.22);
  font-size: 48px;
  overflow: hidden;
}
.cr-pick-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  margin: 0 auto 12px;
  background: rgba(255,200,87,0.12);
  border: 1px solid rgba(255,200,87,0.4);
  border-radius: 10px;
  color: #ffc857;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-align: center;
  width: 100%;
  justify-content: center;
  transition: all 0.15s ease;
}
.cr-pick-btn:hover { background: rgba(255,200,87,0.2); }

/* ============================================================================
   Responsive
   ============================================================================ */
@media (max-width: 600px) {
  .cr-grid { grid-template-columns: 1fr; }
  .cr-profile-banner { aspect-ratio: 16 / 6; }
  .cr-profile-id { flex-wrap: wrap; padding: 0 14px 12px; margin-top: -36px; }
  .cr-profile-avatar { width: 78px; height: 78px; font-size: 28px; }
  .cr-edit-profile-btn { width: 100%; justify-content: center; margin-top: 6px; }
  .cr-profile-name { font-size: 18px; }
  .cr-profile-desc, .cr-links-row { padding-left: 14px; padding-right: 14px; }
  .cr-edit-btn span { display: none; }
  .cr-edit-btn { padding: 6px 8px; }
  .cr-form-link-row { grid-template-columns: 1fr; gap: 4px; }
  .cr-form-link-row label { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
}

/* ============================================================================
   LIKE / FOLLOW (2026-05-14)
   ============================================================================ */

/* Botón like en la card (esquina superior derecha del banner) */
.cr-card-like {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  z-index: 2;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.15s ease;
}
.cr-card-like:hover {
  background: rgba(232, 90, 106, 0.4);
  border-color: rgba(232, 90, 106, 0.7);
  color: #fff;
  transform: scale(1.05);
}
.cr-card-like.is-liked {
  background: linear-gradient(135deg, #e85a6a, #c83e4f);
  border-color: rgba(255, 140, 160, 0.6);
  color: #fff;
  box-shadow: 0 0 14px rgba(232, 90, 106, 0.45);
}
.cr-card-like.is-liked:hover { transform: scale(1.05); filter: brightness(1.1); }
.cr-card-like.is-readonly {
  cursor: default;
  background: rgba(0, 0, 0, 0.55);
  border-color: rgba(232, 90, 106, 0.45);
  color: #ff8898;
}
.cr-card-like.is-readonly:hover { transform: none; }
.cr-card-like i { font-size: 14px; }
.cr-card-like-count { font-size: 11.5px; letter-spacing: 0.02em; }

/* Botones grandes de like / follow en el perfil */
.cr-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: center;
  margin-bottom: 6px;
}
.cr-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 10px;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.18s ease;
  border: 1px solid;
  flex: 0 0 auto;
}
.cr-action-btn:disabled { opacity: 0.6; cursor: wait; }
.cr-action-btn i { font-size: 16px; }

/* 2026-05-14: action buttons (Seguir / Me Gusta) — fondo más sólido para
   verse sobre banners claros del creador. */
.cr-action-btn {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

/* Follow */
.cr-btn-follow {
  background: linear-gradient(180deg, rgba(20, 14, 38, 0.92), rgba(10, 5, 24, 0.95));
  border-color: rgba(78, 195, 247, 0.6);
  color: #7dd3fc;
}
.cr-btn-follow:hover:not(:disabled) {
  background: linear-gradient(180deg, rgba(78, 195, 247, 0.25), rgba(40, 100, 160, 0.4));
  border-color: #4ec3f7;
  color: #fff;
  transform: translateY(-1px);
}
.cr-btn-follow.is-active {
  background: linear-gradient(135deg, #4ec3f7, #3296c6);
  border-color: #4ec3f7;
  color: #fff;
  box-shadow: 0 4px 14px rgba(78, 195, 247, 0.45);
}
.cr-btn-follow.is-active:hover:not(:disabled) { filter: brightness(1.1); }

/* Like */
.cr-btn-like {
  background: linear-gradient(180deg, rgba(20, 14, 38, 0.92), rgba(10, 5, 24, 0.95));
  border-color: rgba(232, 90, 106, 0.6);
  color: #ff9aa6;
}
.cr-btn-like:hover:not(:disabled) {
  background: linear-gradient(180deg, rgba(232, 90, 106, 0.25), rgba(140, 40, 60, 0.4));
  border-color: #e85a6a;
  color: #fff;
  transform: translateY(-1px);
}
.cr-btn-like.is-active {
  background: linear-gradient(135deg, #e85a6a, #c83e4f);
  border-color: #ff8898;
  color: #fff;
  box-shadow: 0 4px 14px rgba(232, 90, 106, 0.45);
}
.cr-btn-like.is-active:hover:not(:disabled) { filter: brightness(1.1); }

/* Stats chips inline (followers, likes) en la meta del perfil */
.cr-meta-chip.cr-meta-stat {
  background: rgba(255, 255, 255, 0.06);
}
.cr-meta-chip.cr-meta-stat i { color: #ffc857; }
.cr-meta-chip.cr-meta-stat b { color: #fff; margin-right: 2px; }

/* Animación "pop" al dar like (feedback) */
.cr-pop {
  animation: cr-pop-anim 0.35s ease;
}
@keyframes cr-pop-anim {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}

@media (max-width: 600px) {
  .cr-action-buttons { width: 100%; justify-content: stretch; }
  .cr-action-btn { flex: 1; justify-content: center; padding: 9px 10px; font-size: 12px; }
  .cr-card-like { top: 8px; right: 8px; padding: 4px 8px; font-size: 11px; }
}

/* =====================================================================
   2026-05-17: Apply card — mismo layout que cr-card pero estilo CTA dorado.
   Aparece como primera card del grid si el char no es creator.
   ===================================================================== */
.cr-card-apply {
  cursor: default;
  border-color: rgba(184, 132, 255, 0.45);
  background: linear-gradient(160deg, rgba(184,132,255,0.10) 0%, rgba(11,4,24,0.95) 75%);
}
.cr-card-apply.is-eligible {
  border-color: rgba(255, 200, 87, 0.55);
  box-shadow: 0 0 24px rgba(255, 200, 87, 0.18), 0 6px 24px rgba(0,0,0,0.4);
}
.cr-card-apply:hover {
  transform: none; /* el hover de las cards normales no aplica acá */
}
.cr-card-apply.is-eligible:hover {
  box-shadow: 0 0 28px rgba(255, 200, 87, 0.30), 0 8px 28px rgba(0,0,0,0.5);
}

/* Banner: gradient con icono gigante al fondo */
.cr-apply-banner {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(184,132,255,0.30), transparent 65%),
    linear-gradient(135deg, rgba(124,58,237,0.30) 0%, rgba(232,90,106,0.20) 100%) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.cr-apply-bg-icon {
  font-size: 80px;
  color: rgba(255,255,255,0.10);
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.5));
}
.cr-card-apply.is-eligible .cr-apply-banner {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255,210,74,0.30), transparent 65%),
    linear-gradient(135deg, rgba(255,170,80,0.20) 0%, rgba(232,90,106,0.20) 100%) !important;
}
.cr-card-apply.is-eligible .cr-apply-bg-icon { color: rgba(255,210,74,0.18); }

.cr-apply-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(184,132,255,0.60);
  color: #c4b5fd;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  border-radius: 99px;
  backdrop-filter: blur(6px);
}
.cr-card-apply.is-eligible .cr-apply-tag {
  border-color: rgba(255,210,74,0.7);
  color: #ffd54a;
  text-shadow: 0 0 8px rgba(255,210,74,0.5);
}

/* Avatar circular grande con icono — sustituye al avatar del creator */
.cr-apply-avatar {
  background: linear-gradient(135deg, rgba(184,132,255,0.30), rgba(124,58,237,0.50)) !important;
  border-color: rgba(184,132,255,0.7) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
}
.cr-card-apply.is-eligible .cr-apply-avatar {
  background: linear-gradient(135deg, rgba(255,210,74,0.30), rgba(255,170,80,0.50)) !important;
  border-color: rgba(255,210,74,0.8) !important;
}

/* Description body — req rows */
.cr-card-apply .cr-card-desc {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-style: normal;
  font-size: 12px;
  background: rgba(0,0,0,0.25);
  border-radius: 6px;
  padding: 8px 10px;
}
.cr-apply-req-row {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.75);
}
.cr-apply-req-row i { font-size: 14px; color: var(--text-muted); flex-shrink: 0; }
.cr-apply-req-row.is-ok i { color: #5fd684; }
.cr-apply-req-row.is-missing i { color: #fbbf24; }
.cr-apply-req-pill {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 800;
  padding: 1px 7px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 99px;
  color: #fff;
}
.cr-card-apply.is-eligible .cr-apply-req-pill {
  border-color: rgba(255,210,74,0.5);
  color: #ffd54a;
}
.cr-apply-req-row.is-ok .cr-apply-req-pill {
  border-color: rgba(95,214,132,0.5);
  color: #5fd684;
}

/* Status chip en footer */
.cr-chip-pending {
  background: rgba(95,220,255,0.15) !important;
  border-color: rgba(95,220,255,0.5) !important;
  color: #5fdcff !important;
}
.cr-chip-rejected {
  background: rgba(225,80,90,0.15) !important;
  border-color: rgba(225,80,90,0.5) !important;
  color: #ff8e98 !important;
}

/* CTA button — full width en la card */
.cr-apply-cta {
  margin-top: 10px;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  animation: cr-apply-pulse 2.4s ease-in-out infinite;
}
@keyframes cr-apply-pulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(255, 200, 87, 0.25); }
  50%      { box-shadow: 0 4px 22px rgba(255, 200, 87, 0.50), 0 0 16px rgba(255, 200, 87, 0.30); }
}
