body {
      font-family: Arial, sans-serif;
      background: #f9fafb;
      margin: 0;
      padding: 0px;
    }
    h1, h2 {
      text-align: center;
      margin-bottom: 20px;
    }

    /* First section (flex cards) */
    .container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      margin-bottom: 40px;
    }
    .card {
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.2s ease-in-out;
      flex: 1 1 200px;
      max-width: 220px;
    }
    .card:hover {
      transform: translateY(-5px);
    }
    .card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }
    .card h3 {
      margin: 10px 0;
      padding: 0 10px 15px;
      font-size: 16px;
    }

    @media (max-width: 600px) {
      .card {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
      }
    }

    /* Second section (grid small cards) */
    .artist-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 15px;
      padding: 0 10px 40px;
    }
    .artist-card {
      display: flex;
      align-items: center;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      padding: 10px;
      transition: transform 0.2s ease-in-out;
    }
    .artist-card:hover {
      transform: scale(1.02);
    }
    .artist-card img {
      width: 45px;
      height: 45px;
      border-radius: 8px;
      object-fit: cover;
      margin-right: 12px;
    }
    .artist-card span {
      font-size: 15px;
      font-weight: 500;
    }