
  .podium {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  .place {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
  }
  .bar {
    width: 100%;
    height: 100%;
    border-radius: 6px 6px 0 0;
    position: relative;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    box-sizing: border-box;
  }
  .first .bar { height: 300px; background-color: gold; }
  .second .bar { height: 230px; background-color: silver; }
  .third .bar { height: 200px; background-color: #cd7f32; }

  .bar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-bottom: 5px;
    object-fit: cover;/* Ensures the image fills the circle while maintaining aspect ratio */
    object-position: center; /* Focuses on the center of the image (e.g., face) */
  }

  .details {
    text-align: center;
  }
  .details span {
    display: block;
    font-weight: bold;
    color: #fff;
  }

  .category-winners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }
  .category {
    width: 140px;
    background-color: #fff;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    text-align: center;
  }
  .category .cat-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 8px;
    border: 1px solid #ccc;
  }
  .category .cat-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  h1, h2 {
    margin-bottom: 20px;
  }

  @media (max-width: 500px) {
    .podium {
      flex-direction: column;
      align-items: center;
    }
    .place {
      width: 80%;
      max-width: 250px;
    }
    .first .bar { height: 200px !important; }
    .second .bar { height: 200px !important; }
    .third .bar { height: 200px !important; }
    .category {
      width: 80%;
    }
  }