/* Reset + base */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:'Poppins',system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,'Helvetica Neue',Arial;
  color:#e9e9ee;
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(255,0,128,.15), transparent 60%),
    radial-gradient(900px 600px at 120% 10%, rgba(0,255,200,.12), transparent 60%),
    linear-gradient(140deg,#0d1017 0%, #111826 40%, #0e1530 100%);
  overflow-x:hidden;
}

/* Lock overlay */
.lock{
  position:fixed; inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.6),rgba(0,0,0,.75));
  backdrop-filter: blur(6px);
  display:flex; align-items:center; justify-content:center;
  z-index:50;
}
.lock-card{
  width:min(92vw,420px);
  background:rgba(20,24,36,.9);
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  padding:26px;
  box-shadow:0 10px 40px rgba(0,0,0,.35);
  text-align:center;
}
.lock-card h1{margin:0 0 6px; font-size:26px}
.lock-card p{margin:0 0 18px; opacity:.85}
.lock-card input{
  width:100%; padding:12px 14px;
  border-radius:14px; outline:none;
  border:1px solid rgba(255,255,255,.12);
  background:#121727; color:#e9e9ee;
}
.lock-card button{
  margin-top:12px; width:100%;
  padding:12px 14px; border:none; cursor:pointer;
  border-radius:14px; font-weight:700; letter-spacing:.2px;
  color:#10131c; background:linear-gradient(135deg,#ff66b3,#ff8ad0);
  box-shadow:0 6px 22px rgba(255,102,179,.35);
}
.lock-card .hint{font-size:12px; opacity:.6}

/* Hero */
.hero{
  position:relative;
  display:grid; grid-template-columns:1fr;
  align-items:center; justify-items:center;
  padding:22px 16px 10px;
}
.hero-img{
  width:min(560px,92vw);
  filter: drop-shadow(0 20px 40px rgba(255,0,128,.18));
  animation:float 8s ease-in-out infinite;
}
.hero-text{
  text-align:center;
  margin-top:8px;
}
.hero-text h2{
  margin:10px 0 6px;
  font-size: clamp(22px, 5vw, 38px);
  background: linear-gradient(90deg, #ff7dc1, #7ecef5);
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
  font-weight:800;
}
.hero-text p{
  margin:0; opacity:.85;
  font-size:clamp(14px, 3.6vw, 18px);
}

/* Badges */
.panel{
  display:flex; flex-wrap:wrap; gap:12px;
  justify-content:center; padding:12px 14px 8px;
}
.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px; border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  cursor:pointer; user-select:none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
  backdrop-filter: blur(4px);
}
.badge:hover{ transform: translateY(-2px); background:rgba(255,255,255,.09) }
.badge span{ font-weight:600 }
#badge-rose{ border-color:rgba(255,105,180,.25) }
#badge-bulldog{ border-color:rgba(160,220,255,.25) }
#badge-fuchsia{ border-color:rgba(255,0,128,.25) }
#badge-sad{ border-color:rgba(255,255,255,.18) }
#badge-lindor{ border-color:rgba(255,215,0,.25) }

/* Footer */
.foot{
  text-align:center; padding:16px 10px 28px;
  opacity:.75; font-size:13px;
}

/* Toast / Note */
.note{
  position:fixed; left:50%; top:200px; transform:translateX(-50%) translateY(120%);
  background:linear-gradient(180deg, rgba(25,30,48,.96), rgba(18,22,36,.96));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 16px 38px rgba(0,0,0,.35);
  border-radius:16px; max-width:min(92vw,720px);
  padding:14px 16px; z-index:60; line-height:1.45;
  transition: transform .45s cubic-bezier(.2,.9,.2,1);
}
.note.show{ transform:translateX(-50%) translateY(0) }

@keyframes float{
  0%,100%{ transform: translateY(0) }
  50%{ transform: translateY(-8px) }
}

/* Responsive tweaks */
@media (min-width:820px){
  .hero{ grid-template-columns:.9fr 1.1fr; gap:10px; padding-top:28px }
  .hero-text{ text-align:left; justify-self:start; padding-left:8px }
}
