    /* ===== Design System (container 1400px) ===== */
    :root{
      --container: 1400px;
      --bg:#f4f6f9;
      --card:#ffffff;
      --text:#0f172a;
      --muted:#64748b;
      --primary:#1d4ed8;
      --primary-600:#1e40af;
      --accent:#0ea5e9;
      --danger:#dc3545;
      --warning:#f59e0b;
      --border:#e5e7eb;
      --shadow:0 10px 28px rgba(15,23,42,.07);
      --radius:14px;
    }
    *{box-sizing:border-box}
    body{font-family:'Segoe UI',system-ui,-apple-system,Roboto,Inter,Ubuntu,sans-serif;background:var(--bg);margin:0}
    a{text-decoration:none}

    .dashboard-wrapper{max-width:var(--container);margin:40px auto;padding:0 20px 60px}

    /* Header */
    .dashboard-header{
      background:var(--card);border:1px solid var(--border);border-radius:var(--radius);
      box-shadow:var(--shadow);padding:18px 22px;display:flex;justify-content:space-between;align-items:center
    }
    .dashboard-header h1{margin:0;font-size:22px;color:var(--text)}
    .logout{background:var(--danger);color:#fff;padding:10px 16px;border-radius:10px;font-weight:600}
    .logout:hover{filter:brightness(.95)}

    /* Profile */
    .profile{
      display:flex;gap:16px;align-items:center;margin-top:18px;
      background:var(--card);border:1px solid var(--border);border-radius:var(--radius);box-shadow:var(--shadow);padding:18px
    }
    .avatar{width:64px;height:64px;border-radius:50%;object-fit:cover;border:2px solid var(--border)}
    .profile h3{margin:0 0 4px;color:var(--text);font-size:18px}
    .profile .meta{color:var(--muted);font-size:13px}
    .profile a{color:var(--primary);font-size:13px}

    /* Quick actions */
    .quick{display:grid;gap:14px;margin:18px 0}
    @media (min-width: 960px){ .quick{grid-template-columns:repeat(4,1fr)} }
    .q{
      text-align:center;background:var(--card);border:1px solid var(--border);border-radius:12px;
      padding:14px;box-shadow:var(--shadow);transition:.2s
    }
    .q:hover{transform:translateY(-2px)}

    /* Stats */
    .stats{display:grid;gap:18px;margin:24px 0 10px;grid-template-columns:repeat(3,1fr)}
    @media (max-width: 980px){ .stats{grid-template-columns:1fr 1fr} }
    @media (max-width: 640px){ .stats{grid-template-columns:1fr} }
    .stat{
      background:var(--card);border:1px solid var(--border);border-radius:12px;padding:22px;text-align:center;box-shadow:var(--shadow)
    }
    .stat h3{margin:0;font-size:28px;color:var(--primary)}
    .stat p{margin:8px 0 0;color:var(--muted)}

    /* Buttons */
    .btn{display:inline-block;padding:10px 16px;border-radius:10px;font-weight:600;border:1px solid transparent}
    .btn-primary{background:var(--primary);color:#fff}
    .btn-primary:hover{background:var(--primary-600)}
    .btn-soft{background:#f8fafc;border-color:var(--border);color:var(--text)}
    .btn-soft:hover{background:#eef2f7}

    /* Sections */
    h2{font-size:20px;color:var(--text);margin:28px 0 12px;border-bottom:1px solid var(--border);padding-bottom:8px}
    .card{background:var(--card);border:1px solid var(--border);border-radius:12px;padding:18px;box-shadow:var(--shadow)}
    .muted{color:var(--muted);font-size:13px}

    /* Lists */
    .req-list .row{
      display:flex;flex-direction:column;gap:4px;background:#fff;border:1px dashed var(--border);
      border-radius:12px;padding:12px;margin-bottom:10px
    }

    /* Grids for posts/favorites */
    .grid{display:grid;gap:18px}
    .posts{grid-template-columns:repeat(auto-fill,minmax(300px,1fr))}
    .post{
      display:flex;flex-direction:column;gap:10px;background:var(--card);border:1px solid var(--border);
      border-radius:12px;padding:16px;box-shadow:var(--shadow)
    }
    .post img{width:100%;height:180px;object-fit:cover;border-radius:10px;border:1px solid var(--border)}
    .post h4{margin:0;color:var(--text);font-size:16px}

    .fav{grid-template-columns:repeat(auto-fill,minmax(360px,1fr))}
    .fav-item{
      display:flex;gap:14px;align-items:center;background:var(--card);border:1px solid var(--border);
      border-radius:12px;padding:10px;box-shadow:var(--shadow)
    }
    .fav-thumb{width:64px;height:64px;border-radius:10px;object-fit:cover;border:1px solid var(--border)}

    /* Alerts */
    .alert{background:#fff7e6;border:1px solid #ffecb5;color:#9a6b00;border-radius:12px;padding:12px 14px;margin:14px 0}
    .success{background:#ecfdf5;border-color:#bbf7d0}