*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{--text:#fff;--text-muted:rgba(255,255,255,.7)}
html,body{height:100%;overflow-x:hidden}
body{font-family:'Inter',system-ui,sans-serif;color:var(--text);-webkit-font-smoothing:antialiased}

/* Full-screen background */
.profile-bg{position:fixed;inset:0;z-index:0}
.bg-media{width:100%;height:100%;object-fit:cover}
.bg-overlay{position:absolute;inset:0;background:rgba(0,0,0,.45);backdrop-filter:blur(2px)}

/* Content */
.profile-container{position:relative;z-index:1;min-height:100vh;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:40px 20px;max-width:480px;margin:0 auto}

/* Header */
.profile-header{text-align:center;margin-bottom:32px}
.profile-avatar{width:100px;height:100px;border-radius:50%;border:3px solid rgba(255,255,255,.4);object-fit:cover;margin-bottom:12px;box-shadow:0 8px 32px rgba(0,0,0,.3)}
.profile-name{font-size:26px;font-weight:800;margin-bottom:4px;text-shadow:0 2px 8px rgba(0,0,0,.5)}
.profile-location{font-size:14px;color:var(--text-muted)}
.profile-location i{margin-right:4px}

/* Buttons */
.profile-buttons{width:100%;display:flex;flex-direction:column;gap:12px;margin-bottom:24px}
.profile-btn{display:flex;align-items:center;justify-content:space-between;width:100%;padding:16px 20px;background:rgba(255,255,255,.12);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);border:1px solid rgba(255,255,255,.15);border-radius:14px;color:#fff;text-decoration:none;font-size:15px;font-weight:600;transition:all .2s;cursor:pointer}
.profile-btn:hover{background:rgba(255,255,255,.22);transform:translateY(-2px);box-shadow:0 8px 24px rgba(0,0,0,.2)}
.profile-btn:active{transform:translateY(0)}
.btn-arrow{opacity:.5;font-size:13px}

/* Timer */
.profile-timer{text-align:center;margin-top:8px;margin-bottom:24px}
.timer-text{font-size:14px;color:var(--text-muted);margin-bottom:12px}
.timer-countdown{display:flex;align-items:center;justify-content:center;gap:8px;background:rgba(255,255,255,.1);backdrop-filter:blur(20px);border-radius:16px;padding:16px 28px;border:1px solid rgba(255,255,255,.1)}
.timer-block{display:flex;flex-direction:column;align-items:center;min-width:56px}
.timer-value{font-size:36px;font-weight:800;line-height:1;letter-spacing:-1px}
.timer-label{font-size:10px;color:var(--text-muted);margin-top:4px;text-transform:uppercase;letter-spacing:1px}
.timer-sep{font-size:28px;font-weight:700;opacity:.4;align-self:flex-start;margin-top:2px}

/* Footer */
.profile-footer{margin-top:auto;padding-top:24px}
.back-link{color:var(--text-muted);text-decoration:none;font-size:13px;display:flex;align-items:center;gap:6px;transition:color .2s}
.back-link:hover{color:#fff}

@media(max-width:400px){
  .profile-container{padding:24px 16px}
  .profile-avatar{width:80px;height:80px}
  .profile-name{font-size:22px}
  .timer-value{font-size:28px}
  .timer-block{min-width:44px}
}
