* {
    box-sizing: border-box;
  }
  
  html, body {
    margin: 0;
    padding: 0;
    max-width: 100%;
    overflow-x: hidden;
  }
  
    

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #ffeef0;
    overflow-x: hidden;
    position: relative;
  }
  
  .container {
    max-width: 600px;
    margin: auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 2;
  }
  
  .card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
  }
  .disc
  {
    font-size: 14px;
    font-weight: 600; 
    margin-bottom: 0px;
  }
  
  h2 {
    font-weight: 600;
    color: #ff9599;
    margin-top: 0px;
    margin-bottom: 20px;
  }
  
  .qr-wrapper {
    perspective: 1000px;
    display: inline-block;
  }
  
  .qr {
    max-width: 180px;
    margin-bottom: 15px;
    border-radius: 12px;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .wallet {
    font-size: 14px;
    color: #666;
    word-break: break-all;
  }
  
  input[type="text"] {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border-radius: 12px;
    border: 2px solid #ccc;
    outline: none;
    margin-bottom: 30px;
    box-sizing: border-box;
  }
  
  button {
    padding: 12px 20px;
    background: linear-gradient(45deg, #f25278, #d97d96);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  
  button:hover {
    transform: scale(1.05);
  }
  
  #result {
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
  }
  
  .background-blobs {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
  }
  
  .background-blobs::before,
  .background-blobs::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #f76b15 0%, transparent 70%),
                radial-gradient(circle at 70% 70%, #3c3a9d 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
  }
  
  .background-blobs::before {
    top: -100px;
    left: -100px;
  }
  
  .background-blobs::after {
    bottom: -100px;
    right: -100px;
  }
      

  .qr-card {
    background: white;
    border-radius: 16px;
    padding: 20px 15px;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .tilt-wrapper {
    perspective: 1000px;
    display: flex;
    justify-content: center;
    margin: 20px 0;
  }
  
  .tilt-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    transform-style: preserve-3d;
  }
    
  .qr-label {
    font-size: 14px;
    color: #333;
    text-align: center;
    margin-top: 10px;
    line-height: 1.4;
    word-break: break-word;
  }
  
  /* 📱 Smaller font on small mobile screens */
  @media (max-width: 400px) {
    .qr-label {
      font-size: 10px;
    }
  }

  label {
    display: block;
    text-align: left;
    margin: 10px 0 4px;
    font-size: 14px;
    color: #333;
  }
  
  select {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border-radius: 12px;
    border: 2px solid #ccc;
    outline: none;
    margin-bottom: 10px;
    box-sizing: border-box;
  }

/* Tooltip Container */
.info-icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
}

/* Small circle with 'i' */
.circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  font-size: 11px;
  font-weight: bold;
  background-color: #f25278;
  color: white;
  border-radius: 50%;
  cursor: pointer;
}

/* Tooltip box */
.tooltip {
  position: absolute;
  width: 200px;
  top: 130%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f25278;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  white-space: normal;
  text-align: left;
  font-size: 12px;
  line-height: 1.4;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 999;
  max-width: 240px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Show tooltip on hover */
.info-icon:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

/* Fix for mobile */
@media (max-width: 480px) {
  .tooltip {
    width: 100px;
    left: 50%;
    transform: translateX(-50%);
    white-space: normal;
    max-width: 90vw;
    word-wrap: break-word;
    text-align: center;
    font-size: 10px;
  }
}



  
  
  