  :root {
    --bg: #fcfcfc;
        --text: #202420;
        --accent: #e9a11b;
        --muted: #9c9c9c;
  }

  * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: "Poppins", sans-serif;
  }

  .body {
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
  }

  .header {
      text-align: center;
      padding: 5rem 1rem 2rem;
  }

  .header h1 {
      font-size: 3rem;
      font-weight: 700;
      letter-spacing: 1px;
      display: inline-block;
      position: relative;
  }

  .header h1::after {
      content: "";
      display: block;
      width: 50%;
      height: 3px;
      background: var(--accent);
      margin: 0.5rem auto 0;
      border-radius: 2px;
  }

  .filter-bar {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 1rem;
      max-width: 1100px;
      margin: 2rem auto 1rem;
      padding: 0 1rem;
  }

  .filter-bar label {
      color: var(--muted);
      font-size: 1rem;
  }

  .filter-bar select {
      padding: 0.6rem 1rem;
      color: var(--text);
      border: 1px solid #333;
      border-radius: 8px;
      font-size: 1rem;
      cursor: pointer;
      transition: border 0.3s ease, box-shadow 0.3s ease;
  }

  .filter-bar select:focus {
      border-color: var(--accent);
      box-shadow: 0 0 6px rgba(255, 187, 0, 0.4);
      outline: none;
  }

  .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1100px;
      margin: 0 auto;
      padding: 2rem 1rem 6rem;
      animation: fadeIn 1s ease forwards;
  }

  .blog-card {
      background: #ffffff;
      padding: 2rem;
      border-radius: 1rem;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
  }

  .blog-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(255, 196, 0, 0.25);
  }

  .blog-card h3 {
      color: var(--accent);
      font-size: 1.5rem;
      margin-bottom: 0.8rem;
  }

  .blog-card p {
      color: var(--muted);
      margin-bottom: 1rem;
      font-size: 0.95rem;
  }

  .blog-card .date {
      display: block;
      font-size: 0.85rem;
      color: #aaa;
      margin-bottom: 0.6rem;
  }

  .blog-card a {
      color: var(--accent);
      text-decoration: none;
      font-weight: 600;
      transition: color 0.3s ease;
  }

  .blog-card a:hover {
      color: #d98200;
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
          transform: translateY(20px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @media (max-width: 600px) {
      header h1 {
          font-size: 2.3rem;
      }
  }