/* Euro symbol style */
.euro-symbol {
    color: #0fe96c;
    margin-right: 1px;
    font-size: 24px;
    display: inline-block;
    font-weight: bold;
  }
  
  /* Cashout carousel styles */
  .cashout-cards-section {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    border: none;
    padding: 12px 0;
    margin: 0;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    contain: layout style paint;
  }
  
  .cashout-cards-section::before,
  .cashout-cards-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    display: block;
    background: linear-gradient(to right, transparent, rgba(15, 233, 108, 0.3), transparent);
  }
  
  .cashout-cards-section::before {
    top: 0;
  }
  
  .cashout-cards-section::after {
    bottom: 0;
  }
  
  .cashout-cards-container {
    padding: 0;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    will-change: auto;
  }
  
  .cashout-cards-track {
    display: flex;
    width: auto;
    will-change: transform;
    transform: translateX(0);
    animation: none;
    backface-visibility: hidden;
    perspective: 1000px;
    transform-style: preserve-3d;
  }
  
  .cashout-card {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    background-color: rgb(109, 135, 230);
    border-radius: 10px;
    padding: 8px 10px;
    margin: 0 4px;
    min-width: 140px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    will-change: transform;
    transform: translateZ(0);
  }
  
  .cashout-card:hover {
    transform: translateY(-2px) translateZ(0);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  }
  
  .cashout-logo {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 5px;
    transition: all 0.3s ease;
  }
  
  .cashout-card:hover .cashout-logo {
    background-color: rgba(255, 255, 255, 0.2);
  }
  
  .cashout-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
  
  .cashout-details {
    display: flex;
    flex-direction: row;
    min-width: 0;
    flex: 1;
    align-items: center;
    justify-content: space-between;
  }
  
  .cashout-info {
    display: flex;
    flex-direction: column;
  }
  
  .cashout-bank {
    font-weight: bold;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #ffffff;
    margin-bottom: 1px;
    letter-spacing: 0.3px;
  }
  
  .cashout-label {
    font-size: 10px;
    color: rgba(16, 16, 17, 0.9);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 500;
  }
  
  .cashout-amount {
    font-weight: bold;
    font-size: 24px;
    color: #0fe96c;
    text-shadow: 0 0 8px rgba(15, 233, 108, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    margin-left: 8px;
    white-space: nowrap;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    .cashout-cards-container {
      padding: 0 8px;
      -webkit-overflow-scrolling: touch;
    }
    
    .cashout-cards-track {
      animation-duration: 15s;
    }
    
    .cashout-card {
      min-width: 120px;
    }
    
    .cashout-bank {
      font-size: 12px;
    }
    
    .cashout-amount {
      font-size: 20px;
    }
    
    .cashout-amount .euro-symbol {
      font-size: 20px;
    }
  }
  
  @media (max-width: 480px) {
    .cashout-cards-track {
      animation-duration: 12s;
    }
    
    .cashout-card {
      min-width: 100px;
      padding: 6px 8px;
      margin: 0 3px;
    }
    
    .cashout-amount {
      font-size: 18px;
    }
    
    .cashout-amount .euro-symbol {
      font-size: 18px;
    }
    
    .cashout-logo {
      width: 28px;
      height: 28px;
      margin-right: 6px;
    }
  }
  
  @media (max-width: 768px) {
    .cashout-cards-track {
      backface-visibility: hidden;
    }
    
    .cashout-card {
      backdrop-filter: none;
    }
  }
  
  @media (prefers-reduced-motion: reduce) {
    .cashout-card {
      transition: none;
    }
    
    .cashout-logo {
      transition: none;
    }
    
    .cashout-amount {
      transition: none;
    }
  }