.crypto-card {
    transition: transform 0.3s ease;
    cursor: pointer;
  }
  
  .crypto-card:hover {
    transform: scale(1.05);
    animation: bounce 2.5s;
  }
  
  .method-icon {
    font-size: 24px;
    margin-right: 15px;
  }
  
  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }
  
  .deposit-card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-bottom: 15px;
  }
  
  .instructions-box {
    background-color: #002147;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    color: #ffffff;
    padding: 15px;
  }
  
  .chevron-right {
    margin-left: auto;
    font-size: 24px;
    color: #6c757d;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .qr-code {
    max-width: 200px;
    margin: 0 auto;
    display: block;
  }
  
  .crypto-selection {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .crypto-logo {
    width: 40px;
    height: 40px;
    margin-right: 15px;
  }
  
  .crypto-details {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .wallet-address {
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    font-family: monospace;
    word-break: break-all;
  }
  
  .instructions {
    white-space: pre-wrap;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    font-size: 0.9em;
  }
  
  .amount-input {
    max-width: 300px;
    margin-bottom: 20px;
  }
  
  .submit-button {
    width: 100%;
    max-width: 300px;
  }