/* ═══════════════════════════════════════════════════════════
   REELFLOW — PAGES / TEMPLATE MOCKS
   ═══════════════════════════════════════════════════════════ */

/* ── Template mock previews ──────────────────── */
.template-mock {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  position: relative;
  overflow: hidden;
}

/* Hook + Reveal */
.mock-hook {
  flex-direction: column;
  gap: 4px;
  background: #0d0d0d;
}
.mock-text-top { font-size: 11px; color: white; letter-spacing: 0.02em; }
.mock-cut { font-size: 16px; color: var(--accent); }
.mock-reveal { font-size: 11px; color: var(--ig-3); }

/* Kinetic subs */
.mock-kinetic {
  flex-direction: column;
  gap: 2px;
  background: #111;
}
.mock-word { font-size: 13px; letter-spacing: 0.05em; line-height: 1; }
.mock-w1 { color: white; font-size: 16px; }
.mock-w2 { color: var(--accent); font-size: 12px; }
.mock-w3 { color: var(--text-2); font-size: 10px; }

/* Split screen */
.mock-split { flex-direction: column; width: 100%; }
.mock-top-half {
  flex: 1;
  background: #1a1a2e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--text-muted);
  width: 100%;
}
.mock-bottom-half {
  flex: 1;
  background: #0f0f1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--text-2);
  width: 100%;
  font-family: var(--font-body);
}

/* Minimal */
.mock-minimal { background: #f5f5f0; }
.mock-minimal-text {
  font-size: 14px;
  font-weight: 300;
  color: #111;
  font-family: var(--font-body);
  text-align: center;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

/* Before/After */
.mock-before-after { gap: 0; background: #0d0d0d; }
.mock-before { font-size: 11px; color: var(--danger); flex: 1; text-align: center; }
.mock-divider { color: var(--border-hover); font-size: 24px; font-weight: 100; }
.mock-after  { font-size: 11px; color: var(--success); flex: 1; text-align: center; }

/* Slideshow */
.mock-slideshow { gap: 4px; background: #111; }
.mock-slide {
  width: 28px;
  height: 42px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.mock-s1 { background: var(--ig-gradient, #e6683c); color: white; transform: rotate(-5deg); }
.mock-s2 { background: var(--accent); color: white; }
.mock-s3 { background: var(--ig-3); color: white; transform: rotate(5deg); }

/* Countdown */
.mock-countdown { flex-direction: column; background: #0a0a0a; }
.mock-count { font-size: 40px; color: var(--accent); line-height: 1; }
.mock-count-label { font-size: 9px; color: var(--text-2); font-family: var(--font-body); margin-top: 4px; }

/* Zoom text */
.mock-zoom { background: #000; }
.mock-zoom-text {
  font-size: 32px;
  color: white;
  letter-spacing: -0.04em;
  text-shadow: 0 0 20px rgba(124,109,250,0.8);
}

/* Duet */
.mock-duet { gap: 1px; background: #111; }
.mock-duet-left, .mock-duet-right {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: var(--text-muted);
}
.mock-duet-left { background: #1a1a2e; }
.mock-duet-right { background: #1a0a0a; }

/* POV/Trending font */
.mock-trending { flex-direction: column; background: #0d0d0d; gap: 4px; }
.mock-tf-text { font-size: 24px; color: white; font-family: var(--font-display); }
.mock-tf-sub { font-size: 9px; color: var(--text-2); font-family: var(--font-body); }

/* Glitch */
.mock-glitch { background: #000; }
.mock-glitch-text {
  font-size: 22px;
  color: white;
  text-shadow: 2px 0 var(--accent), -2px 0 var(--ig-3);
  animation: glitch 1.5s infinite;
}
@keyframes glitch {
  0%, 90%, 100% { text-shadow: 2px 0 var(--accent), -2px 0 var(--ig-3); }
  92% { text-shadow: -3px 0 var(--accent), 3px 0 var(--ig-3); clip-path: inset(30% 0 40% 0); }
  94% { text-shadow: 3px 0 var(--accent), -3px 0 var(--ig-3); clip-path: inset(60% 0 10% 0); }
}

/* Square */
.mock-square { background: #111; flex-direction: column; }
.mock-square-inner {
  width: 56px;
  height: 56px;
  border: 2px solid var(--accent);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--accent);
}

/* Landscape */
.mock-landscape {
  background: linear-gradient(90deg, #0d0d1f, #1a1a2e);
  width: 100%;
}
.mock-landscape-text { font-size: 18px; color: var(--text-muted); letter-spacing: 0.1em; }

/* Gradient overlay */
.mock-gradient-overlay {
  background: linear-gradient(180deg, #1a1a2e 0%, #0d0d0d 100%);
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 12px;
}
.mock-grad-text {
  font-size: 9px;
  color: white;
  font-family: var(--font-body);
  font-weight: 600;
  text-align: center;
}

/* Story style */
.mock-story { flex-direction: column; gap: 6px; background: #0d0d0d; justify-content: flex-start; padding-top: 12px; }
.mock-story-bar {
  width: 70%;
  height: 2px;
  background: white;
  border-radius: 2px;
}
.mock-story-icon { font-size: 16px; color: white; }
.mock-story-text { font-size: 9px; color: var(--text-2); font-family: var(--font-body); }

/* ── Activity list ───────────────────────────── */
.activity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.activity-item:last-child { border-bottom: none; }
.activity-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--accent);
  flex-shrink: 0;
}
.activity-text { flex: 1; color: var(--text-2); }
.activity-time { font-size: 11px; color: var(--text-muted); }

/* ── Accounts preview (dashboard) ────────────── */
.account-preview-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.account-preview-item:last-child { border-bottom: none; }
.platform-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.platform-dot.ig { background: linear-gradient(var(--ig-3), var(--ig-5)); }
