@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root{
  --bg:#070707;
  --card:#111;
  --line:rgba(255,255,255,.10);
  --text:#fff;
  --muted:#a7a7a7;
  --green:#25d366;
  --red:#ff3131;
  --purple:#8b5cf6;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  min-height:100vh;
  background:
    radial-gradient(circle at 50% -10%, rgba(255,255,255,.10), transparent 34%),
    linear-gradient(145deg,#050505,#111 48%,#050505);
  color:var(--text);
  font-family:'Montserrat',Arial,sans-serif;
  overflow-x:hidden;
}
.bg-glow{
  position:fixed;
  width:360px;height:360px;
  border-radius:50%;
  filter:blur(90px);
  opacity:.16;
  pointer-events:none;
}
.glow-1{background:#ff2424;top:5%;left:-220px}
.glow-2{background:#6b39ff;bottom:5%;right:-220px}

.container{
  width:min(100% - 30px, 620px);
  margin:0 auto;
  padding:28px 0 35px;
  position:relative;
  z-index:1;
}

.profile{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:22px;
}
.avatar{
  width:58px;height:58px;
  border-radius:50%;
  padding:2px;
  background:linear-gradient(135deg,#fff,#555);
  box-shadow:0 0 25px rgba(255,255,255,.12);
}
.avatar img{
  width:100%;height:100%;
  border-radius:50%;
  object-fit:cover;
}
.handle{
  font-size:21px;
  font-weight:900;
  letter-spacing:1.2px;
}
.profile p{
  margin:4px 0 0;
  color:var(--muted);
  font-size:12px;
  font-weight:600;
}

.hero{
  display:grid;
  grid-template-columns:42% 1fr;
  gap:22px;
  align-items:center;
  background:linear-gradient(135deg,rgba(255,255,255,.09),rgba(255,255,255,.025));
  border:1px solid var(--line);
  border-radius:26px;
  padding:12px;
  box-shadow:0 18px 55px rgba(0,0,0,.35);
  overflow:hidden;
  margin-bottom:18px;
}
.hero-image{
  position:relative;
  overflow:hidden;
  border-radius:19px;
  aspect-ratio:4/5;
}
.hero-image img{
  width:100%;height:100%;
  display:block;
  object-fit:cover;
}
.hero-image:after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.42),transparent 50%);
}
.hero-badge{
  position:absolute;
  z-index:2;
  left:10px;bottom:10px;
  background:#f00;
  color:#fff;
  padding:7px 10px;
  border-radius:999px;
  font-size:10px;
  font-weight:900;
  letter-spacing:.7px;
  box-shadow:0 7px 20px rgba(255,0,0,.35);
}
.hero-copy{padding:8px 12px 8px 2px}
.eyebrow{
  color:#bbb;
  font-size:10px;
  font-weight:900;
  letter-spacing:2px;
}
h1{
  margin:9px 0 12px;
  font-size:30px;
  line-height:1.05;
  letter-spacing:-1.2px;
}
h1 strong{
  background:linear-gradient(90deg,#fff,#aaa);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero-copy p{
  margin:0;
  color:#aaa;
  font-size:12px;
  line-height:1.65;
  font-weight:500;
}

.links{
  display:flex;
  flex-direction:column;
  gap:11px;
}
.link-card{
  min-height:72px;
  display:flex;
  align-items:center;
  gap:14px;
  padding:12px 15px;
  color:#fff;
  text-decoration:none;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.09);
  border-radius:18px;
  transition:.22s ease;
  position:relative;
  overflow:hidden;
}
.link-card:before{
  content:"";
  position:absolute;
  left:0;top:0;bottom:0;
  width:3px;
  background:var(--accent,#fff);
  opacity:.9;
}
.link-card:hover{
  transform:translateY(-2px) scale(1.008);
  background:rgba(255,255,255,.09);
  border-color:rgba(255,255,255,.18);
  box-shadow:0 12px 28px rgba(0,0,0,.25);
}
.link-icon{
  flex:0 0 45px;
  width:45px;height:45px;
  border-radius:14px;
  display:grid;
  place-items:center;
  font-size:23px;
  font-weight:900;
  background:rgba(255,255,255,.09);
}
.link-text{
  min-width:0;
  flex:1;
  display:flex;
  flex-direction:column;
  gap:4px;
}
.link-text b{
  font-size:14px;
  font-weight:800;
}
.link-text small{
  color:#999;
  font-size:10px;
  font-weight:600;
}
.arrow{
  font-size:22px;
  color:#888;
  transition:.2s ease;
}
.link-card:hover .arrow{transform:translateX(4px);color:#fff}

.livepix{--accent:#aaa}.livepix .link-icon{font-size:24px}
.discount{--accent:#ffc400}.discount .link-icon{background:rgba(255,196,0,.14)}
.whatsapp{--accent:#25d366}.whatsapp .link-icon{background:rgba(37,211,102,.14);color:#25d366}
.youtube{--accent:#ff0000}.youtube .link-icon{background:rgba(255,0,0,.14)}
.instagram{--accent:#e1306c}.instagram .link-icon{background:linear-gradient(135deg,rgba(249,206,52,.16),rgba(238,42,123,.16),rgba(98,40,215,.16))}
.tiktok{--accent:#00f2ea}.tiktok .link-icon{background:rgba(0,242,234,.10)}

footer{
  text-align:center;
  padding:25px 0 5px;
}
.social-line{
  display:flex;
  align-items:center;
  gap:10px;
  color:#777;
  font-size:9px;
  letter-spacing:2px;
}
.social-line span{
  flex:1;height:1px;
  background:rgba(255,255,255,.08);
}
footer p{
  margin:10px 0 0;
  color:#555;
  font-size:9px;
  font-weight:600;
}

@media(max-width:520px){
  .container{width:min(100% - 22px,620px);padding-top:18px}
  .profile{margin-bottom:16px}
  .avatar{width:52px;height:52px}
  .handle{font-size:18px}
  .profile p{font-size:10px}
  .hero{
    grid-template-columns:37% 1fr;
    gap:15px;
    border-radius:21px;
    padding:9px;
  }
  .hero-image{border-radius:15px}
  h1{font-size:23px}
  .hero-copy p{font-size:10px;line-height:1.5}
  .link-card{min-height:67px;border-radius:16px}
}
@media(max-width:370px){
  .hero{grid-template-columns:1fr}
  .hero-image{max-height:280px;aspect-ratio:4/3}
  .hero-copy{padding:5px 8px 10px}
  h1{font-size:25px}
}
