/**
 * Hello Plataforma · Content Preview Screen Styles
 *
 * Pantalla /mi-panel/contenido/ donde María ve cómo ven los fans su feed.
 */


.hp-content-preview-wrapper {
  background: var(--hp-bg-secondary);
  min-height: 100vh;
}

.hp-content-preview {
  max-width: 480px;
  margin: 0 auto;
  padding: 16px 16px 110px;
}


/* ============================================================
   BANNER DE CONTEXTO (Así ven tus fans)
   ============================================================ */

.hp-preview-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(212, 191, 232, 0.20) 0%, rgba(168, 135, 208, 0.10) 100%);
  border: 0.5px solid rgba(149, 117, 205, 0.30);
  border-radius: 14px;
  margin-bottom: 18px;
}

.hp-preview-banner-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, #A887D0 0%, #9575CD 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.hp-preview-banner-icon i {
  font-size: 20px;
  color: #FFFFFF;
}

.hp-preview-banner-content {
  flex: 1;
  min-width: 0;
}

.hp-preview-banner-title {
  font-family: var(--hp-font-base);
  font-size: 13px;
  font-weight: 700;
  color: var(--hp-text-primary);
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.hp-preview-banner-sub {
  font-family: var(--hp-font-base);
  font-size: 12px;
  color: var(--hp-text-secondary);
  margin: 3px 0 0;
  line-height: 1.4;
}


/* ============================================================
   FAB FLOTANTE (Subir nuevo)
   ============================================================ */

.hp-preview-fab,
.hp-preview-fab:link,
.hp-preview-fab:visited,
.hp-preview-fab:hover,
.hp-preview-fab:active,
.hp-preview-fab:focus,
.hp-preview-fab i {
  text-decoration: none !important;
  border-bottom: 0 !important;
  box-shadow: 0 8px 24px -4px rgba(105, 73, 158, 0.55),
              inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.hp-preview-fab {
  position: fixed;
  bottom: calc(76px + 16px + env(safe-area-inset-bottom, 0));
  right: 16px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--hp-gradient-purple-button);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  z-index: 80;
  transition: transform var(--hp-duration-normal) var(--hp-ease),
              box-shadow var(--hp-duration-normal) var(--hp-ease);
}

.hp-preview-fab:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 12px 32px -4px rgba(105, 73, 158, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.30) !important;
}

.hp-preview-fab:active {
  transform: translateY(0) scale(0.98);
}

.hp-preview-fab i {
  font-size: 26px;
  stroke-width: 2;
}


/* ============================================================
   EMPTY STATE (sin posts)
   ============================================================ */

.hp-preview-empty {
  text-align: center;
  padding: 60px 24px 30px;
}

.hp-preview-empty-icon {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(212, 191, 232, 0.40) 0%, rgba(168, 135, 208, 0.20) 100%);
  border: 0.5px solid rgba(149, 117, 205, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.hp-preview-empty-icon i {
  font-size: 38px;
  color: var(--hp-purple-deep);
}

.hp-preview-empty-title {
  font-family: var(--hp-font-base);
  font-size: 19px;
  font-weight: 700;
  color: var(--hp-text-primary);
  margin: 0;
  letter-spacing: -0.3px;
}

.hp-preview-empty-sub {
  font-family: var(--hp-font-base);
  font-size: 14px;
  color: var(--hp-text-secondary);
  margin: 8px auto 24px;
  line-height: 1.5;
  max-width: 300px;
}