
/* baedaddy styles - polished + mobile-first */
:root{
  --purple:#6b21a8;
  --royal:#2b6cb0;
  --accent: linear-gradient(90deg,var(--purple),var(--royal));
  --bg:#0f172a;
  --card:#0b1220;
  --muted:#94a3b8;
  --glass: rgba(255,255,255,0.03);
  --radius:16px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;background:linear-gradient(180deg, #05060a 0%, #071129 100%);color:#e6eef8;min-height:100%;-webkit-font-smoothing:antialiased}
a{color:inherit;text-decoration:none}
.container{max-width:980px;margin:0 auto;padding:24px}
.header{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:18px}
.brand{display:flex;align-items:center;gap:12px}
.logo{font-weight:800;font-size:20px;letter-spacing:0.4px;background:var(--accent);-webkit-background-clip:text;background-clip:text;color:transparent}
.tagline{font-size:12px;color:var(--muted)}
.nav a{margin-left:14px;font-weight:600;color:var(--muted)}

.hero{padding:28px 18px;background:linear-gradient(180deg, rgba(107,33,168,0.12), rgba(43,108,176,0.06));border-radius:14px;box-shadow:0 6px 18px rgba(11,18,32,0.6);margin-bottom:20px}
.hero h1{margin:0 0 8px 0;font-size:22px}
.hero p{margin:0;color:var(--muted)}

.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:14px;margin-top:16px}
.card{background:var(--glass);padding:14px;border-radius:12px;backdrop-filter: blur(6px);transition:transform .25s ease, box-shadow .25s ease;border:1px solid rgba(255,255,255,0.03)}
.card:hover{transform:translateY(-6px);box-shadow:0 12px 30px rgba(11,18,32,0.6)}

.card h3{margin:0 0 8px 0;font-size:16px}
.card p{margin:0;color:var(--muted);font-size:13px}

.footer{margin-top:28px;padding:18px;border-top:1px solid rgba(255,255,255,0.03);display:flex;justify-content:space-between;align-items:center}
.small{font-size:12px;color:var(--muted)}

/* blog list */
.post-list{margin-top:18px}
.post{display:flex;flex-direction:column;gap:6px;padding:12px;border-radius:10px;background:rgba(255,255,255,0.02);border:1px solid rgba(255,255,255,0.02)}

/* responsive */
@media(min-width:880px){.header{margin-bottom:28px}.logo{font-size:28px}}
/* subtle animations */
.fade-in{opacity:0;transform:translateY(8px);animation:fadeIn .6s forwards}
@keyframes fadeIn{to{opacity:1;transform:none}}
/* button */
.btn{display:inline-block;padding:8px 12px;border-radius:10px;font-weight:700;background:var(--accent);-webkit-background-clip:text;background-clip:text;color:transparent;border:1px solid rgba(255,255,255,0.06);cursor:pointer}
.aff-link{display:inline-block;margin-top:8px;padding:8px 10px;border-radius:8px;background:rgba(255,255,255,0.02);font-weight:700;font-size:13px;border:1px dashed rgba(255,255,255,0.04)}

/* contact */
.form{display:flex;flex-direction:column;gap:10px}
.input, textarea{padding:10px;border-radius:8px;background:transparent;border:1px solid rgba(255,255,255,0.04);color:#e6eef8}
textarea{min-height:120px;resize:vertical}
