:root{
  --bg:#ffb3d9;
  --card:#e6b3ff;
  --text:#e8eefc;
  --muted:#a8b3cf;
  --border:rgba(255,255,255,.10);
  --accent:#5aa9ff;
  --accent2:#7cf1d6;
  --shadow: 0 12px 30px rgba(0,0,0,.35);
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 700px at 20% -10%, rgba(90,169,255,.25), transparent 55%),
              radial-gradient(1000px 600px at 90% 10%, rgba(124,241,214,.18), transparent 60%),
              var(--bg);
  color:var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a{color:var(--accent); text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width: 980px; margin: 32px auto; padding: 0 18px;}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 18px;
  background: linear-gradient(180deg, rgba(16,26,46,.92), rgba(16,26,46,.72));
  border:1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.brand{
  display:flex; align-items:center; gap:10px; font-weight:650; letter-spacing:.2px;
}
.badge{
  font-size:12px; padding: 4px 8px; border-radius: 999px;
  border:1px solid var(--border); color:var(--muted);
}
.card{
  margin-top: 18px;
  background: linear-gradient(180deg, rgba(15,26,48,.92), rgba(15,26,48,.70));
  border:1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.h1{font-size: 32px; margin: 0 0 8px 0;}
.muted{color:var(--muted)}
.row{display:flex; gap:12px; flex-wrap:wrap; margin-top: 14px;}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding: 10px 14px;
  border-radius: 12px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}
.btn:hover{
  background: rgba(255,255,255,.10);
  transform: translateY(-1px);
}
.btn.primary{
  border-color: rgba(90,169,255,.55);
  background: linear-gradient(180deg, rgba(90,169,255,.22), rgba(90,169,255,.10));
}
.btn.danger{
  border-color: rgba(255,120,120,.45);
  background: linear-gradient(180deg, rgba(255,120,120,.22), rgba(255,120,120,.10));
}
hr.sep{
  margin: 24px 0;
  border: none;
  border-top: 1px solid var(--border);
}
.input, textarea{
  width: 100%;
  color: var(--text);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 12px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.input:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(90,169,255,.15);
}
textarea{min-height: 120px; resize: vertical;}
.post{
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255,255,255,.04);
  margin: 12px 0;
}
.post .meta{
  display:flex; gap:10px; align-items:center; justify-content:space-between;
  color:var(--muted);
  font-size: 13px;
}
.footer{margin-top: 14px; color: var(--muted); font-size: 13px;}