 body {
      margin: 0;
      font-family: 'Roboto', sans-serif;
      background: #f4f6f9;
      color: #333;
    }
    header {
      background: linear-gradient(135deg, #673ab7, #512da8);
      color: #fff;
      padding: 50px 20px;
      text-align: center;
      animation: fadeIn 1s ease-in-out;
    }
    header h1 {
      font-size: 2.5rem;
      margin-bottom: 10px;
    }
    header p {
      font-size: 1.1rem;
      opacity: 0.9;
    }
    .featured-img {
      width: 100%;
      max-height: 420px;
      object-fit: cover;
      animation: zoomIn 1s ease-out;
    }
    .content {
      max-width: 900px;
      margin: 40px auto;
      background: #fff;
      padding: 30px 20px;
      box-shadow: 0 0 15px rgba(0,0,0,0.05);
      animation: slideUp 1s ease;
    }
    h2 {
      color: #512da8;
      margin-top: 30px;
    }
    .read-more {
      display: inline-block;
      margin-top: 25px;
      background: #512da8;
      color: white;
      padding: 10px 20px;
      border-radius: 4px;
      text-decoration: none;
      transition: background 0.3s ease;
    }
    .read-more:hover {
      background: #7e57c2;
    }
    footer {
      text-align: center;
      padding: 20px;
      background: #eceff1;
      font-size: 14px;
    }
    @keyframes fadeIn {
      0% { opacity: 0; }
      100% { opacity: 1; }
    }
    @keyframes slideUp {
      0% { opacity: 0; transform: translateY(40px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    @keyframes zoomIn {
      0% { opacity: 0; transform: scale(1.05); }
      100% { opacity: 1; transform: scale(1); }
    }
    @media (max-width: 768px) {
      header h1 {
        font-size: 2rem;
      }
      .content {
        padding: 20px;
      }
    }