    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Outfit', sans-serif;
      background: #f4f6fb;
      color: #1f2937;
      display: flex;
      min-height: 100vh;
    }
    .sidebar {
      width: 260px;
      background-color: #111827;
      color: #fff;
      padding: 2rem 1.5rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .sidebar .logo {
      font-size: 1.5rem;
      font-weight: 800;
      color: #3b82f6;
    }
    .sidebar .mascot img {
      width: 120px;
      margin: 2rem auto;
      display: block;
    }
    .sidebar .menu ul {
      list-style: none;
      margin-top: 2rem;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .dashboard {
      flex: 1;
      padding: 2rem;
      display: flex;
      flex-direction: column;
    }
    .header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2rem;
    }
    .header .title {
      font-size: 1.5rem;
      font-weight: 700;
    }

    .bento-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
    }
    .card {
      background: white;
      border-radius: 1rem;
      padding: 1.5rem;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    }
    .card h2, .card h3 {
      margin-bottom: 0.75rem;
    }
    .stat {
      text-align: center;
      font-weight: 600;
    }
    .stat p {
      font-size: 2rem;
      margin-top: 0.5rem;
    }
    .yellow {
      background: #fef08a;
    }
    .green {
      background: #86efac;
    }
    .pink {
      background: #f9a8d4;
    }
    .cta-buttons button {
      padding: 0.5rem 1rem;
      margin: 0.5rem 0.5rem 0 0;
      border: none;
      background-color: #3b82f6;
      color: #fff;
      border-radius: 0.5rem;
      cursor: pointer;
    }
    .card ul, .card ol {
      padding-left: 1.25rem;
      line-height: 1.6;
      font-size: 0.95rem;
      color: #374151;
    }
    .footer {
      margin-top: 2rem;
      font-size: 0.85rem;
      text-align: center;
      color: #6b7280;
    }
    .footer a {
      color: #3b82f6;
    }
    @media (max-width: 768px) {
      .sidebar { display: none; }
      body { flex-direction: column; }
    }