
    .payment-icons {
      display: flex;
      gap: 15px; /* Space between icons */
      align-items: center;
    }
    
    .payment-icons i {
      font-size: 2rem; /* Adjust icon size */
      color: #007bff; /* Change to a nice blue */
      transition: color 0.3s ease-in-out;
    }

    .payment-icons i:hover {
      color: #ff9800; /* Change color on hover */
    }
    

    .post-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    padding: 10px 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
  }

  .description {
    font-size: 16px;
    opacity: 0.8;
  }

  .amount h4 {
    font-weight: bold;

  }

  .icon-view {
    color: #f8d210; /* Gold Color for Views */
  }

  .icon-like {
    color: #ff4f4f; /* Red Color for Likes */
  }
  .payment-icons img:hover {
  transform: scale(1.1);
  transition: 0.2s ease;
  opacity: 0.9;
  }