
.container1 {
    max-width: 450px;
    width: 100%;
    margin-right: 0;
  }
  
  .header {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .header h1 {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
  
  .header p {
    color: #c084fc;
    font-size: 0.9rem;
  }
  
  .price-ribbon {
    background: rgba(126, 34, 206, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 0.8rem;
    text-align: center;
  }
  
  .price-ribbon-text {
    color: #e9d5ff;
  }
  
  .qc-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid #475569;
    border-radius: 15px;
    padding: 25px;
  }
  
  .card-title {
    font-size: 1.3rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .card-subtitle {
    color: #94a3b8;
    margin-bottom: 20px;
    font-size: 0.85rem;
  }
  
  .chain-option {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    padding-right: 50px;
  }
  
  .chain-option:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
  }
  
  .chain-option.bnb {
    background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
  }
  
  .chain-info {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .chain-logo img{
  max-width: 29px;
  height: auto;
  }
  
  .chain-details h3 {
  font-size: 1rem;
  margin-bottom: 3px;
  text-align: left;
  line-height: 1.1;
  }
  
  .chain-details p {
  font-size: 0.69rem;
  opacity: 0.9;
  line-height: 1.29;
  }
  
  
  .info-link {
    display: block;
    text-align: center;
    color: #c084fc;
    text-decoration: none;
    margin-top: 12px;
    font-size: 0.8rem;
  }
  
  .info-link:hover {
    color: #e9d5ff;
  }
  
  .wallet-info {
    background: rgba(51, 65, 85, 0.5);
    border-radius: 8px;
    padding: 12px;
    margin: 15px 0;
    font-size: 0.85rem;
  }
  
  .wallet-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
  }
  
  .wallet-header span {
    color: #94a3b8;
    font-size: 0.75rem;
  }
  
  .change-btn {
    color: #c084fc;
    font-size: 0.7rem;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
  }
  
  .wallet-address {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Courier New', monospace;
    margin-bottom: 10px;
    font-size: 0.85rem;
  }
  
  .wallet-stats {
    border-top: 1px solid #475569;
    padding-top: 10px;
    font-size: 0.75rem;
    color: #94a3b8;
  }
  
  .wallet-stats p {
    margin-bottom: 3px;
  }
  
  .payment-option {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .payment-option:hover {
    transform: translateY(-2px);
  }
  
  .payment-option.moonpay {
    background: linear-gradient(135deg, #9333ea 0%, #7e22ce 100%);
  }
  
  .payment-details h4 {
    font-size: 1rem;
    margin-bottom: 5px;
  }
  
  .payment-details p {
    font-size: 0.75rem;
    opacity: 0.9;
  }
  
  .back-btn {
    color: #c084fc;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
    margin-bottom: 15px;
    padding: 0;
  }
  
  .back-btn:hover {
    color: #e9d5ff;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-group label {
    display: block;
    color: #cbd5e1;
    margin-bottom: 6px;
    font-size: 0.85rem;
  }
  
  .form-group input {
    width: 100%;
    background: #334155;
    border: 1px solid #475569;
    border-radius: 8px;
    padding: 12px;
    color: #fff;
    font-size: 0.9rem;
  }
  
  .form-group input:focus {
    outline: none;
    border-color: #a855f7;
  }
  
  .transaction-summary {
    background: rgba(51, 65, 85, 0.5);
    border-radius: 8px;
    padding: 12px;
    margin: 15px 0;
    font-size: 0.85rem;
  }
  
  .summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 8px;
  }
  
  .summary-row:not(:last-child) {
    border-bottom: 1px solid #475569;
  }
  
  .summary-row span:first-child {
    color: #94a3b8;
  }
  
  .summary-row span:last-child {
    color: #fff;
    font-weight: 600;
  }
  
  .alert {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid #ef4444;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
    font-size: 0.8rem;
  }
  
  .alert h5 {
    color: #fecaca;
    margin-bottom: 5px;
  }
  
  .alert p {
    color: #fca5a5;
    margin-bottom: 6px;
  }
  
  .alert-link {
    color: #fecaca;
    text-decoration: underline;
    font-size: 0.75rem;
  }
  
  .btn-primary {
    width: 100%;
    background: linear-gradient(135deg, #9333ea 0%, #7e22ce 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(147, 51, 234, 0.4);
  }
  
  .btn-primary:disabled {
    background: linear-gradient(135deg, #475569 0%, #334155 100%);
    cursor: not-allowed;
  }
  
  .btn-secondary {
    width: 100%;
    background: #334155;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 8px;
  }
  
  .btn-secondary:hover {
    background: #475569;
  }
  
  .success-icon {
    width: 60px;
    height: 60px;
    background: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2rem;
  }
  
  .confirmation-box {
    background: rgba(51, 65, 85, 0.5);
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    font-size: 0.85rem;
  }
  
  .confirmation-item {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }
  
  .confirmation-item:not(:last-child) {
    border-bottom: 1px solid #475569;
  }
  
  .confirmation-label {
    color: #94a3b8;
    font-size: 0.75rem;
    margin-bottom: 4px;
  }
  
  .confirmation-value {
    color: #fff;
    font-size: 0.9rem;
    word-break: break-all;
  }
  
  .confirmation-value.large {
    font-size: 1.3rem;
    font-weight: 700;
  }
  
  .confirmation-value.success {
    color: #4ade80;
    font-size: 1.5rem;
  }
  
  .moonpay-info {
    background: rgba(126, 34, 206, 0.3);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 8px;
    padding: 12px;
    margin: 15px 0;
    font-size: 0.8rem;
  }
  
  .moonpay-info h4 {
    margin-bottom: 10px;
    font-size: 0.95rem;
  }
  
  .moonpay-info ul {
    list-style: none;
    margin-bottom: 10px;
  }
  
  .moonpay-info li {
    color: #e9d5ff;
    margin-bottom: 5px;
  }
  
  .moonpay-info .info-note {
    color: #c084fc;
    font-size: 0.7rem;
  }
  
  .footer {
    text-align: center;
    margin-top: 15px;
    color: #94a3b8;
    font-size: 0.75rem;
  }
  
  .hidden {
    display: none;
  }
  
  
  .arrow-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;   /* arrow size */
    height: 28px;
    opacity: 0.9;
    transition: transform 0.3s ease;
    pointer-events: none; 
  }
  
  .arrow-icon img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
  }
  
  .chain-option:hover .arrow-icon {
    transform: translateY(-50%) translateX(4px);
  }
  