/* ========================================
   FIVM.PRO — User Profile Styles
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Onest:wght@300;400;500;600;700&display=swap');

:root{
  --bg:#0a0a0f;--card:#12121a;--card2:#161622;
  --accent:#3b82f6;--accent2:#6366f1;--accent-glow:rgba(59,130,246,.15);
  --text:#f0f0f0;--text2:#a0a0b0;--text3:#555;
  --border:rgba(255,255,255,.06);--radius:14px;
  --online:#22c55e;--idle:#eab308;--dnd:#ef4444;--offline:#666;
}
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:'Onest',sans-serif;background:var(--bg);color:var(--text);line-height:1.6;overflow-x:hidden}
a{text-decoration:none;color:inherit;transition:all .25s ease}
button{cursor:pointer;border:none;outline:none;font-family:inherit}
::-webkit-scrollbar{width:5px}
::-webkit-scrollbar-thumb{background:var(--accent);border-radius:10px}

/* === SPLASH INTRO === */
.splash{
  position:fixed;inset:0;z-index:9999;background:#050508;
  display:flex;align-items:center;justify-content:center;
  transition:opacity .8s ease,visibility .8s ease;
}
.splash.hide{opacity:0;visibility:hidden;pointer-events:none}
.splash canvas{position:absolute;inset:0;z-index:0}
.splash__gradient{
  position:absolute;inset:0;z-index:1;pointer-events:none;
  background:radial-gradient(ellipse at center,rgba(59,130,246,.06) 0%,transparent 60%);
}
.splash__content{position:relative;z-index:2;text-align:center}
.splash__logo{
  font-size:clamp(3rem,8vw,5rem);font-weight:700;
  margin-bottom:1rem;letter-spacing:-.02em;
  animation:logo-in 1.2s ease both;
}
.splash__f{color:#f0f0f0;display:inline-block;animation:letter-slide 1s ease both}
.splash__tagline{
  font-size:clamp(.85rem,2vw,1.1rem);color:rgba(255,255,255,.35);
  font-weight:300;letter-spacing:.15em;text-transform:uppercase;
  margin-bottom:3rem;animation:fade-up 1s .5s ease both;
}
.splash__enter{
  position:relative;display:inline-flex;align-items:center;justify-content:center;
  padding:1rem 3rem;border-radius:50px;
  background:transparent;border:1px solid rgba(59,130,246,.3);
  color:#fff;font-size:1rem;font-weight:500;letter-spacing:.05em;
  animation:fade-up 1s .8s ease both;overflow:hidden;
}
.splash__enter:hover{border-color:var(--accent);background:rgba(59,130,246,.08)}
.splash__enter span{position:relative;z-index:1}
.splash__enter-ring{
  position:absolute;inset:-4px;border-radius:50px;
  border:2px solid transparent;border-top-color:var(--accent);
  animation:ring-spin 2s linear infinite;
}
@keyframes letter-slide{from{opacity:0;transform:translateY(30px);filter:blur(8px)}to{opacity:1;transform:translateY(0);filter:blur(0)}}
@keyframes fade-up{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
@keyframes ring-spin{to{transform:rotate(360deg)}}
@keyframes logo-in{from{opacity:0;transform:scale(.8);filter:blur(10px)}to{opacity:1;transform:scale(1);filter:blur(0)}}

/* === BANNER === */
.banner{
  width:100%;height:280px;position:relative;overflow:hidden;
  background:linear-gradient(135deg,#0f172a 0%,#1e1b4b 50%,#0f172a 100%);
}
.banner__video{
  position:absolute;top:50%;left:50%;width:180%;height:180%;
  transform:translate(-50%,-50%);pointer-events:none;opacity:.5;
}
.banner.video-off .banner__video{display:none}
.banner__img{width:100%;height:100%;object-fit:cover;opacity:.6}
.banner__overlay{position:absolute;inset:0;background:linear-gradient(180deg,transparent 40%,var(--bg) 100%);z-index:1}
.banner__toggle{
  position:absolute;top:1rem;right:1rem;z-index:2;
  width:36px;height:36px;border-radius:50%;
  background:rgba(0,0,0,.5);backdrop-filter:blur(6px);
  border:1px solid rgba(255,255,255,.1);color:#fff;
  display:flex;align-items:center;justify-content:center;
  transition:all .25s;cursor:pointer;
}
.banner__toggle:hover{background:rgba(59,130,246,.3);border-color:var(--accent)}

/* === PROFILE HEADER === */
.profile-header{
  max-width:900px;margin:-80px auto 0;padding:0 1.5rem;position:relative;z-index:2;
  display:flex;align-items:flex-end;gap:1.5rem;
}
.profile-avatar{
  width:120px;height:120px;border-radius:50%;
  border:4px solid var(--bg);position:relative;flex-shrink:0;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  box-shadow:0 0 30px var(--accent-glow);
}
.profile-avatar img{width:100%;height:100%;border-radius:50%;object-fit:cover}
.profile-avatar__status{
  position:absolute;bottom:6px;right:6px;width:18px;height:18px;
  border-radius:50%;border:3px solid var(--bg);
}
.profile-avatar__status--online{background:var(--online)}
.profile-avatar__status--idle{background:var(--idle)}
.profile-avatar__status--dnd{background:var(--dnd)}
.profile-avatar__status--offline{background:var(--offline)}
.profile-info{padding-bottom:.5rem}
.profile-info h1{font-size:1.8rem;font-weight:700;display:flex;align-items:center;gap:.5rem}
.profile-info h1 .badge{
  font-size:.6rem;padding:.2rem .5rem;border-radius:4px;font-weight:600;
  background:linear-gradient(135deg,var(--accent),var(--accent2));color:#fff;
  text-transform:uppercase;letter-spacing:.05em;
}
.profile-info__bio{color:var(--text2);font-size:.9rem;margin-top:.3rem;font-weight:300}
.profile-info__meta{display:flex;gap:1rem;margin-top:.4rem}
.profile-info__meta span{font-size:.78rem;color:var(--text3);display:flex;align-items:center;gap:.3rem}
.profile-info__meta svg{width:14px;height:14px}

/* === HEART === */
.heart-section{
  max-width:900px;margin:1rem auto;padding:0 1.5rem;
  display:flex;align-items:center;gap:1rem;
}
.heart-btn{
  display:flex;align-items:center;gap:.4rem;
  padding:.5rem 1.2rem;background:var(--card);border:1px solid var(--border);
  border-radius:20px;color:var(--text2);font-size:.85rem;transition:all .25s;
}
.heart-btn:hover{border-color:#ef4444;color:#ef4444;background:rgba(239,68,68,.06)}
.heart-btn.liked{border-color:#ef4444;color:#ef4444}
.heart-btn svg{width:16px;height:16px;transition:transform .3s}
.heart-btn:hover svg{transform:scale(1.2)}
.heart-count{font-size:.85rem;color:var(--text3)}
.profile-actions{margin-left:auto;display:flex;gap:.5rem}
.profile-actions button{
  padding:.5rem 1rem;border-radius:10px;font-size:.82rem;font-weight:500;
}
.profile-actions .btn-share{background:var(--card);border:1px solid var(--border);color:var(--text2)}
.profile-actions .btn-share:hover{border-color:var(--accent);color:var(--accent)}

/* === INLINE SOCIAL ICONS === */
.social-inline{display:flex;align-items:center;gap:.3rem}
.si{
  width:34px;height:34px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  background:var(--card);border:1px solid var(--border);transition:all .25s;
}
.si svg{width:16px;height:16px}
.si:hover{transform:translateY(-3px);border-color:var(--accent);box-shadow:0 4px 15px rgba(59,130,246,.2)}
.si--discord:hover{border-color:#5865f2;box-shadow:0 4px 15px rgba(88,101,242,.3)}
.si--discord svg{color:#5865f2}
.si--twitter:hover{border-color:#1d9bf0;box-shadow:0 4px 15px rgba(29,155,240,.3)}
.si--twitter svg{color:#1d9bf0}
.si--instagram:hover{border-color:#e4405f;box-shadow:0 4px 15px rgba(228,64,95,.3)}
.si--instagram svg{color:#e4405f}
.si--youtube:hover{border-color:#ff0000;box-shadow:0 4px 15px rgba(255,0,0,.3)}
.si--youtube svg{color:#ff0000}
.si--github:hover{border-color:#f0f0f0;box-shadow:0 4px 15px rgba(255,255,255,.15)}
.si--github svg{color:#f0f0f0}
.si--spotify:hover{border-color:#1db954;box-shadow:0 4px 15px rgba(29,185,84,.3)}
.si--spotify svg{color:#1db954}

/* === ANNOUNCE BAR === */
.announce-bar{
  max-width:900px;margin:.8rem auto;
  display:flex;align-items:center;gap:.8rem;
  padding:.7rem 1.2rem;background:var(--card);border:1px solid var(--border);
  border-radius:var(--radius);overflow:hidden;position:relative;
}
.announce-bar__icon{font-size:1.1rem;flex-shrink:0;z-index:1}
.announce-bar__text{
  font-size:.82rem;color:var(--text2);white-space:nowrap;
  display:inline-block;padding-left:100%;
  animation:ticker 25s linear infinite;
}
.announce-bar__text strong{color:var(--text)}
@keyframes ticker{0%{transform:translateX(0)}100%{transform:translateX(-100%)}}

/* === LAYOUT === */
.profile-layout{
  max-width:900px;margin:1.5rem auto 3rem;padding:0 1.5rem;
  display:grid;grid-template-columns:320px 1fr;gap:1.2rem;
}

/* === CARD === */
.p-card{
  background:var(--card);border:1px solid var(--border);
  border-radius:var(--radius);padding:1.3rem;margin-bottom:1.2rem;
  transition:border-color .25s;
}
.p-card:hover{border-color:rgba(59,130,246,.15)}
.p-card__title{
  font-size:.85rem;font-weight:600;margin-bottom:.8rem;
  display:flex;align-items:center;gap:.5rem;
  text-transform:uppercase;letter-spacing:.04em;color:var(--text2);
}
.p-card__title svg{width:16px;height:16px;color:var(--accent)}

/* === ABOUT ME === */
.about-text{font-size:.88rem;color:var(--text2);line-height:1.7;font-weight:300}

/* === SKILLS === */
.skills-grid{display:flex;flex-wrap:wrap;gap:.4rem}
.skill-tag{
  padding:.35rem .8rem;background:var(--accent-glow);
  border:1px solid rgba(59,130,246,.2);border-radius:8px;
  font-size:.78rem;color:var(--accent);font-weight:500;
}

/* === DISCORD STATUS === */
.discord-status{display:flex;align-items:center;gap:.8rem}
.discord-status__avatar{
  width:40px;height:40px;border-radius:50%;position:relative;
  background:linear-gradient(135deg,#5865f2,#7c3aed);
}
.discord-status__avatar img{width:100%;height:100%;border-radius:50%;object-fit:cover}
.discord-status__dot{
  position:absolute;bottom:0;right:0;width:12px;height:12px;
  border-radius:50%;border:2px solid var(--card);
}
.discord-status__info{flex:1}
.discord-status__name{font-size:.88rem;font-weight:600}
.discord-status__activity{font-size:.78rem;color:var(--text3);display:flex;align-items:center;gap:.3rem}
.discord-status__activity .status-text{color:var(--online)}

/* === DISCORD SERVER === */
.dc-server{display:flex;flex-direction:column;gap:.8rem;padding:.8rem;background:var(--card2);border-radius:10px}
.dc-server-top{display:flex;align-items:center;gap:.8rem;}
.dc-server__icon{
  width:44px;height:44px;border-radius:12px;flex-shrink:0;
  background:linear-gradient(135deg,#5865f2,#7c3aed);
  display:flex;align-items:center;justify-content:center;
  font-weight:700;font-size:1rem;color:#fff;
}
.dc-server__info{flex:1}
.dc-server__name{font-size:.88rem;font-weight:600}
.dc-server__members{font-size:.72rem;color:var(--text3);display:flex;align-items:center;gap:.8rem}
.dc-server__members span{display:flex;align-items:center;gap:.25rem}
.dc-server__members .dot{width:7px;height:7px;border-radius:50%}
.dc-server__join{
  padding:.4rem .8rem;background:#5865f2;border-radius:6px;
  font-size:.78rem;font-weight:500;color:#fff;white-space:nowrap;
  text-align:center;
}
.dc-server__join:hover{background:#4752c4}

/* Widget Lists */
.dc-widget-lists{display:flex;flex-direction:column;gap:10px;margin-top:5px;max-height:220px;overflow-y:auto;padding-right:5px;}
.dc-widget-lists::-webkit-scrollbar{width:4px;}
.dc-widget-lists::-webkit-scrollbar-thumb{background:rgba(255,255,255,.1);border-radius:4px;}
.dc-widget-sec-title{font-size:.7rem;font-weight:700;color:var(--text3);text-transform:uppercase;margin-bottom:4px;}
.dc-widget-item{display:flex;align-items:center;gap:8px;font-size:.8rem;padding:4px 6px;border-radius:6px;background:rgba(255,255,255,.02);}
.dc-widget-item:hover{background:rgba(255,255,255,.05);}
.dc-widget-avatar{width:24px;height:24px;border-radius:50%;position:relative;flex-shrink:0;}
.dc-widget-avatar img{width:100%;height:100%;border-radius:50%;object-fit:cover;}
.dc-widget-status{position:absolute;bottom:0;right:-2px;width:8px;height:8px;border-radius:50%;border:2px solid var(--card2);}
.dc-widget-status.online{background:#22c55e;}
.dc-widget-status.idle{background:#eab308;}
.dc-widget-status.dnd{background:#ef4444;}


/* === SOCIAL LINKS === */
.socials-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:.5rem}
.social-link{
  display:flex;align-items:center;gap:.6rem;
  padding:.6rem .8rem;background:var(--card2);border-radius:10px;
  font-size:.82rem;color:var(--text2);transition:all .25s;
  border:1px solid transparent;
}
.social-link:hover{border-color:var(--accent);color:var(--text);transform:translateY(-2px)}
.social-link svg{width:18px;height:18px;flex-shrink:0}
.social-link--discord svg{color:#5865f2}
.social-link--twitter svg{color:#1d9bf0}
.social-link--instagram svg{color:#e4405f}
.social-link--youtube svg{color:#ff0000}
.social-link--github svg{color:#f0f0f0}
.social-link--tiktok svg{color:#ff0050}
.social-link--twitch svg{color:#9146ff}
.social-link--spotify svg{color:#1db954}
.social-link--steam svg{color:#66c0f4}
.social-link--telegram svg{color:#26a5e4}

/* === MUSIC === */
.music-player{
  display:flex;align-items:center;gap:.8rem;
  padding:.8rem;background:var(--card2);border-radius:12px;
}
.music-player__art{
  width:52px;height:52px;border-radius:8px;flex-shrink:0;overflow:hidden;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  position:relative;
}
.music-player__art img{width:100%;height:100%;object-fit:cover}
.music-player__art .eq-bars{
  position:absolute;bottom:4px;right:4px;display:flex;gap:2px;align-items:flex-end;
}
.music-player__art .eq-bar{
  width:3px;background:#fff;border-radius:1px;
  animation:eq .8s ease-in-out infinite alternate;
}
.eq-bar:nth-child(1){height:8px;animation-delay:0s}
.eq-bar:nth-child(2){height:14px;animation-delay:.2s}
.eq-bar:nth-child(3){height:6px;animation-delay:.4s}
.eq-bar:nth-child(4){height:12px;animation-delay:.1s}
@keyframes eq{0%{height:4px}100%{height:16px}}
.music-player__info{flex:1;min-width:0}
.music-player__title{font-size:.85rem;font-weight:600;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.music-player__artist{font-size:.75rem;color:var(--text3)}
.music-player__progress{
  height:3px;background:rgba(255,255,255,.08);border-radius:3px;margin-top:.5rem;overflow:hidden;
}
.music-player__progress-fill{height:100%;background:var(--accent);border-radius:3px;width:65%;transition:width .3s}
.music-player__time{font-size:.68rem;color:var(--text3);text-align:right;margin-top:.2rem}

/* Music Controls */
.music-controls{display:flex;align-items:center;gap:.4rem;margin-left:auto}
.mc-btn{
  width:28px;height:28px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.06);color:var(--text2);transition:all .2s;
}
.mc-btn:hover{background:rgba(59,130,246,.15);color:var(--accent)}
.mc-volume{
  width:60px;height:3px;-webkit-appearance:none;appearance:none;
  background:rgba(255,255,255,.1);border-radius:3px;outline:none;
}
.mc-volume::-webkit-slider-thumb{
  -webkit-appearance:none;width:10px;height:10px;border-radius:50%;
  background:var(--accent);cursor:pointer;
}

/* === GALLERY === */
.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:.5rem}
.gallery-item{
  aspect-ratio:1;border-radius:8px;overflow:hidden;cursor:pointer;
  position:relative;background:var(--card2);
}
.gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform .3s}
.gallery-item:hover img{transform:scale(1.08)}
.gallery-item__overlay{
  position:absolute;inset:0;background:rgba(0,0,0,.4);opacity:0;
  transition:opacity .3s;display:flex;align-items:center;justify-content:center;
}
.gallery-item:hover .gallery-item__overlay{opacity:1}
.gallery-item__overlay svg{width:24px;height:24px;color:#fff}

/* Lightbox */
.lightbox{
  position:fixed;inset:0;z-index:200;background:rgba(0,0,0,.9);
  display:none;align-items:center;justify-content:center;
  backdrop-filter:blur(10px);
}
.lightbox.active{display:flex}
.lightbox img{max-width:90vw;max-height:85vh;border-radius:12px;object-fit:contain}
.lightbox__close{
  position:absolute;top:1.5rem;right:1.5rem;
  background:rgba(255,255,255,.1);border:none;color:#fff;
  width:40px;height:40px;border-radius:50%;font-size:1.2rem;
  display:flex;align-items:center;justify-content:center;cursor:pointer;z-index:2;
}
.lightbox__arrow{
  position:absolute;top:50%;transform:translateY(-50%);z-index:2;
  width:44px;height:44px;border-radius:50%;border:none;
  background:rgba(255,255,255,.08);color:#fff;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;transition:all .25s;backdrop-filter:blur(4px);
}
.lightbox__arrow:hover{background:rgba(59,130,246,.3)}
.lightbox__prev{left:1.5rem}
.lightbox__next{right:1.5rem}
.lightbox__counter{
  position:absolute;bottom:1.5rem;left:50%;transform:translateX(-50%);
  font-size:.85rem;color:rgba(255,255,255,.5);z-index:2;
}

/* === NEWS / ANNOUNCEMENTS === */
.news-item{
  padding:.8rem;background:var(--card2);border-radius:10px;
  margin-bottom:.5rem;border-left:3px solid var(--accent);
}
.news-item__date{font-size:.68rem;color:var(--text3);margin-bottom:.3rem}
.news-item__title{font-size:.88rem;font-weight:600;margin-bottom:.2rem}
.news-item__text{font-size:.8rem;color:var(--text2);line-height:1.6;font-weight:300}

/* === FLOATING FEEDBACK FAB === */
.fb-fab{
  position:fixed;bottom:1.5rem;left:50%;transform:translateX(-50%);z-index:100;
  display:flex;align-items:center;gap:.6rem;
  padding:.7rem 1.8rem;border-radius:50px;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:#fff;font-size:.88rem;font-weight:600;
  box-shadow:0 4px 25px rgba(59,130,246,.4),0 0 60px rgba(99,102,241,.15);
  transition:all .3s;white-space:nowrap;
  animation:fab-glow 3s ease-in-out infinite;
}
.fb-fab svg{width:20px;height:20px}
.fb-fab:hover{transform:translateX(-50%) translateY(-3px);box-shadow:0 8px 35px rgba(59,130,246,.5)}
.fb-fab.hidden{transform:translateX(-50%) scale(0);opacity:0;pointer-events:none}
.fb-fab__badge{
  width:22px;height:22px;border-radius:50%;background:#ef4444;
  font-size:.7rem;font-weight:700;display:flex;align-items:center;justify-content:center;
  border:2px solid rgba(0,0,0,.3);animation:badge-pop 2s ease infinite;
}
@keyframes fab-glow{
  0%,100%{box-shadow:0 4px 25px rgba(59,130,246,.4),0 0 60px rgba(99,102,241,.1)}
  50%{box-shadow:0 4px 25px rgba(59,130,246,.6),0 0 80px rgba(99,102,241,.25)}
}
@keyframes badge-pop{0%,100%{transform:scale(1)}50%{transform:scale(1.15)}}

/* === FEEDBACK POPUP === */
.fb-popup{
  position:fixed;bottom:5rem;left:50%;z-index:101;
  width:400px;max-height:480px;margin-left:-200px;
  background:var(--card);border:1px solid var(--border);border-radius:16px;
  display:flex;flex-direction:column;overflow:hidden;
  transform:scale(0) translateY(30px);transform-origin:bottom center;
  opacity:0;transition:all .35s cubic-bezier(.4,0,.2,1);pointer-events:none;
  box-shadow:0 15px 50px rgba(0,0,0,.6),0 0 40px rgba(59,130,246,.1);
}
.fb-popup.open{transform:scale(1) translateY(0);opacity:1;pointer-events:all}
.fb-popup__head{
  display:flex;align-items:center;justify-content:space-between;
  padding:1rem 1.2rem;
  background:linear-gradient(135deg,rgba(59,130,246,.1),rgba(99,102,241,.08));
  border-bottom:1px solid var(--border);
}
.fb-popup__head span{font-size:.95rem;font-weight:600;display:flex;align-items:center;gap:.4rem}
.fb-popup__close{background:none;color:var(--text3);font-size:1.1rem;padding:4px;border-radius:6px;transition:all .2s}
.fb-popup__close:hover{color:var(--text);background:rgba(255,255,255,.06)}
.fb-popup__messages{
  flex:1;overflow-y:auto;padding:1rem;display:flex;flex-direction:column;gap:.6rem;
  max-height:300px;
}
.fb-popup__form{
  display:flex;gap:.5rem;padding:.8rem 1rem;border-top:1px solid var(--border);
  background:rgba(255,255,255,.02);
}
.fb-popup__form input{
  flex:1;padding:.6rem 1rem;background:var(--card2);
  border:1px solid var(--border);border-radius:10px;
  color:var(--text);font-family:inherit;font-size:.85rem;outline:none;
  transition:border-color .25s;
}
.fb-popup__form input:focus{border-color:var(--accent)}
.fb-popup__form input::placeholder{color:var(--text3)}
.fb-popup__form button{
  padding:.6rem .8rem;background:linear-gradient(135deg,var(--accent),var(--accent2));
  border-radius:10px;color:#fff;display:flex;align-items:center;justify-content:center;
  transition:all .2s;
}
.fb-popup__form button:hover{box-shadow:0 0 15px var(--accent-glow);transform:scale(1.05)}

.feedback-list{display:flex;flex-direction:column;gap:.5rem;margin-top:.8rem}
.feedback-item{
  padding:.7rem;background:var(--card2);border-radius:8px;
  display:flex;gap:.6rem;
}
.feedback-item__avatar{
  width:28px;height:28px;border-radius:50%;flex-shrink:0;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
}
.feedback-item__content{flex:1}
.feedback-item__name{font-size:.8rem;font-weight:600}
.feedback-item__text{font-size:.78rem;color:var(--text2);font-weight:300}
.feedback-item__date{font-size:.65rem;color:var(--text3);margin-top:.2rem}

/* === VIEWS COUNTER === */
.views-badge{
  display:flex;align-items:center;gap:.4rem;
  font-size:.78rem;color:var(--text3);
}
.views-badge svg{width:14px;height:14px}

/* === FOOTER === */
.profile-footer{
  text-align:center;padding:2rem 1rem;
  font-size:.75rem;color:var(--text3);
}
.profile-footer a{color:var(--accent)}
.profile-footer a:hover{text-decoration:underline}

/* === REVEAL ANIMATION === */
.p-reveal{opacity:0;transform:translateY(20px);transition:all .5s ease}
.p-reveal.visible{opacity:1;transform:translateY(0)}

/* === RESPONSIVE === */
@media(max-width:768px){
  .banner{height:200px}
  .profile-header{flex-direction:column;align-items:center;text-align:center;margin-top:-60px}
  .profile-avatar{width:100px;height:100px}
  .profile-info__meta{justify-content:center}
  .heart-section{flex-direction:column;align-items:stretch}
  .social-inline{justify-content:center}
  .profile-actions{margin-left:0;justify-content:center}
  .profile-layout{grid-template-columns:1fr}
  .gallery-grid{grid-template-columns:repeat(2,1fr)}
  .fb-popup{width:calc(100% - 2rem);left:50%;margin-left:calc(-50% + 1rem);bottom:4.5rem}
}
@media(max-width:480px){
  .gallery-grid{grid-template-columns:repeat(2,1fr)}
  .profile-header{gap:1rem}
}
