@charset "utf-8";
/* CSS Document */
:root {
  --bg: #02050a;
  --card: rgba(10, 19, 32, .78);

  --cyan: #00ffe1;
  --green: #39ff88;
  --purple: #b65cff;
  --red: #ff477e;

  --text: #f5f8ff;
  --muted: #78869c;

  --border: rgba(0,255,225,.18);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);

  background:
    radial-gradient(
      circle at 80% 0%,
      rgba(0,255,225,.12),
      transparent 30%
    ),
    radial-gradient(
      circle at 0% 60%,
      rgba(160,80,255,.12),
      transparent 30%
    ),
    var(--bg);

  min-height: 100vh;
  padding-bottom: 100px;
  overflow-x: hidden;
}


/* ================= BACKGROUND ================= */

.background-grid {
  position: fixed;
  inset: 0;

  z-index: -3;

  background-image:
    linear-gradient(
      rgba(0,255,225,.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(0,255,225,.025) 1px,
      transparent 1px
    );

  background-size: 45px 45px;

  mask-image:
    linear-gradient(
      to bottom,
      black,
      transparent 95%
    );
}

.glow {
  position: fixed;

  width: 300px;
  height: 300px;

  border-radius: 50%;

  filter: blur(100px);

  opacity: .10;

  z-index: -2;

  pointer-events: none;
}

.glow-cyan {
  top: 15%;
  left: -180px;
  background: var(--cyan);
}

.glow-purple {
  bottom: 10%;
  right: -180px;
  background: var(--purple);
}


/* ================= APP ================= */

.app {
  width: 100%;
  max-width: 600px;

  margin: auto;

  padding:
    18px
    15px
    30px;
}


/* ================= HEADER ================= */

.header {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 22px;
}

.logo {
  font-size: 20px;

  font-weight: 800;

  letter-spacing: -.8px;
}

.logo span {
  color: var(--cyan);

  text-shadow:
    0 0 8px var(--cyan),
    0 0 25px rgba(0,255,225,.5);
}

.header-actions {
  display: flex;

  align-items: center;

  gap: 8px;
}

.header-icon {
  position: relative;

  width: 38px;
  height: 38px;

  border-radius: 11px;

  color: white;

  border:
    1px solid
    rgba(255,255,255,.09);

  background:
    rgba(255,255,255,.04);

  cursor: pointer;
}

.notification-dot {
  position: absolute;

  width: 7px;
  height: 7px;

  right: 5px;
  top: 5px;

  border-radius: 50%;

  background: var(--cyan);

  box-shadow:
    0 0 10px var(--cyan);
}

.profile {
  width: 39px;
  height: 39px;

  border: 0;

  border-radius: 50%;

  color: #00120d;

  font-weight: 800;

  background:
    linear-gradient(
      135deg,
      var(--cyan),
      var(--green),
      var(--purple)
    );

  box-shadow:
    0 0 15px rgba(0,255,225,.45);
}

.menu-button {
  display: none;
}


/* ================= GREETING ================= */

.greeting {
  display: flex;

  align-items: flex-start;

  justify-content: space-between;

  margin-bottom: 17px;
}

.greeting h1 {
  font-size: 22px;

  line-height: 1.3;
}

.greeting p {
  color: var(--muted);

  font-size: 11px;

  margin-top: 5px;
}

.live-badge {
  display: flex;

  align-items: center;

  gap: 6px;

  padding:
    7px 10px;

  border-radius: 20px;

  color: var(--green);

  font-size: 9px;

  border:
    1px solid
    rgba(57,255,136,.2);

  background:
    rgba(57,255,136,.06);

  box-shadow:
    0 0 20px
    rgba(57,255,136,.05);
}

.live-badge span {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--green);

  box-shadow:
    0 0 8px var(--green);

  animation:
    pulse 1.5s infinite;
}


/* ================= GLASS ================= */

.glass-card {
  position: relative;

  background:
    linear-gradient(
      145deg,
      rgba(18,31,48,.82),
      rgba(5,10,18,.78)
    );

  border:
    1px solid

    var(--border);

  border-radius: 20px;

  backdrop-filter: blur(25px);

  box-shadow:
    inset 0 1px
    rgba(255,255,255,.07),

    inset 0 0 35px
    rgba(0,255,225,.018),

    0 20px 55px
    rgba(0,0,0,.4);

  overflow: hidden;
}

.glass-card::before {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  top: -130px;
  right: -80px;

  background: var(--cyan);

  opacity: .12;

  filter: blur(50px);

  pointer-events: none;
}


/* ================= PORTFOLIO ================= */

.portfolio-card {
  padding: 20px;

  margin-bottom: 12px;
}

.portfolio-header {
  display: flex;

  justify-content: space-between;

  align-items: flex-start;
}

.eyebrow {
  color: var(--cyan);

  font-size: 10px;

  letter-spacing: 1px;
}

.portfolio-value {
  font-size: 31px;

  font-weight: 800;

  letter-spacing: -1.5px;

  margin-top: 7px;
}

.portfolio-change {
  color: var(--green);

  font-size: 11px;

  margin-top: 7px;

  text-shadow:
    0 0 10px
    rgba(57,255,136,.25);
}

.portfolio-change span {
  color: var(--green);
}

.portfolio-change b {
  color: #b7c3d4;

  font-weight: 500;

  margin-left: 7px;

  padding:
    4px 7px;

  border-radius: 7px;

  background:
    rgba(255,255,255,.06);
}

.wallet-button {
  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 13px;

  color: var(--cyan);

  font-size: 25px;

  border:
    1px solid
    rgba(0,255,225,.3);

  background:
    rgba(0,255,225,.05);

  box-shadow:
    0 0 20px
    rgba(0,255,225,.08);
}


/* ================= CHART ================= */

.chart-container {
  height: 185px;

  position: relative;

  margin-top: 14px;
}

.chart {
  width: 100%;
  height: 100%;
}

.chart-line {
  fill: none;

  stroke: var(--cyan);

  stroke-width: 3;

  filter:
    drop-shadow(0 0 5px var(--cyan))
    drop-shadow(0 0 12px var(--cyan));
}

.chart-area {
  fill: url(#chartGradient);
}

.chart-point {
  fill: var(--cyan);

  filter:
    drop-shadow(0 0 8px var(--cyan));
}

.chart-price {
  position: absolute;

  right: 0;

  color: #708096;

  font-size: 9px;
}

.chart-price.top {
  top: 8px;
}

.chart-price.middle {
  top: 72px;
}

.chart-price.bottom {
  top: 130px;
}


/* ================= RANGE ================= */

.chart-range {
  display: flex;

  justify-content: space-between;

  margin-top: 4px;
}

.chart-range button {
  color: #6d7a8f;

  border: 0;

  background: transparent;

  font-size: 10px;

  padding:
    6px 9px;

  cursor: pointer;
}

.chart-range button.active {
  color: var(--cyan);

  border-radius: 15px;

  background:
    rgba(0,255,225,.08);

  border:
    1px solid
    rgba(0,255,225,.2);

  box-shadow:
    0 0 12px
    rgba(0,255,225,.08);
}


/* ================= ACTIONS ================= */

.actions {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 10px;

  margin-bottom: 22px;
}

.action-button {
  min-height: 65px;

  display: flex;

  align-items: center;

  gap: 12px;

  text-align: left;

  padding: 12px;

  border-radius: 14px;

  cursor: pointer;

  background: transparent;

  transition: .25s;
}

.action-button:hover {
  transform:
    translateY(-3px);
}

.deposit {
  color: var(--cyan);

  border:
    1px solid
    rgba(0,255,225,.35);

  background:
    linear-gradient(
      135deg,
      rgba(0,255,225,.11),
      rgba(0,255,225,.02)
    );

  box-shadow:
    0 0 20px
    rgba(0,255,225,.06);
}

.withdraw {
  color: var(--purple);

  border:
    1px solid
    rgba(182,92,255,.35);

  background:
    linear-gradient(
      135deg,
      rgba(182,92,255,.11),
      rgba(182,92,255,.02)
    );

  box-shadow:
    0 0 20px
    rgba(182,92,255,.06);
}

.action-icon {
  font-size: 26px;
}

.action-button strong,
.action-button small {
  display: block;
}

.action-button strong {
  font-size: 13px;
}

.action-button small {
  margin-top: 4px;

  color: #718096;

  font-size: 9px;
}


/* ================= SECTION ================= */

.section {
  margin-bottom: 21px;
}

.section-title {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 12px;
}

.section-title h2 {
  font-size: 16px;
}

.section-title button {
  color: var(--cyan);

  border: 0;

  background: transparent;

  font-size: 10px;

  cursor: pointer;
}

.live-market {
  display: flex;

  align-items: center;

  gap: 5px;

  color: var(--green);

  font-size: 10px;
}

.live-market i {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--green);

  box-shadow:
    0 0 8px var(--green);
}


/* ================= WATCHLIST ================= */

.watchlist {
  display: flex;

  gap: 10px;

  overflow-x: auto;

  scrollbar-width: none;

  padding:
    2px 1px
    7px;
}

.watchlist::-webkit-scrollbar {
  display: none;
}

.crypto-card {
  position: relative;

  min-width: 145px;

  padding: 14px;

  border-radius: 16px;

  background:
    linear-gradient(
      145deg,
      rgba(20,34,52,.85),
      rgba(5,11,19,.82)
    );

  border:
    1px solid
    rgba(255,255,255,.08);

  box-shadow:
    inset 0 1px
    rgba(255,255,255,.05),

    0 14px 30px
    rgba(0,0,0,.25);

  transition: .25s;
}

.crypto-card:hover {
  transform:
    translateY(-5px)
    rotateX(2deg);

  border-color:
    rgba(0,255,225,.25);

  box-shadow:
    0 15px 35px
    rgba(0,255,225,.08);
}

.crypto-card-top {
  display: flex;

  justify-content: space-between;

  align-items: center;
}

.coin {
  width: 36px;
  height: 36px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  font-size: 20px;

  font-weight: 800;

  color: white;

  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(255,255,255,.4),
      transparent 35%
    ),
    #121e2d;

  border:
    1px solid
    rgba(255,255,255,.12);

  box-shadow:
    inset -4px -5px 10px
    rgba(0,0,0,.5),

    0 0 15px
    rgba(0,255,225,.08);
}

.bitcoin {
  background:
    radial-gradient(
      circle,
      #ffad00,
      #d66d00
    );

  box-shadow:
    0 0 18px
    rgba(255,165,0,.3);
}

.ethereum {
  color: white;

  background:
    linear-gradient(
      135deg,
      #7357ff,
      #3139bb
    );

  box-shadow:
    0 0 18px
    rgba(115,87,255,.35);
}

.solana {
  color: #fff;

  background:
    linear-gradient(
      135deg,
      #00ffa3,
      #9945ff
    );
}

.xrp {
  background:
    linear-gradient(
      135deg,
      #17202c,
      #3e4858
    );
}

.favorite {
  color: #8290a6;

  border: 0;

  background: transparent;

  font-size: 20px;

  cursor: pointer;
}

.favorite.active {
  color: var(--cyan);

  text-shadow:
    0 0 10px var(--cyan);
}

.crypto-name {
  margin-top: 12px;

  font-size: 12px;

  font-weight: 600;
}

.crypto-symbol {
  color: #718096;

  font-size: 9px;

  margin-top: 3px;
}

.crypto-price {
  font-size: 16px;

  font-weight: 700;

  margin-top: 8px;
}

.crypto-change {
  font-size: 9px;

  margin-top: 5px;
}

.positive {
  color: var(--green);

  text-shadow:
    0 0 8px
    rgba(57,255,136,.18);
}

.negative {
  color: var(--red);
}

.mini-chart {
  margin-top: 9px;

  font-size: 17px;

  letter-spacing: -3px;

  white-space: nowrap;
}

.green-chart {
  color: var(--green);

  text-shadow:
    0 0 7px
    rgba(57,255,136,.5);
}

.purple-chart {
  color: var(--purple);

  text-shadow:
    0 0 7px
    rgba(182,92,255,.5);
}

.red-chart {
  color: var(--red);

  text-shadow:
    0 0 7px
    rgba(255,71,126,.5);
}


/* ================= MARKET ================= */

.market-card {
  padding: 6px 15px;
}

.market-row {
  display: grid;

  grid-template-columns:
    1.5fr
    1fr
    .7fr
    .6fr;

  align-items: center;

  min-height: 68px;

  border-bottom:
    1px solid
    rgba(255,255,255,.05);
}

.market-row:last-child {
  border-bottom: 0;
}

.market-asset {
  display: flex;

  align-items: center;

  gap: 9px;
}

.market-asset strong {
  display: block;

  font-size: 11px;
}

.market-asset small {
  display: block;

  color: #647289;

  font-size: 8px;

  margin-top: 3px;
}

.market-price {
  text-align: right;

  font-size: 10px;

  font-weight: 600;
}

.market-change {
  text-align: right;

  font-size: 9px;
}

.market-mini {
  text-align: right;

  font-size: 15px;

  letter-spacing: -3px;
}


/* ================= NEWS ================= */

.news-card {
  display: flex;

  align-items: center;

  gap: 12px;

  padding: 14px;
}

.news-icon {
  width: 42px;
  height: 42px;

  flex-shrink: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  color: var(--purple);

  font-size: 20px;

  border-radius: 12px;

  background:
    rgba(182,92,255,.08);

  border:
    1px solid
    rgba(182,92,255,.2);

  box-shadow:
    0 0 18px
    rgba(182,92,255,.08);
}

.news-content {
  flex: 1;
}

.news-content h3 {
  font-size: 11px;

  line-height: 1.45;
}

.news-content p {
  color: #647289;

  font-size: 8px;

  margin-top: 5px;
}

.news-image {
  width: 55px;
  height: 45px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 9px;

  font-size: 25px;

  color: #00ffe1;

  background:
    radial-gradient(
      circle,
      rgba(0,255,225,.2),
      rgba(0,20,35,.8)
    );

  border:
    1px solid
    rgba(0,255,225,.15);

  text-shadow:
    0 0 15px var(--cyan);
}


/* ================= BOTTOM NAV ================= */

.bottom-nav {
  position: fixed;

  left: 50%;
  bottom: 12px;

  transform:
    translateX(-50%);

  width:
    calc(100% - 24px);

  max-width: 580px;

  height: 68px;

  display: flex;

  align-items: center;

  justify-content: space-around;

  padding:
    7px 8px;

  z-index: 100;

  border-radius: 21px;

  background:
    rgba(6,13,23,.88);

  backdrop-filter: blur(25px);

  border:
    1px solid
    rgba(0,255,225,.17);

  box-shadow:
    0 15px 45px
    rgba(0,0,0,.65),

    0 0 25px
    rgba(0,255,225,.05);
}

.nav-item {
  height: 54px;

  min-width: 55px;

  border: 0;

  color: #75839a;

  background: transparent;

  border-radius: 14px;

  font-size: 8px;

  cursor: pointer;
}

.nav-item span {
  display: block;

  font-size: 19px;

  margin-bottom: 4px;
}

.nav-item.active {
  color: var(--cyan);

  background:
    rgba(0,255,225,.07);

  text-shadow:
    0 0 10px
    rgba(0,255,225,.5);
}

.trade-button {
  width: 52px;
  height: 52px;

  border-radius: 50%;

  border:
    1px solid
    rgba(0,255,225,.65);

  color: #00110d;

  background:
    linear-gradient(
      135deg,
      var(--cyan),
      var(--green)
    );

  font-size: 30px;

  line-height: 1;

  box-shadow:
    0 0 15px
    rgba(0,255,225,.5),

    0 0 40px
    rgba(0,255,225,.2);

  cursor: pointer;

  transform:
    translateY(-13px);

  transition: .25s;
}

.trade-button:hover {
  transform:
    translateY(-15px)
    scale(1.06);

  box-shadow:
    0 0 20px
    var(--cyan),

    0 0 50px
    rgba(0,255,225,.35);
}


/* ================= ANIMATIONS ================= */

@keyframes pulse {

  0%,100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .4;
    transform: scale(.75);
  }

}


/* ================= TABLET / DESKTOP ================= */

@media (min-width: 700px) {

  .app {
    max-width: 900px;
  }

  .menu-button {
    display: block;
  }

  .portfolio-card {
    padding: 25px;
  }

  .portfolio-value {
    font-size: 38px;
  }

  .watchlist {
    display: grid;

    grid-template-columns:
      repeat(4, 1fr);

    overflow: visible;
  }

  .crypto-card {
    min-width: 0;
  }

}


/* ================= SMALL PHONES ================= */

@media (max-width: 380px) {

  .app {
    padding-left: 11px;
    padding-right: 11px;
  }

  .logo {
    font-size: 17px;
  }

  .header-icon {
    width: 34px;
    height: 34px;
  }

  .profile {
    width: 35px;
    height: 35px;
  }

  .greeting h1 {
    font-size: 19px;
  }

  .portfolio-value {
    font-size: 27px;
  }

  .crypto-card {
    min-width: 137px;
  }

}

/* =====================================================
   MULTI SCREEN SYSTEM
   ===================================================== */

.screen {
  display: none;
  animation: screenIn .35s ease;
}

.screen.active {
  display: block;
}

@keyframes screenIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =====================================================
   PAGE HEADING
   ===================================================== */

.page-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin:
    12px 0 20px;
}

.page-heading h1 {
  font-size: 29px;
  margin-top: 4px;
}

.coin-selector {
  padding: 10px 13px;

  border-radius: 12px;

  color: var(--cyan);

  background:
    rgba(0,255,225,.06);

  border:
    1px solid
    rgba(0,255,225,.2);

  font-size: 11px;
}


/* =====================================================
   SEARCH
   ===================================================== */

.search-box {
  height: 48px;

  display: flex;
  align-items: center;

  gap: 10px;

  padding: 0 15px;

  border-radius: 14px;

  background:
    rgba(255,255,255,.035);

  border:
    1px solid
    rgba(255,255,255,.08);

  margin-bottom: 15px;
}

.search-box span {
  color: var(--cyan);
  font-size: 22px;
}

.search-box input {
  width: 100%;

  border: 0;
  outline: 0;

  color: white;

  background: transparent;

  font-family: inherit;

  font-size: 12px;
}


/* =====================================================
   MARKET TABS
   ===================================================== */

.market-tabs {
  display: flex;

  gap: 8px;

  overflow-x: auto;

  margin-bottom: 15px;

  scrollbar-width: none;
}

.market-tabs::-webkit-scrollbar {
  display: none;
}

.market-tabs button {
  white-space: nowrap;

  border: 0;

  color: #75839a;

  background:
    rgba(255,255,255,.035);

  border-radius: 20px;

  padding:
    8px 14px;

  font-size: 10px;
}

.market-tabs button.active {
  color: var(--cyan);

  background:
    rgba(0,255,225,.08);

  border:
    1px solid
    rgba(0,255,225,.2);

  box-shadow:
    0 0 15px
    rgba(0,255,225,.06);
}


/* =====================================================
   MARKET LIST
   ===================================================== */

.market-list {
  display: flex;

  flex-direction: column;

  gap: 9px;
}

.market-item {
  display: grid;

  grid-template-columns:
    42px 1fr .8fr auto;

  align-items: center;

  gap: 10px;

  min-height: 75px;

  padding: 12px;

  border-radius: 17px;

  background:
    linear-gradient(
      145deg,
      rgba(17,30,47,.82),
      rgba(5,10,18,.78)
    );

  border:
    1px solid
    rgba(255,255,255,.07);

  box-shadow:
    inset 0 1px
    rgba(255,255,255,.05),

    0 12px 30px
    rgba(0,0,0,.25);

  transition: .25s;
}

.market-item:hover {
  transform: translateY(-3px);

  border-color:
    rgba(0,255,225,.25);
}

.market-coin {
  width: 38px;
  height: 38px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  font-weight: 800;
  font-size: 19px;
}

.market-info strong {
  display: block;
  font-size: 12px;
}

.market-info small {
  display: block;

  margin-top: 3px;

  color: #65738a;

  font-size: 9px;
}

.market-spark {
  font-size: 16px;
  letter-spacing: -3px;
}

.market-values {
  text-align: right;
}

.market-values strong {
  display: block;
  font-size: 11px;
}

.market-values span {
  display: block;

  margin-top: 4px;

  font-size: 9px;
}


/* =====================================================
   TRADING
   ===================================================== */

.trading-card {
  padding: 16px;

  margin-bottom: 12px;
}

.trade-price span {
  display: block;

  color: #75839a;

  font-size: 9px;
}

.trade-price strong {
  display: block;

  font-size: 29px;

  margin-top: 6px;
}

.trade-price small {
  display: block;

  margin-top: 4px;

  font-size: 10px;
}

.trading-chart {
  height: 230px;

  margin-top: 15px;
}

.trading-chart svg {
  width: 100%;
  height: 100%;
}

.trade-line {
  fill: none;

  stroke: var(--purple);

  stroke-width: 4;

  filter:
    drop-shadow(0 0 5px var(--purple))
    drop-shadow(0 0 12px var(--purple));
}

.trade-area {
  fill: url(#tradeGradient);
}

.time-buttons {
  display: flex;

  justify-content: space-between;

  margin-top: 7px;
}

.time-buttons button {
  color: #6e7d92;

  background: transparent;

  border: 0;

  font-size: 10px;

  padding: 6px;
}

.time-buttons button.active {
  color: var(--purple);

  text-shadow:
    0 0 10px
    var(--purple);
}


/* =====================================================
   TRADE TYPE
   ===================================================== */

.trade-type {
  display: flex;

  padding: 4px;

  margin-bottom: 10px;

  border-radius: 12px;

  background:
    rgba(255,255,255,.035);
}

.trade-type button {
  flex: 1;

  padding: 10px;

  color: #728096;

  border: 0;

  background: transparent;

  border-radius: 9px;

  font-size: 10px;
}

.trade-type button.active {
  color: var(--cyan);

  background:
    rgba(0,255,225,.08);
}


/* =====================================================
   ORDER
   ===================================================== */

.order-card {
  padding: 16px;
}

.buy-sell {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 7px;

  margin-bottom: 17px;
}

.buy-sell button {
  padding: 12px;

  border-radius: 10px;

  color: #6f7e93;

  background:
    rgba(255,255,255,.035);

  border: 1px solid transparent;
}

.buy-sell .buy.active {
  color: var(--green);

  border-color:
    rgba(57,255,136,.3);

  background:
    rgba(57,255,136,.07);
}

.buy-sell .sell {
  color: var(--red);
}

.order-card label {
  display: block;

  color: #718096;

  font-size: 9px;

  margin:
    13px 0 6px;
}

.balance {
  color: white;

  font-size: 12px;

  padding-bottom: 5px;
}

.input-box {
  display: flex;

  align-items: center;

  gap: 8px;

  height: 47px;

  padding: 0 12px;

  border-radius: 11px;

  background:
    rgba(255,255,255,.035);

  border:
    1px solid
    rgba(255,255,255,.08);
}

.input-box input {
  flex: 1;

  min-width: 0;

  color: white;

  background: transparent;

  border: 0;

  outline: 0;

  font-family: inherit;
}

.input-box span {
  color: var(--cyan);

  font-size: 10px;
}

.input-box button {
  color: #7d8ba0;

  background: transparent;

  border: 0;
}

.percentage {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 5px;

  margin-top: 8px;
}

.percentage button {
  color: #758399;

  background:
    rgba(255,255,255,.035);

  border: 0;

  padding: 7px;

  border-radius: 8px;

  font-size: 9px;
}

.place-order {
  width: 100%;

  height: 48px;

  margin-top: 17px;

  border: 0;

  border-radius: 12px;

  color: #00130e;

  font-weight: 800;

  background:
    linear-gradient(
      135deg,
      var(--cyan),
      var(--green)
    );

  box-shadow:
    0 0 20px
    rgba(0,255,225,.25);
}


/* =====================================================
   WALLET
   ===================================================== */

.wallet-total {
  padding: 20px;

  text-align: center;
}

.wallet-total-value {
  font-size: 34px;

  font-weight: 800;

  margin:
    8px 0;
}

.wallet-actions {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 8px;

  margin-top: 20px;
}

.wallet-actions button {
  padding: 11px 5px;

  color: var(--cyan);

  border-radius: 11px;

  border:
    1px solid
    rgba(0,255,225,.16);

  background:
    rgba(0,255,225,.05);

  font-size: 9px;
}

.wallet-actions span {
  display: block;

  font-size: 18px;

  margin-bottom: 4px;
}

.asset-list {
  padding:
    5px 15px;
}

.asset-row {
  display: flex;

  align-items: center;

  gap: 10px;

  padding:
    13px 0;

  border-bottom:
    1px solid
    rgba(255,255,255,.05);
}

.asset-row:last-child {
  border-bottom: 0;
}

.asset-name {
  flex: 1;
}

.asset-name strong,
.asset-name small {
  display: block;
}

.asset-name strong {
  font-size: 11px;
}

.asset-name small {
  color: #647289;

  margin-top: 3px;

  font-size: 8px;
}

.asset-value {
  text-align: right;
}

.asset-value strong,
.asset-value small {
  display: block;
}

.asset-value strong {
  font-size: 10px;
}

.asset-value small {
  margin-top: 4px;

  font-size: 8px;
}

.activity-card {
  padding:
    5px 15px;
}

.activity-row {
  display: flex;

  align-items: center;

  gap: 10px;

  padding:
    12px 0;

  border-bottom:
    1px solid
    rgba(255,255,255,.05);
}

.activity-row:last-child {
  border: 0;
}

.activity-row > div {
  flex: 1;
}

.activity-row strong,
.activity-row small {
  display: block;
}

.activity-row strong {
  font-size: 10px;
}

.activity-row small {
  color: #68768b;

  font-size: 8px;

  margin-top: 4px;
}

.activity-row b {
  font-size: 9px;
}

.activity-icon {
  width: 35px;
  height: 35px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 10px;
}

.activity-icon.green {
  color: var(--green);

  background:
    rgba(57,255,136,.07);
}

.activity-icon.purple {
  color: var(--purple);

  background:
    rgba(182,92,255,.07);
}


/* =====================================================
   PROFILE
   ===================================================== */

.profile-heading {
  text-align: center;

  padding:
    15px 0 25px;
}

.profile-large {
  width: 82px;
  height: 82px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin: auto;

  border-radius: 50%;

  font-size: 31px;

  font-weight: 800;

  color: #00130e;

  background:
    linear-gradient(
      135deg,
      var(--cyan),
      var(--green),
      var(--purple)
    );

  box-shadow:
    0 0 25px
    rgba(0,255,225,.35);
}

.profile-heading h1 {
  margin-top: 12px;

  font-size: 20px;
}

.profile-heading p {
  color: #718096;

  font-size: 10px;

  margin-top: 4px;
}

.verified {
  display: inline-block;

  margin-top: 9px;

  padding:
    5px 9px;

  border-radius: 20px;

  color: var(--green);

  background:
    rgba(57,255,136,.06);

  border:
    1px solid
    rgba(57,255,136,.15);

  font-size: 8px;
}

.profile-card {
  padding:
    4px 15px;
}

.profile-option {
  width: 100%;

  display: flex;

  align-items: center;

  gap: 12px;

  padding:
    15px 0;

  color: white;

  text-align: left;

  background: transparent;

  border: 0;

  border-bottom:
    1px solid
    rgba(255,255,255,.05);

}

.profile-option:last-child {
  border: 0;
}

.option-icon {
  width: 36px;
  height: 36px;

  display: flex;

  align-items: center;
  justify-content: center;

  color: var(--cyan);

  border-radius: 10px;

  background:
    rgba(0,255,225,.06);
}

.profile-option div {
  flex: 1;
}

.profile-option strong,
.profile-option small {
  display: block;
}

.profile-option strong {
  font-size: 10px;
}

.profile-option small {
  color: #66748a;

  font-size: 8px;

  margin-top: 3px;
}

.profile-option b {
  color: #65738a;

  font-size: 18px;
}

.logout-button {
  width: 100%;

  height: 48px;

  margin-top: 15px;

  border-radius: 12px;

  color: var(--red);

  border:
    1px solid
    rgba(255,71,126,.2);

  background:
    rgba(255,71,126,.05);

  font-weight: 600;
}


/* =====================================================
   LOGIN
   ===================================================== */

.login-screen {
  padding-top: 35px;
}

.login-logo {
  text-align: center;

  margin-bottom: 25px;
}

.logo-mark {
  width: 65px;
  height: 65px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin: auto;

  border-radius: 20px;

  color: #00130e;

  font-size: 30px;

  font-weight: 900;

  background:
    linear-gradient(
      135deg,
      var(--cyan),
      var(--green)
    );

  box-shadow:
    0 0 30px
    rgba(0,255,225,.3);
}

.login-logo h1 {
  margin-top: 15px;

  font-size: 24px;
}

.login-logo h1 span {
  color: var(--cyan);

  text-shadow:
    0 0 12px
    rgba(0,255,225,.5);
}

.login-logo p {
  color: #647289;

  font-size: 9px;

  margin-top: 6px;
}

.login-card {
  padding: 22px;
}

.login-card h2 {
  font-size: 22px;
}

.login-card > p {
  color: #718096;

  font-size: 10px;

  margin:
    6px 0 22px;
}

.login-card label {
  display: block;

  color: #8390a4;

  font-size: 9px;

  margin:
    13px 0 6px;
}

.login-options {
  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-top: 10px;
}

.login-options label {
  display: flex;

  align-items: center;

  gap: 5px;

  margin: 0;

  font-size: 8px;
}

.login-options a,
.signup a {
  color: var(--cyan);

  text-decoration: none;

  font-size: 8px;
}

.login-button {
  width: 100%;

  height: 48px;

  margin-top: 18px;

  border: 0;

  border-radius: 12px;

  font-weight: 800;

  color: #00130e;

  background:
    linear-gradient(
      135deg,
      var(--cyan),
      var(--green)
    );

  box-shadow:
    0 0 22px
    rgba(0,255,225,.25);
}
.login-buttonp {
  width: 100%;

  height: 48px;

  margin-top: 18px;

  border: 0;

  border-radius: 12px;

  font-weight: 800;

  color: #00130e;

  background:
    linear-gradient(
      135deg,
      var(--purple),
      var(--red)
    );

  box-shadow:
    0 0 22px
    rgba(10,155,350,.25);
}

.divider {
  display: flex;

  align-items: center;

  gap: 10px;

  margin:
    20px 0;
}

.divider::before,
.divider::after {
  content: "";

  height: 1px;

  flex: 1;

  background:
    rgba(255,255,255,.07);
}

.divider span {
  color: #59677c;

  font-size: 8px;
}

.social-button {
  width: 100%;

  height: 44px;

  border-radius: 11px;

  color: white;

  background:
    rgba(255,255,255,.04);

  border:
    1px solid
    rgba(255,255,255,.08);

  font-size: 10px;
}

.signup {
  text-align: center;

  margin-top: 20px !important;

  font-size: 9px !important;
}
