  <style>
    body {
      background: linear-gradient(to right, #fceabb, #f8b500);
      font-family: 'Segoe UI', sans-serif;
      color: #333;
      padding: 20px;
    }
    .dashboard {
      max-width: 900px;
      margin: auto;
      background: white;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 0 15px rgba(0,0,0,0.2);
    }
    h2 {
      text-align: center;
      color: #ff6f61;
    }
    .grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-top: 30px;
    }
    .card {
      background: #f9f9f9;
      border-radius: 8px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
    .card a {
      text-decoration: none;
      color: #4CAF50;
      font-weight: bold;
    }
    .social-icons {
      text-align: center;
      margin-top: 40px;
    }
    .social-icons a {
      margin: 0 10px;
      font-size: 24px;
      color: #555;
    }
  </style>