/*
  MY SMART KOKU V16 – Ministry UI
  css/app.css
*/
:root{
  --bg:#edf3f8;
  --card:#fff;
  --ink:#1e293b;
  --dark:#0f172a;
  --muted:#64748b;
  --line:#d7e1ee;
  --blue:#2563eb;
  --blue2:#1d4ed8;
  --soft:#f8fafc;
  --green:#15803d;
  --red:#b91c1c;
  --warn:#b45309;
  --shadow:0 18px 55px rgba(15,23,42,.075);
}
*{box-sizing:border-box}
html,body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:'Poppins',system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-weight:400;
}
a{color:var(--blue);text-decoration:none}
.page-shell{
  width:min(1680px,calc(100% - 64px));
  margin:32px auto;
}
.header{
  background:linear-gradient(135deg,#fff,#fbfdff);
  border:1px solid var(--line);
  border-radius:32px;
  box-shadow:var(--shadow);
  padding:28px;
  margin-bottom:18px;
}
.header-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  margin-bottom:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:20px;
}
.brand img{
  width:58px;
  height:58px;
  object-fit:contain;
}
.brand p{
  margin:0 0 5px;
  color:var(--blue);
  font-size:13px;
  letter-spacing:.12em;
  font-weight:600;
}
.brand h1{
  margin:0;
  font-size:42px;
  line-height:1;
  letter-spacing:-.05em;
  font-weight:600;
  color:var(--dark);
}
.content{
  margin-top:22px;
}
.footer{
  text-align:center;
  color:#64748b;
  font-size:13px;
  margin:30px 0 10px;
}
.simple-hero{
  background:#fff;
  border:1px solid var(--line);
  border-radius:30px;
  box-shadow:var(--shadow);
  padding:28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  margin-bottom:22px;
}
.simple-hero h1{
  margin:0;
  font-size:36px;
  letter-spacing:-.04em;
  font-weight:600;
}
.simple-hero p{
  margin:6px 0 0;
  color:var(--muted);
}
@media(max-width:900px){
  .page-shell{width:min(100% - 24px,1680px);margin:16px auto}
  .header-top{display:block}
  .brand h1{font-size:32px}
}
