<style>
  * {
    box-sizing: border-box;
  }
  instabody {
    background: #fafafa;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    padding: 20px;
  }
  .insta-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    max-width: 420px;
    width: 100%;
    overflow: hidden;
  }
  /* Header */
  .insta-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
  }
  .insta-user {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .insta-user img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
  }
  .insta-user span {
    font-weight: 600;
    font-size: 14px;
  }
  .menu-icon {
    width: 18px;
    height: 18px;
    cursor: pointer;
  }

  /* Post image */
  .insta-post {
    position: relative;
  }
  .insta-post img {
    width: 100%;
    display: block;
  }
  .sponsored {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
  }

  /* WhatsApp button */
  .wa-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #e8f5e9;
    color: #128C7E;
    padding: 10px 14px;
    font-weight: 600;
    cursor: pointer;
  }
  .wa-left {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .wa-icon svg {
    width: 20px;
    height: 20px;
    fill: #128C7E;
  }
  .arrow-icon svg {
    width: 20px;
    height: 20px;
    fill: #128C7E;
  }

  /* Actions */
  .insta-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 14px;
  }
  .action-left {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .action-left div, .bookmark-icon {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
  }
  .insta-actions svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #262626;
    stroke-width: 2;
  }
  .counts {
    font-size: 12px;
    color: #555;
  }

  /* Description */
  .insta-description {
    padding: 0 14px 12px;
    font-size: 14px;
    color: #333;
  }

  @media (max-width: 480px) {
    .insta-card {
      border-radius: 0;
    }
  }

  a:-webkit-any-link{
    text-decoration: none;
  }
</style>