@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
    font-family: 'Poppins', sans-serif;
}

body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background-color: #f9f9f9;
      color: #333;
      line-height: 1.6;
    }

    header {
      background: linear-gradient(135deg, #6C63FF, #857FFF);
      color: white;
      padding: 3rem 1rem;
      text-align: center;
    }

    header h1 {
      margin: 0;
      font-size: 3rem;
      font-weight: 600;
    }

    header p {
      margin-top: 0.5rem;
      font-size: 1.3rem;
    }

    nav {
      background: white;
      padding: 0.8rem;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    nav a {
      color: #333;
      text-decoration: none;
      margin: 0 1rem;
      font-weight: 500;
      font-size: 0.95rem;
    }

    footer a {
        color: #6C63FF;
        text-decoration: none;
    }

    nav a:hover {
      color: #6C63FF;
    }

    .container {
      max-width: 1100px;
      margin: 3rem auto;
      padding: 0 1rem;
    }

    h2.section-title {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 2rem;
      color: #222;
    }

    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }

    .card {
      background: white;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      overflow: hidden;
      transition: transform 0.2s;
      cursor: pointer;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .card-content {
      padding: 1rem;
    }

    .card-content h3 {
      margin: 0 0 0.5rem 0;
      font-size: 1.25rem;
      color: #222;
    }

    .card-content p {
      font-size: 0.95rem;
      color: #666;
      margin-bottom: 0.8rem;
    }

    .card-content a {
      display: inline-block;
      background: #6C63FF;
      color: white;
      text-decoration: none;
      padding: 0.5rem 1rem;
      border-radius: 5px;
      font-size: 0.9rem;
      transition: background 0.2s;
    }

    .card-content a:hover {
      background: #5548d3;
    }

    footer {
      text-align: center;
      padding: 1rem;
      background: #f1f1f1;
      color: #666;
      font-size: 0.9rem;
      margin-top: 3rem;
    }

    .card-content .rating {
      color: #ff9a2e;
      font-weight: bold;
    }