body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-image: url("bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }

  .container {
    max-width: 320px;
    width: 100%;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .section {
    /* height: 150px;  */
    height: 100px;
    padding: 20px;
    padding-right: 120px; /* increased to avoid overlap */
    padding-bottom: 120px; /* increased to avoid overlap */
    border-radius: 15px;
    background: #f0ffb0 url('traffic-conversion.png') no-repeat bottom right;
    background-size: 120px; /* increased size */
    box-sizing: border-box;
    position: relative;
  }

  .section h3 {
    margin: 0 0 8px;
  }

  .section p {
    margin: 0;
    font-size: 13px;
  }

  .ref-code-box {
    background: #ffffff;
    border: 2px dashed #90ee90;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    position: relative;
    /* width: 80%; */
    max-width: 300px;
    margin: 0 auto;
  }

  .copy {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 12px;
    color: #888;
    cursor: pointer;
    user-select: none;
  }

  .share-icons {
    text-align: center;
  }

  .share-icons img {
    height: 40px;
    margin: 0 10px;
    cursor: pointer;
    transition: transform 0.2s;
  }

  .share-icons img:hover {
    transform: scale(1.1);
  }

  .steps {
display: flex;
justify-content: space-between;
gap: 10px;
flex-wrap: nowrap; /* keep in one line */
align-items: center;
}

.step {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding: 10px;
position: relative;
}

/* Add arrow after each step except last */
.step:not(:last-child)::after {
content: "→";
position: absolute;
top: 50%;
right: -15px; /* adjust horizontal space */
transform: translateY(-50%);
font-size: 24px;
color: #333;
user-select: none;
pointer-events: none;
}


.how-it-works {
  background: #f7fddf;
  padding: 20px;
  border-radius: 15px;
}

.how-it-works h3 {
  margin-top: 0;
  text-align: center;
}

.steps {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: nowrap;
  align-items: center;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px;
  position: relative;
}

.step img {
  height: 30px;
  width: 30px;
  margin-bottom: 10px;
}

.step span {
  font-size: 14px;
}

/* Arrow between blocks */
.step:not(:last-child)::after {
  content: ">";
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  font-size: 20px;
  color: #333;
  user-select: none;
  pointer-events: none;
}

.input-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #f0f0f0;
    padding: 10px;
    border-radius: 15px;
    gap: 10px;
    margin-bottom: 10px;
  }

  .input-box input {
    border: none;
    background: transparent;
    flex: 1;
    font-size: .8em;
    outline: none;
  }

  .input-box span {
    background: #dcdcdc;
    padding: 5px 10px;
    border-radius: 10px;
    font-weight: bold;
    order: -1;
  }
  .button {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 13px;
    font-size: .9em;
    border: none;
    border-radius: 10px;
    width: 90%;
    max-width: 320px;
    cursor: pointer;
    /* margin-top: 10px; */
  }

  .button:hover {
    background: #333;
  }

  .report-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0,0,0,0.06);
    padding: 16px;
    max-width: 100%;
    margin-top: 20px;
    border: 1px solid #ddd;
  }

  .report-box h3 {
    margin-top: 0;
    color: #5a2ca0;
    font-size: 18px;
  }

  .report-box p {
    margin: 4px 0;
    font-size: 13px;
    color: #444;
  }

  .table-wrapper {
    overflow-x: auto;
  }

  table.responsive-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    min-width: 400px;
    font-size: 13px;
  }

  table.responsive-table th,
  table.responsive-table td {
    padding: 6px 8px;
    border: 1px solid #ddd;
    text-align: left;
    white-space: nowrap;
  }

  table.responsive-table th {
    background-color: #f3f0ff;
    color: #5a2ca0;
    font-weight: 600;
  }

  table.responsive-table tr:nth-child(even) {
    background-color: #fcfcfc;
  }

  table.responsive-table tr:hover {
    background-color: #f0e9ff;
  }

  @media screen and (max-width: 600px) {
    .report-box {
      padding: 12px;
    }

    .report-box p {
      font-size: 12px;
    }

    table.responsive-table th,
    table.responsive-table td {
      font-size: 12px;
      padding: 5px 6px;
    }
  }