.profile-card {
  max-width: 520px;
}

.profile-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--text-primary);
}

.profile-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.06));
}

.profile-row:last-child {
  border-bottom: none;
}

.profile-label {
  min-width: 130px;
  font-size: 0.82rem;
  color: var(--text-secondary, rgba(255, 255, 255, 0.55));
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.profile-value {
  font-size: 0.92rem;
  color: var(--text-primary);
}

.profile-note {
  font-size: 0.75rem;
  color: var(--text-secondary, rgba(255, 255, 255, 0.4));
  margin-left: 4px;
}

.profile-checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.88rem;
}

.profile-checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--neon-blue, #00d4ff);
  cursor: pointer;
}

.profile-currency-local .money-select {
  min-width: 160px;
}

.profile-info-hint {
  cursor: help;
  font-size: 0.82em;
  color: var(--neon-blue, #00d4ff);
  opacity: 0.85;
  margin-left: 4px;
}

.money-number-wrap {
  display: flex;
  align-items: stretch;
  gap: 8px;
  width: 180px;
}

.money-step-input {
  text-align: center;
  padding: 8px 10px;
  width: 100%;
  min-width: 0;
  -moz-appearance: textfield;
}

.money-step-input::-webkit-outer-spin-button,
.money-step-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.money-stepper {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0;
  width: 34px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(91, 216, 243, 0.35);
  background: linear-gradient(180deg, rgba(4, 18, 40, 0.92), rgba(2, 10, 24, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.money-stepper:focus-within {
  border-color: rgba(34, 211, 238, 0.65);
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.16), 0 0 18px rgba(0, 240, 255, 0.2);
}

.money-step-btn {
  width: 100%;
  min-height: 22px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(4, 13, 39, 0.84), rgba(3, 12, 28, 0.92));
  color: #d8fbff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.money-step-btn + .money-step-btn {
  border-top: 1px solid rgba(91, 216, 243, 0.18);
}

.money-step-btn:hover {
  color: #f5feff;
  background: linear-gradient(180deg, rgba(8, 34, 70, 0.9), rgba(5, 16, 38, 0.95));
  box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.16);
}

.money-step-btn:active {
  background: linear-gradient(180deg, rgba(3, 12, 28, 0.96), rgba(5, 20, 44, 0.9));
  transform: translateY(1px);
}
