:root {
  --bg: #0f1115;
  --card: #1a1d24;
  --card-2: #20242c;
  --accent: #4da3ff;
  --text: #e6e9ef;
  --muted: #9aa3b2;
  --green: #2ecc71;
  --border: rgba(255, 255, 255, 0.06);
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Roboto", serif !important;
  background: radial-gradient(circle at top, #2a2f45, var(--bg));
  color: var(--text);
}

.container {
  max-width: 420px;
  margin: 0 auto;
  padding: 16px;
  height: 100vh;
}

.card {
  background: var(--card);
  border-radius: 20px;
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}

.cardex input {
  background-color: #1a1d24;
  border: 0px solid;
  color: #fff;
  font-size: 32px;
  font-weight: 400;
  padding: 0px 0px 0px 0px;
  width: 100%;
}

.cardex input:active,
.cardex input:hover,
.cardex input:focus {
  outline: 0;
  outline-offset: 0;
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.label {
  font-size: 14px;
  color: var(--muted);
}

.value {
  font-size: 32px;
  margin: 6px 0;
}

.currency {
  font-size: 20px;
  color: var(--text);
  text-align: end;
  display: flex;
  justify-content: end;
}

.currency .ctext {
  margin-right: 5px;
}
.currency .cimg img {
  height: 20px;
}

.badge {
  background: rgba(46, 204, 113, 0.15);
  color: var(--green);
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 6px;
  margin-left: 6px;
}

.btn {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: none;
  background: #2a2f3a;
  color: var(--muted);
  font-size: 16px;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: var(--card-2);
  border-radius: 12px;
}

.tag {
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 6px;
  margin-right: 8px;
}

.tag.eur {
  background: #6c5ce7;
}
.tag.usdt {
  background: #00b894;
}
.tag.aed {
  background: #e67e22;
}
.tag.kzt {
  background: #e84393;
}
.tag.try {
  background: #d63031;
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(20, 22, 28, 0.9);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
}

.nav-item {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

.nav-item.active {
  color: var(--accent);
}

.input {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--card-2);
  color: var(--text);
}

.section-title {
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--muted);
}

.swappicon {
  position: absolute;
  background: #4d5057;
  border-radius: 34px;
  width: 40px;
  height: 40px;
  margin: auto;
  right: 25px;
  top: 90px;
}

.swappicon img {
  width: 32px;
  margin: auto;
  margin-top: 4px;
  margin-left: 4px;
}
