/* Futuristic styling */
body .prf-floating { position: fixed; bottom: 22px; z-index: 999999; }
.prf-floating.prf-right { right: 22px; }
.prf-floating.prf-left { left: 22px; }

.prf-icon { width:64px; height:64px; border-radius:50%; background:linear-gradient(135deg,#00e5ff,#8a2be2); display:flex; align-items:center; justify-content:center; box-shadow: 0 8px 30px rgba(0,0,0,0.5); cursor:pointer; }
.prf-icon:after { content:''; width:28px; height:28px; background:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="white" d="M12 3C7 3 3 6 3 10c0 1.9.9 3.7 2.5 4.9L5 21l6.1-2.6C12.7 18.6 13.3 18.7 14 19c5 0 9-3 9-7s-4-9-11-9z"/></svg>') center/contain no-repeat; display:block; }

.prf-badge { position:absolute; top:-8px; right:-8px; background:#ff4d6d; color:#fff; min-width:22px; height:22px; border-radius:12px; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:12px; box-shadow:0 6px 18px rgba(255,77,109,0.25); }

.prf-modal { position:fixed; inset:0; display:none; z-index:999998; align-items:center; justify-content:center; }
.prf-modal[aria-hidden="false"] { display:flex; }
.prf-modal-inner { width:100%; max-width:760px; max-height:90vh; overflow:auto; background:rgba(6,6,10,0.96); color:#fff; border-radius:14px; padding:18px; box-shadow:0 30px 80px rgba(0,0,0,0.6); }

.prf-header { display:flex; gap:12px; align-items:center; justify-content:space-between; }
.prf-close { background:transparent; color:#fff; border:1px solid rgba(255,255,255,0.06); padding:6px 10px; border-radius:8px; cursor:pointer; }

.prf-top { margin-bottom:12px; }
.prf-total-energy { font-weight:800; font-size:18px; text-align:center; margin-bottom:8px; }

.prf-post-area input, .prf-post-area textarea { width:100%; padding:10px; border-radius:8px; margin-bottom:8px; border:1px solid rgba(255,255,255,0.04); background:transparent; color:#fff; }
.prf-submit { padding:10px 14px; border-radius:10px; background:linear-gradient(90deg,#00e5ff,#8a2be2); border:none; cursor:pointer; color:#fff; }

.prf-feed .prf-item { padding:12px; border-radius:10px; margin-bottom:10px; background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); border:1px solid rgba(255,255,255,0.03); }
.prf-actions { display:flex; gap:10px; margin-top:8px; }
.prf-btn { padding:8px 10px; border-radius:8px; background:rgba(255,255,255,0.02); cursor:pointer; display:flex; flex-direction:column; align-items:center; min-width:88px; }
.prf-btn .count { font-weight:800; font-size:16px; }
.prf-btn .label { font-size:12px; opacity:0.9; margin-top:4px; text-align:center; }

/* animations */
@keyframes pulse { 0%{ transform:scale(1); opacity:0.9 } 50%{ transform:scale(1.06); opacity:1 } 100%{ transform:scale(1); opacity:0.9 } }
.prf-icon { animation: pulse 3s infinite; }
.prf-top .orb { width:12px; height:12px; border-radius:50%; position:absolute; opacity:0.9; animation: float 6s infinite; }
@keyframes float { 0%{ transform:translateY(0) } 50%{ transform:translateY(-12px) } 100%{ transform:translateY(0) } }

/* responsive modal full screen on mobile */
@media(max-width:600px){
  .prf-modal-inner { width:100%; height:100%; border-radius:0; max-height:100vh; padding:12px; }
  .prf-icon { width:56px; height:56px; }
}
