*{margin:0;padding:0;box-sizing:border-box}
html,body{height:100%}
body{
  font-family: system-ui, -apple-system, "Poppins", sans-serif;
  background: radial-gradient(circle at top, #1e293b, #000);
  color:#fff;
  overflow-x:hidden;
}

.bg-bubbles::before,.bg-bubbles::after{
  content:"";
  position:fixed; inset:auto;
  width:420px;height:420px;border-radius:50%;
  filter: blur(0px);
  z-index:0;
  opacity:.85;
  animation: float 10s ease-in-out infinite alternate;
}
.bg-bubbles::before{
  left:-120px; bottom:-140px;
  background: radial-gradient(circle, rgba(255,0,90,.45), transparent 60%);
}
.bg-bubbles::after{
  right:-140px; bottom:-170px;
  background: radial-gradient(circle, rgba(0,170,255,.40), transparent 60%);
  animation-duration: 13s;
}
@keyframes float{from{transform:translateY(0)}to{transform:translateY(-70px)}}

.wrap{
  min-height:100%;
  display:flex; flex-direction:column;
  align-items:center;
  padding:28px 14px 40px;
  position:relative;
  z-index:1;
}

.headerBox{
  width:min(980px, 94vw);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding:18px 18px 14px;
  box-shadow: 0 0 60px rgba(0, 180, 255, .18);
}

.brand{
  display:flex; justify-content:center; align-items:center;
  font-weight:800; letter-spacing:.5px;
  gap:10px; font-size:22px;
  margin-bottom:10px;
}
.brand .heart{filter: drop-shadow(0 0 10px rgba(255,0,100,.55))}

.nav{
  display:flex; justify-content:center; gap:10px;
  flex-wrap:wrap;
}
.nav a{
  text-decoration:none;
  color:#e5e7eb;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.10);
  padding:10px 14px;
  border-radius: 14px;
  transition:.2s;
}
.nav a:hover{transform: translateY(-1px); box-shadow:0 10px 25px rgba(0,0,0,.25)}
.nav a.active{outline:2px solid rgba(255,120,180,.35)}

.card{
  width:min(980px, 94vw);
  margin-top:18px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding:18px;
}

.row{display:flex; gap:12px; flex-wrap:wrap; align-items:center}
.input, textarea{
  width:100%;
  background: rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  padding:12px 12px;
  border-radius:14px;
  outline:none;
}
textarea{min-height:110px; resize:vertical}

.btn{
  background: linear-gradient(90deg, rgba(255,0,100,.55), rgba(0,170,255,.45));
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  padding:12px 14px;
  border-radius:14px;
  cursor:pointer;
}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
@media (max-width: 820px){
  .grid{grid-template-columns: repeat(2,1fr)}
}
@media (max-width: 520px){
  .grid{grid-template-columns: 1fr}
}

.thumb{
  background: rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  padding:12px;
}
.thumb img{width:100%; height:240px; object-fit:cover; border-radius:14px}
.meta{opacity:.8; font-size:12px; margin-top:8px}

.heroShow{
  display:flex; align-items:center; justify-content:center;
  min-height:300px;
  text-align:center;
  padding:20px;
}
.fade{
  animation: fade 600ms ease;
}
@keyframes fade{from{opacity:.15; transform: translateY(6px)}to{opacity:1; transform:none}}
