* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #f5f5f5;
  color: #333;
}


.container {
            max-width: 400px;
            margin: 0 auto;
            background: white;
            min-height: 100vh;
        }
.mobile-container {
  max-width: 375px;
  margin: 0 auto;
  background-color: #f5f5f5;
  min-height: 100vh;
  position: relative;
  padding-bottom: 80px;
}

/* Chrome, Safari, Edge, Opera के लिए */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox के लिए */
input[type=number] {
  -moz-appearance: textfield;
}


/* Header */
.header {
  background-color: #3284ff;
  color: white;
  padding: 15px 20px;
  
  display: flex;
  align-items: center;
  position: relative;
}

.back-btn {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  margin-right: 15px;
}

.header h1 {
  font-size: 25px;
  font-weight: 600;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  
}

.header-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  
}

/* Tab Navigation */
.tab-container {
  display: flex;
  padding: 20px;
  gap: 15px;
}

.tab-btn {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  background-color: white;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background-color: #3284ff;
  color: white;
}

.tab-icon {
  font-size: 16px;
}

/* Amount Section */
.amount-section {
  padding: 0 20px 20px;
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  background-color: white;
  padding: 20px;
  border-radius: 15px;
}

.amount-btn {
  padding: 15px;
  border: none;
  border-radius: 25px;
  background-color: #f8f8f8;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.amount-btn.active {
  background-color: #3284ff;
  color: white;
}

.amount-btn:hover {
  background-color: #8921ff;
  color: white;
}

/* Balance Section */
.balance-section {
  padding: 0 20px 20px;
}

.balance-card {
  background-color: rgb(207, 207, 207);
  padding: 20px;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.balance-label {
  font-size: 16px;
  color: #000000;
  font-weight: 500;
}

.balance-amount {
  font-size: 16px;
  font-weight: bold;
  color: #000000;
}

/* Input Section */
.input-section {
  padding: 0 20px 20px;
  
}

.amount-input-container {
  background-color: rgb(228, 228, 228);
  padding: 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.currency {
  font-size: 24px;
  font-weight: 600;
  color: #333;
}

.amount-input {
  border: none;
  outline: none;
  font-size: 24px;
  font-weight: 600;
  color: #333;
  background: transparent;
  flex: 1;
}

.amount-input::placeholder {
  color: #999;
}

/* Payment Section */
.payment-section {
  padding: 0 20px 30px;
}

.payment-method {
  background-color: white;
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
}

.payment-method.active {
  background-color: #ffeaea;
}

.payment-method input[type="radio"] {
  display: none;
}

.payment-method label {
  display: block;
  padding: 15px 20px;
  cursor: pointer;
  font-size: 16px;
  color: #333;
  transition: all 0.3s ease;
}

.payment-method.active label {
  color: #e53e3e;
  font-weight: 500;
}

/* Pay Button */
.pay-btn {
  width: calc(100% - 40px);
  margin: 0 20px 30px;
  padding: 15px;
  background-color: #3284ff;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pay-btn:hover {
  background-color: #9a36dd;
}

/* Withdraw Specific Styles */
.withdraw-section {
  padding: 0 20px 20px;
}

.section-title {
  font-size: 18px;
  color: #0e0d0d;
  margin-bottom: 15px;
  font-weight: 600;
}

.password-section {
  padding: 0 20px 30px;
}

.password-input-container {
  background-color: white;
  padding: 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lock-icon {
  font-size: 20px;
  color: #999;
}

.password-input {
  border: none;
  outline: none;
  font-size: 16px;
  color: #333;
  background: transparent;
  flex: 1;
}

.password-input::placeholder {
  color: #999;
}

/* Bank Section */
.bank-section {
  padding: 0 20px 30px;
  background-color: white;
  margin: 0 20px;
  border-radius: 15px;
  padding: 20px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 15px;
  border: 2px solid #3284ff;
  border-radius: 8px;
  outline: none;
  font-size: 16px;
  color: #333;
  background: white;
  transition: all 0.3s ease;
}

.form-input::placeholder {
  color: #999;
  font-weight: 400;
}

.form-input:focus {
  border-color: #002358;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.bind-card-btn {
  width: 100%;
  padding: 15px;
  background-color: #f8f8f8;
  color: #e53e3e;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.settings-icon {
  font-size: 16px;
}

/* Bottom Navigation */

/* Bind Wallet Specific Styles */
.form-container {
  background-color: white;
  margin: 20px;
  border-radius: 15px;
  padding: 30px 20px;
}

.confirm-btn {
  width: 100%;
  padding: 15px;
  background-color: #e53e3e;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.confirm-btn:hover {
  background-color: #d53030;
}

.confirm-btn:active {
  transform: translateY(1px);
}
