/* =====================================================
   SiteAbbie — Global Styles
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&family=Poppins:wght@500;600;700;800&display=swap');

:root {
  --bg:          #06060d;
  --bg-card:     #0e0e18;
  --bg-card2:    #161622;
  --border:      #252535;
  --accent:      #e91e8c;
  --accent-dim:  #9b1060;
  --accent-glow: rgba(233, 30, 140, 0.25);
  --text:        #f0eef6;
  --text-muted:  #7b7893;
  --text-soft:   #a89fc0;
  --radius:      18px;
  --shadow:      0 8px 40px rgba(0,0,0,0.65);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Age Gate ──────────────────────────────────────────── */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 5, 10, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  animation: ageFadeIn 0.3s ease;
}
.age-gate-hide {
  animation: ageFadeOut 0.4s ease forwards;
}
@keyframes ageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes ageFadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}
.age-gate-box {
  background: var(--bg-card);
  border: 1px solid rgba(233,30,140,0.35);
  border-radius: 18px;
  padding: 44px 40px 40px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 60px rgba(233,30,140,0.15), 0 8px 40px rgba(0,0,0,0.6);
  animation: ageBoxIn 0.35s cubic-bezier(.22,.9,.36,1);
}
@keyframes ageBoxIn {
  from { transform: translateY(24px) scale(0.96); opacity: 0; }
  to   { transform: translateY(0)    scale(1);    opacity: 1; }
}
.age-gate-icon {
  margin-bottom: 14px;
  line-height: 1;
}
.age-gate-img {
  height: 120px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.age-gate-title {
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}
.age-gate-text {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 18px;
}
.age-gate-text strong { color: var(--accent); }
.age-gate-question {
  font-size: 1rem;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 26px;
}
.age-gate-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
}
.age-btn {
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s;
  letter-spacing: 0.02em;
}
.age-btn:hover { transform: translateY(-2px); }
.age-btn-yes {
  background: linear-gradient(135deg, var(--accent) 0%, #c2185b 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(233,30,140,0.35);
}
.age-btn-yes:hover { box-shadow: 0 6px 24px rgba(233,30,140,0.5); }
.age-btn-no {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border);
}
.age-btn-no:hover { color: var(--text); border-color: var(--text-dim); }

body {
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 90% 55% at 50% -5%,  rgba(180, 15, 95, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 70% 50% at 50% 95%,  rgba(120, 8, 75, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 35% at 20% 50%,  rgba(80, 0, 50, 0.10) 0%, transparent 55%);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 40% at 50% -10%, rgba(233,30,140,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 30% at 80% 110%, rgba(150,10,90,0.12) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ── Particles ─────────────────────────────────────── */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.particles span {
  position: absolute;
  bottom: -20px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(233, 30, 140, 0.25);
  animation: floatUp linear infinite;
}
.particles span:nth-child(1)  { left:  5%; width:4px; height:4px; animation-duration:18s; animation-delay: 0s; }
.particles span:nth-child(2)  { left: 12%; width:3px; height:3px; animation-duration:22s; animation-delay: 3s; background:rgba(180,20,100,0.2); }
.particles span:nth-child(3)  { left: 20%; width:5px; height:5px; animation-duration:16s; animation-delay: 6s; }
.particles span:nth-child(4)  { left: 28%; width:3px; height:3px; animation-duration:24s; animation-delay: 1s; background:rgba(233,30,140,0.15); }
.particles span:nth-child(5)  { left: 35%; width:6px; height:6px; animation-duration:20s; animation-delay: 9s; }
.particles span:nth-child(6)  { left: 43%; width:4px; height:4px; animation-duration:17s; animation-delay: 4s; background:rgba(160,10,80,0.2); }
.particles span:nth-child(7)  { left: 52%; width:3px; height:3px; animation-duration:25s; animation-delay: 7s; }
.particles span:nth-child(8)  { left: 60%; width:5px; height:5px; animation-duration:19s; animation-delay: 2s; background:rgba(233,30,140,0.18); }
.particles span:nth-child(9)  { left: 68%; width:4px; height:4px; animation-duration:23s; animation-delay: 5s; }
.particles span:nth-child(10) { left: 75%; width:3px; height:3px; animation-duration:21s; animation-delay:11s; background:rgba(200,20,110,0.2); }
.particles span:nth-child(11) { left: 82%; width:5px; height:5px; animation-duration:15s; animation-delay: 8s; }
.particles span:nth-child(12) { left: 88%; width:4px; height:4px; animation-duration:26s; animation-delay: 0s; background:rgba(233,30,140,0.12); }
.particles span:nth-child(13) { left: 93%; width:3px; height:3px; animation-duration:20s; animation-delay:13s; }
.particles span:nth-child(14) { left: 47%; width:6px; height:6px; animation-duration:18s; animation-delay:15s; background:rgba(180,20,100,0.15); }
.particles span:nth-child(15) { left: 55%; width:4px; height:4px; animation-duration:22s; animation-delay:10s; }

@keyframes floatUp {
  0%   { transform: translateY(0)   rotate(0deg);   opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-110vh) rotate(360deg); opacity: 0; }
}

/* ── Scrollbar ──────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent-dim); border-radius: 4px; }

/* ── Header ─────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,15,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 30px rgba(140,20,90,0.12);
}

.header-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: filter 0.3s, transform 0.3s;
}
.header-logo:hover {
  filter: drop-shadow(0 0 10px rgba(233,30,140,0.7)) brightness(1.1);
  transform: scale(1.04);
}
.header-logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── Dream Button ────────────────────────────────────── */
.btn-dream {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent) 0%, #c2185b 100%);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 10px 20px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 18px var(--accent-glow);
  transition: box-shadow 0.25s, transform 0.2s, filter 0.2s;
  white-space: nowrap;
}
.btn-dream:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(233,30,140,0.45);
  filter: brightness(1.1);
}
.btn-dream svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Layout ─────────────────────────────────────────── */
.page-layout {
  display: grid;
  grid-template-columns: 300px 680px 300px;
  gap: 32px;
  margin: 0 auto;
  padding: 40px 32px 80px;
  align-items: start;
  width: fit-content;
  max-width: 100%;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

.ad-spacer { /* coluna vazia à esquerda para espelhar a sidebar */ }

main {
  min-width: 0;
  width: 680px;
  max-width: 100%;
  box-sizing: border-box;
}

/* ── Ad Sidebar ──────────────────────────────────── */
.ad-sidebar {
  position: sticky;
  top: 80px;
}

.ad-label {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-align: center;
}

.ad-sidebar ins {
  border-radius: 12px;
  overflow: hidden;
  min-height: 250px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.ad-mock {
  border-radius: 12px;
  overflow: hidden;
  min-height: 250px;
  background: var(--bg-card);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ad-mock-inner {
  text-align: center;
  color: var(--text-muted);
}
.ad-mock-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  opacity: 0.4;
}
.ad-mock-text {
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  opacity: 0.4;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .page-layout {
    grid-template-columns: 1fr 300px;
    width: 100%;
    box-sizing: border-box;
  }
  .ad-spacer { display: none; }
}
@media (max-width: 860px) {
  .page-layout {
    display: block;
    width: 100%;
    padding: 24px 0 60px;
    box-sizing: border-box;
  }
  .ad-spacer { display: none; }
  .ad-sidebar {
    position: static;
    max-width: 100%;
    margin: 0;
    width: 100%;
  }
  main {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0 12px;
    box-sizing: border-box;
  }
}

.page-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 32px;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-shadow: 0 0 20px rgba(233,30,140,0.4);
}
.page-title::before,
.page-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border));
}
.page-title::before {
  background: linear-gradient(90deg, transparent, var(--border));
}
.page-title::after {
  background: linear-gradient(90deg, var(--border), transparent);
}

/* ── Creator Hero ────────────────────────────────────── */
.creator-hero {
  position: relative;
  z-index: 1;
  padding: 52px 20px 40px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(233,30,140,0.05) 0%, transparent 100%);
}
.creator-avatar-wrap {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 18px;
  padding: 3px;
  position: relative;
  background: linear-gradient(135deg, var(--accent), #6b0d3c);
  box-shadow: 0 0 32px rgba(233,30,140,0.35), 0 0 0 4px rgba(233,30,140,0.1);
}
.creator-avatar-wrap::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233,30,140,0.55), transparent 70%);
  filter: blur(14px);
  opacity: 0.7;
  z-index: -1;
  animation: haloBreath 3s ease-in-out infinite;
}
@keyframes haloBreath {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.12); }
}
.creator-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: var(--bg-card);
}
.creator-name {
  font-family: 'Poppins', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ffffff 30%, rgba(233,30,140,0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.creator-bio {
  font-size: 0.93rem;
  color: var(--text-soft);
  margin-bottom: 26px;
  letter-spacing: 0.2px;
}
.creator-stats {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 50px;
  padding: 12px 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
}
.creator-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.9px;
}
.creator-stat-divider {
  width: 1px;
  height: 30px;
  background: var(--border);
}

/* ── Loading / Empty state ──────────────────────────── */
.state-msg {
  text-align: center;
  padding: 60px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.state-msg .icon { font-size: 2.5rem; margin-bottom: 12px; }

.spinner {
  width: 32px; height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin: 60px auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Skeleton loading ───────────────────────────── */
@keyframes shimmer {
  0%   { background-position: -700px 0; }
  100% { background-position:  700px 0; }
}
.skeleton-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
}
.skel {
  background: linear-gradient(
    90deg,
    var(--bg-card2) 25%,
    rgba(255,255,255,0.04) 50%,
    var(--bg-card2) 75%
  );
  background-size: 700px 100%;
  animation: shimmer 1.5s infinite linear;
  border-radius: 6px;
}
.skel-media {
  width: 100%;
  height: 340px;
  border-radius: 0;
}
.skel-body {
  padding: 20px 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.skel-title  { height: 18px; width: 60%; }
.skel-desc   { height: 13px; width: 85%; }
.skel-desc2  { height: 13px; width: 55%; }
.skel-date   { height: 11px; width: 30%; margin-top: 4px; }
.skel-footer {
  border-top: 1px solid var(--border);
  padding: 14px 22px;
  display: flex;
  gap: 8px;
}
.skel-emoji  { height: 32px; width: 48px; border-radius: 20px; }

/* ── Post Card ──────────────────────────────────────── */
@keyframes cardIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.post-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.6);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  animation: cardIn 0.5s ease both;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.post-card::before {
  content: '';
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233,30,140,0.45), transparent);
  z-index: 1;
}
.post-card:hover {
  border-color: rgba(233,30,140,0.45);
  box-shadow: 0 16px 56px rgba(0,0,0,0.8), 0 0 40px rgba(160,20,100,0.22);
  transform: translateY(-5px);
}

/* Post media */
.post-media {
  position: relative;
  width: 100%;
  background: #0d0d14;
  overflow: hidden;
  display: block;
  text-align: center;
  font-size: 0; /* remove inline gap */
}
.post-media img,
.post-media video {
  width: 100%;
  display: block;
  max-height: 560px;
  object-fit: contain;
}
.post-media img { cursor: zoom-in; }
.post-media video { background: #000; }
.post-media img { user-select: none; -webkit-user-drag: none; }

/* ── Lightbox ───────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(3, 2, 8, 0.95);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  animation: ageFadeIn 0.25s ease;
  cursor: zoom-out;
}
.lightbox.open {
  display: flex;
}
.lightbox-img {
  max-width: 94vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 0 80px rgba(233,30,140,0.2), 0 20px 60px rgba(0,0,0,0.8);
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(30,20,40,0.85);
  border: 1px solid rgba(233,30,140,0.4);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 1.1rem;
  color: #f0c0d8;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, transform 0.15s;
  z-index: 10001;
}
.lightbox-close:hover {
  background: rgba(233,30,140,0.25);
  transform: scale(1.1);
}

/* ── Expand / Fullscreen buttons ───────────────────── */
.expand-btn,
.fullscreen-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 3;
  background: rgba(10, 6, 20, 0.75);
  border: 1px solid rgba(233,30,140,0.4);
  border-radius: 8px;
  width: 34px;
  height: 34px;
  font-size: 1rem;
  color: #f0c0d8;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s, background 0.15s, transform 0.15s;
  backdrop-filter: blur(4px);
}
.post-media:hover .expand-btn,
.video-wrap:hover .fullscreen-btn {
  opacity: 1;
}
.expand-btn:hover,
.fullscreen-btn:hover {
  background: rgba(233,30,140,0.3);
  transform: scale(1.08);
}

/* ── Gothic video player ───────────────────────────── */
.video-wrap {
  position: relative;
  cursor: pointer;
  width: 100%;
  display: block;
  overflow: hidden;
  margin: 0 auto;
}
.video-wrap video {
  pointer-events: none; /* clicks go to overlay */
  width: 100%;
  display: block;
  margin: 0;
}
.gothic-btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.gothic-btn:hover {
  background: rgba(0, 0, 0, 0.15);
}
.gothic-btn .goth-play,
.gothic-btn .goth-pause {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  font-size: 1.6rem;
  color: #f0c0d8;
  background: rgba(10, 6, 20, 0.78);
  border: 2px solid rgba(236, 72, 153, 0.6);
  box-shadow:
    0 0 0 4px rgba(100, 0, 60, 0.3),
    0 0 18px rgba(236, 72, 153, 0.35),
    inset 0 0 10px rgba(200, 50, 120, 0.15);
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s, opacity 0.2s;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(236, 72, 153, 0.8);
  backdrop-filter: blur(4px);
  position: absolute;
}
/* Decorative corner thorns */
.gothic-btn .goth-play::before,
.gothic-btn .goth-pause::before {
  content: '';
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(180, 40, 100, 0.25);
  transform: scale(1.35);
}
.gothic-btn:hover .goth-play,
.gothic-btn:hover .goth-pause {
  transform: scale(1.1);
  border-color: rgba(236, 72, 153, 1);
  box-shadow:
    0 0 0 4px rgba(120, 0, 80, 0.4),
    0 0 28px rgba(236, 72, 153, 0.6),
    inset 0 0 14px rgba(236, 72, 153, 0.25);
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow:
      0 0 0 4px rgba(100, 0, 60, 0.3),
      0 0 18px rgba(236, 72, 153, 0.35),
      inset 0 0 10px rgba(200, 50, 120, 0.15);
  }
  50% {
    box-shadow:
      0 0 0 7px rgba(130, 0, 80, 0.35),
      0 0 34px rgba(236, 72, 153, 0.65),
      inset 0 0 16px rgba(220, 60, 130, 0.28);
  }
}

/* Default: show play, hide pause */
.gothic-btn .goth-pause { display: none; }
.gothic-btn .goth-play  { animation: pulseGlow 2.5s ease-in-out infinite; }

/* Playing: hide play, show pause only on hover */
.gothic-btn.playing .goth-play  { display: none; }
.gothic-btn.playing .goth-pause { display: flex; opacity: 0; }
.gothic-btn.playing:hover .goth-pause { opacity: 1; }

/* Post body */
.post-body {
  padding: 20px 22px 16px;
}

.post-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.35;
}

.post-desc {
  font-size: 0.93rem;
  color: var(--text-soft);
  line-height: 1.6;
  white-space: pre-wrap;
}

.post-date {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── Comments ───────────────────────────────────────── */
.post-comments {
  border-top: 1px solid var(--border);
  padding: 16px 22px 18px;
}

.comments-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.comment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 24px;
  margin-bottom: 14px;
}

.comment-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 1.15rem;
  line-height: 1;
  animation: pop 0.2s ease;
  cursor: default;
  user-select: none;
}
.comment-count {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-soft);
  min-width: 10px;
}
@keyframes pop {
  0%   { transform: scale(0.4); opacity: 0; }
  70%  { transform: scale(1.25); }
  100% { transform: scale(1); opacity: 1; }
}

/* Emoji picker */
.emoji-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.emoji-btn {
  font-size: 1.4rem;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 5px 8px;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s, border-color 0.15s;
  line-height: 1;
}
.emoji-btn:hover {
  background: #22222e;
  border-color: var(--accent);
  transform: scale(1.18);
}
.emoji-btn:active { transform: scale(0.95); }
.emoji-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
  pointer-events: none;
}
.emoji-btn.reacted {
  opacity: 1 !important;
  cursor: pointer;
  background: rgba(236, 72, 153, 0.15);
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.4);
  transform: scale(1.1);
}

/* ── Media badge ─────────────────────────────────── */
.media-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(10, 6, 20, 0.82);
  border: 1px solid rgba(233,30,140,0.45);
  border-radius: 20px;
  padding: 4px 11px;
  font-size: 0.72rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #f0c0d8;
  letter-spacing: 0.5px;
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
}

/* ── Sidebar support card ──────────────────────────── */
.support-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(233,30,140,0.25);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5), 0 0 40px rgba(233,30,140,0.06);
}
.support-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  margin: 0 auto 12px;
  padding: 2px;
  background: linear-gradient(135deg, var(--accent), #6b0d3c);
  box-shadow: 0 0 16px rgba(233,30,140,0.3);
}
.support-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: var(--bg-card);
}
.support-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.support-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.5;
}
.btn-support {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: 100%;
  justify-content: center;
  padding: 11px 18px;
  background: linear-gradient(135deg, var(--accent) 0%, #c2185b 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(233,30,140,0.35);
  transition: transform 0.18s, box-shadow 0.18s, filter 0.18s;
  letter-spacing: 0.3px;
}
.btn-support:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(233,30,140,0.55);
  filter: brightness(1.08);
}

/* ── Admin Page ─────────────────────────────────────── */
.admin-wrap {
  max-width: 620px;
  margin: 0 auto;
  padding: 48px 16px 80px;
}

.admin-header {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.admin-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 8px;
}
.form-input,
.form-textarea {
  width: 100%;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-textarea { min-height: 110px; }

/* file drop zone */
.drop-zone {
  border: 2px dashed var(--border);
  border-radius: 10px;
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: var(--bg-card2);
  position: relative;
}
.drop-zone:hover,
.drop-zone.drag-over {
  border-color: var(--accent);
  background: rgba(233,30,140,0.05);
}
.drop-zone input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.drop-zone-icon { font-size: 2rem; margin-bottom: 8px; }
.drop-zone-text { font-size: 0.88rem; color: var(--text-muted); }
.drop-zone-text strong { color: var(--accent); }

/* file preview */
.file-preview {
  margin-top: 12px;
  display: none;
}
.file-preview img,
.file-preview video {
  max-height: 260px;
  border-radius: 8px;
  border: 1px solid var(--border);
  width: 100%;
  object-fit: contain;
  background: #000;
}

/* Submit button */
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--accent) 0%, #c2185b 100%);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 18px var(--accent-glow);
  transition: filter 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-top: 8px;
}
.btn-submit:hover:not(:disabled) {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(233,30,140,0.45);
}
.btn-submit:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

/* Progress bar */
.upload-progress {
  width: 100%;
  height: 6px;
  background: var(--border);
  border-radius: 4px;
  margin-top: 14px;
  overflow: hidden;
  display: none;
}
.upload-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #c2185b);
  border-radius: 4px;
  transition: width 0.15s;
  width: 0%;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 12px 22px;
  font-size: 0.9rem;
  color: var(--text);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 999;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast.success { border-color: var(--accent); color: var(--accent); }
.toast.error { border-color: #e53935; color: #ef9a9a; }

/* Posts list in admin */
.admin-posts { margin-top: 40px; }
.admin-posts-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--text-soft);
}
.admin-post-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 10px;
}
.admin-post-thumb {
  width: 56px; height: 56px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  background: #000;
}
.admin-post-info {
  flex: 1;
  min-width: 0;
}
.admin-post-name {
  font-weight: 600;
  font-size: 0.93rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-post-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 3px;
}
.btn-delete {
  background: transparent;
  border: 1px solid #3a2020;
  border-radius: 6px;
  color: #e57373;
  font-size: 0.8rem;
  padding: 6px 12px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  flex-shrink: 0;
}
.btn-delete:hover { background: #2a1010; border-color: #e53935; }

/* ── Responsive ─────────────────────────────────────── */

/* Tablet: remove espaçador, posts + sidebar em 2 colunas */
@media (max-width: 1100px) {
  .page-layout {
    grid-template-columns: 1fr 280px;
    padding: 32px 20px 60px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .ad-spacer { display: none; }
}

/* Mobile: sem grid, tudo em bloco */
@media (max-width: 860px) {
  .page-layout {
    display: block;
    padding: 24px 0 60px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .ad-spacer { display: none; }
  .ad-sidebar {
    position: static;
    max-width: 100%;
    margin: 0 0 24px 0;
    width: 100%;
    padding: 0 12px;
    box-sizing: border-box;
  }
  main {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0 12px;
    box-sizing: border-box;
  }
  .post-media img { max-height: 420px; object-fit: contain; }
  .post-media video { max-height: 420px; object-fit: contain; }
}

/* Mobile */
@media (max-width: 600px) {
  header { padding: 0 14px; height: 56px; }
  .header-logo { font-size: 1.15rem; }
  .header-logo-img { height: 28px; }
  .btn-dream {
    font-size: 0.72rem;
    padding: 7px 11px;
    gap: 5px;
    white-space: nowrap;
  }
  .btn-dream svg { width: 13px; height: 13px; }

  .page-layout { padding: 16px 0 50px; }
  main { padding: 0 10px; }

  .creator-hero { padding: 32px 16px 28px; }
  .creator-avatar-wrap { width: 76px; height: 76px; }
  .creator-name { font-size: 1.55rem; }
  .creator-stats { padding: 10px 22px; gap: 20px; }

  .page-title { font-size: 0.95rem; margin-bottom: 20px; }

  .post-card { margin-bottom: 18px; border-radius: 10px; }
  .post-media { display: block; }
  .post-media img { max-height: 320px; object-fit: contain; }
  .post-media video { max-height: 320px; object-fit: contain; }

  .post-body { padding: 14px 14px 12px; }
  .post-title { font-size: 1.05rem; }
  .post-desc  { font-size: 0.88rem; }

  .post-comments { padding: 12px 14px 14px; }
  .emoji-picker { gap: 4px; }
  .emoji-btn { font-size: 1.15rem; padding: 4px 6px; }

  .gothic-btn .goth-play,
  .gothic-btn .goth-pause { width: 48px; height: 48px; font-size: 1.2rem; }

  .comment-item { font-size: 1rem; padding: 3px 8px; }

  .admin-wrap { padding: 24px 12px 50px; }
  .form-card  { padding: 18px; }

  .ad-mock { min-height: 150px; }
}

@media (hover: none) {
  .expand-btn, .fullscreen-btn { opacity: 0.8; }
}

/* Mobile muito pequeno */
@media (max-width: 380px) {
  .btn-dream span { display: none; } /* esconde texto, mostra só o ícone */
  .btn-dream { padding: 8px 10px; border-radius: 50%; }
}
