/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/.pnpm/next@14.2.13_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[2]!../../node_modules/.pnpm/next@14.2.13_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[3]!./app/globals.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
:root{
  --mc-border: rgba(148,163,184,.14);
  --mc-border-2: rgba(148,163,184,.18);
  --mc-ink: #e2e8f0;
  --mc-muted: rgba(226,232,240,.76);
  --mc-panel: rgba(2,6,23,.42);
  --mc-panel2: rgba(15,23,42,.58);
  --mc-glow: 0 40px 140px rgba(0,0,0,.55);
}
.mc-panel{
  position: relative;
  background: linear-gradient(180deg, rgba(2,6,23,.50), rgba(2,6,23,.34));
  border: 1px solid var(--mc-border);
  border-radius: 22px;
  padding: 16px;
  box-shadow: var(--mc-glow);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  overflow: visible;
}
.mc-panel:before{
  content:'';
  position:absolute;
  inset:-1px;
  border-radius: 22px;
  padding:1px;
  background: radial-gradient(600px 220px at 15% 0%, rgba(59,130,246,.22), transparent 55%),
              radial-gradient(500px 220px at 85% 20%, rgba(34,197,94,.14), transparent 60%),
              radial-gradient(450px 240px at 50% 100%, rgba(168,85,247,.10), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events:none;
  opacity:.9;
}

.mc-btn{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,.16);
  cursor: pointer;
  font-weight: 900;
  font-size: 13px;
  transition: transform .08s ease, filter .2s ease, box-shadow .2s ease, background .2s ease, opacity .2s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--mc-ink);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.mc-btn:disabled{ cursor:not-allowed; opacity:.55; }
.mc-btn.primary{
  background: linear-gradient(180deg, rgba(37,99,235,.30), rgba(37,99,235,.10));
  box-shadow: 0 10px 30px rgba(37,99,235,.12), inset 0 1px 0 rgba(255,255,255,.06);
}
.mc-btn.primary:hover{ filter: brightness(1.08); }
.mc-btn.ghost{
  background: rgba(2,6,23,.34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.mc-btn.ghost:hover{ filter: brightness(1.08); }
.mc-btn.danger{
  background: rgba(239,68,68,.12);
  color: #fecaca;
}

.mc-input{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 9px 12px;
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,.16);
  background: rgba(2,6,23,.34);
  min-width: 280px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.mc-input input{
  width:100%;
  border:none;
  outline:none;
  background:transparent;
  color: var(--mc-ink);
  font-size: 13px;
  font-weight: 700;
}
.mc-input:focus-within{
  border-color: rgba(59,130,246,.45);
  box-shadow: 0 0 0 4px rgba(59,130,246,.12), inset 0 1px 0 rgba(255,255,255,.05);
}

.mc-select{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,.16);
  background: rgba(2,6,23,.34);
  color: var(--mc-ink);
  font-weight: 800;
  min-width: 340px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.mc-select:focus{
  border-color: rgba(59,130,246,.45);
  box-shadow: 0 0 0 4px rgba(59,130,246,.12), inset 0 1px 0 rgba(255,255,255,.05);
}

.mc-dropdown-trigger{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(148,163,184,.16);
  background: linear-gradient(180deg, rgba(2,6,23,.36), rgba(2,6,23,.22));
  color: var(--mc-ink);
  cursor:pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  transition: transform .10s ease, filter .2s ease, border-color .2s ease;
}
.mc-dropdown-trigger:hover{
  border-color: rgba(59,130,246,.36);
  filter: brightness(1.05);
}

.mc-dropdown{
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,.16);
  background: rgba(2,6,23,.92);
  box-shadow: 0 30px 120px rgba(0,0,0,.55), 0 0 0 1px rgba(59,130,246,.08) inset;
  overflow: hidden;
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  animation: mcPop .12s ease-out;
}
@keyframes mcPop{
  from{ transform: translateY(-4px); opacity:0; }
  to{ transform: translateY(0); opacity:1; }
}
.mc-dropdown-head{
  padding: 12px;
  background: linear-gradient(180deg, rgba(15,23,42,.58), rgba(2,6,23,.10));
  border-bottom: 1px solid rgba(148,163,184,.12);
}
.mc-dropdown-list{
  max-height: 360px;
  overflow-y: auto;
  padding-right: 4px;
}
.mc-dropdown-list::-webkit-scrollbar{ width: 10px; }
.mc-dropdown-list::-webkit-scrollbar-thumb{
  background: rgba(148,163,184,.18);
  border-radius: 999px;
  border: 2px solid rgba(2,6,23,.8);
}
.mc-token-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,.10);
  background: rgba(15,23,42,.42);
  margin-bottom: 10px;
  transition: transform .10s ease, border-color .2s ease, background .2s ease;
}
.mc-token-row:hover{
  transform: translateY(-1px);
  border-color: rgba(59,130,246,.22);
  background: rgba(15,23,42,.50);
}

@media (max-width: 980px){
  .mc-input{ min-width: 220px; }
  .mc-select{ min-width: 240px; }
}
/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/.pnpm/next@14.2.13_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[2]!../../node_modules/.pnpm/next@14.2.13_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[3]!./app/landing.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
:root {
  color-scheme: light;
}
html,
body {
  background: #f7faff;
}
body {
  color: #0b1226;
}

/* =========================
   Header / Menu (clean + CTA pill)
   ========================= */
.by-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 50;
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  background: white;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.by-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 18px;
}
.by-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.by-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.by-brandText {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}
.by-brandName {
  font-weight: 1000;
  letter-spacing: 0.2px;
  font-size: 15px;
}
.by-brandSub {
  font-size: 12px;
  opacity: 0.7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.by-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.by-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.74);
  letter-spacing: 0.1px;
  position: relative;
  padding: 8px 10px;
  border-radius: 999px;
}
.by-nav a:hover {
  color: rgba(15, 23, 42, 0.92);
  background: rgba(37, 99, 235, 0.06);
}
.by-cta {
  text-decoration: none;
  border: 1px solid rgba(59, 130, 246, 0.22);
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.14), rgba(59, 130, 246, 0.06));
  color: rgba(37, 99, 235, 0.95) !important;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900 !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 10px 30px rgba(2, 6, 23, 0.06);
}
.by-cta:hover {
  border-color: rgba(59, 130, 246, 0.32);
  filter: brightness(1.02);
}

/* =========================
   Hero + Scan (integrated)
   ========================= */
.by-hero {
  min-height: calc(100vh - 74px);
  display: grid;
  place-items: center;
  padding: 26px 0 40px;
}
.by-heroInner {
  width: 100%;
  max-width: 1020px;
  text-align: center;
  position: relative;
}
.by-heroInner::before,
.by-heroInner::after {
  content: '';
  position: absolute;
  inset: -120px -80px auto -80px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(56, 189, 248, 0.18), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(59, 130, 246, 0.16), transparent 55%);
  filter: blur(12px);
  animation: byFloat 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.by-heroInner::after {
  inset: auto -60px -130px -60px;
  height: 420px;
  animation-duration: 10s;
  opacity: 0.9;
}
@keyframes byFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(12px);
  }
}

.by-heroContent {
  position: relative;
  z-index: 1;
}
.by-heroChips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.by-heroTitle {
  margin-top: 18px;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: -1px;
  font-weight: 1000;
}
.by-gradText {
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.by-heroSubtitle {
  margin: 14px auto 0;
  opacity: 0.82;
  font-size: 16px;
  max-width: 860px;
  line-height: 1.75;
}

/* Scan bar */
.by-scanShell {
  margin: 22px auto 0;
  max-width: 500px;
  border-radius: 28px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 26px 70px rgba(2, 6, 23, 0.12);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.by-scanBar {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 12px;
  gap: 12px;
  align-items: center;
  padding: 12px 12px 12px 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.92), rgba(248, 250, 252, 0.74));
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-family: Lato, Subset, PingFang SC, Microsoft YaHei, Helvetica, Arial, sans-serif;
}
.by-scanLeft {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.by-scanInput {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  color: #0b1226;
  min-width: 0;
}
.by-scanInput::placeholder {
  color: rgba(15, 23, 42, 0.45);
}
.by-hintRow {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  opacity: 0.78;
  font-size: 12px;
}
.by-errorRow {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

/* Buttons / Chips */
.by-btn {
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.6);
  color: #0b1226;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 10px 30px rgba(2, 6, 23, 0.06);
  border-radius: 18px;
  padding: 12px 18px;
  font-weight: 950;
  transition: transform 0.15s ease, filter 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.by-btn:hover {
  border-color: rgba(59, 130, 246, 0.28);
  filter: brightness(1.02);
}
.by-btn:active {
  transform: translateY(1px) scale(0.99);
}
.by-btn.primary {
  border-color: rgba(59, 130, 246, 0.35);
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.96), rgba(96, 165, 250, 0.96));
  color: #ffffff;
  box-shadow: 0 18px 60px rgba(37, 99, 235, 0.25);
  font-family: Lato, Subset, PingFang SC, Microsoft YaHei, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}
.by-btn.primary:disabled {
  opacity: 0.7;
}

.by-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0.03));
  color: #0b1226;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 10px 30px rgba(2, 6, 23, 0.06);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.by-chip.info {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.16), rgba(59, 130, 246, 0.07));
  color: #1d4ed8;
  border-color: rgba(59, 130, 246, 0.16);
}
.by-chip.good {
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.14), rgba(34, 197, 94, 0.06));
  color: #14532d;
  border-color: rgba(34, 197, 94, 0.14);
}
.by-chipIcon {
  display: inline-flex;
}

/* =========================
   Sections (bigger + more pro)
   ========================= */
.by-section {
  padding: 56px 0;
}
.by-sectionHeader {
  text-align: center;
  margin-bottom: 22px;
}
.by-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(59, 130, 246, 0.16);
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.14), rgba(59, 130, 246, 0.06));
  color: rgba(37, 99, 235, 0.95);
  font-size: 12px;
  font-weight: 950;
}
.by-sectionTitle {
  margin-top: 14px;
  font-size: 36px;
  font-weight: 1000;
  letter-spacing: -0.6px;
}
.by-sectionSubtitle {
  margin: 12px auto 0;
  opacity: 0.78;
  font-size: 15px;
  line-height: 1.75;
  max-width: 920px;
}

.by-grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 16px;
  gap: 16px;
  margin-top: 22px;
}
.by-grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 16px;
  gap: 16px;
  margin-top: 22px;
}

.by-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 26px;
  padding: 22px;
  box-shadow: 0 18px 60px rgba(2, 6, 23, 0.08);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  position: relative;
  overflow: hidden;
}
.by-card::before {
  content: '';
  position: absolute;
  inset: -60px -60px auto -60px;
  height: 180px;
  background: radial-gradient(circle at 30% 20%, rgba(56, 189, 248, 0.18), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(99, 102, 241, 0.14), transparent 55%);
  filter: blur(10px);
  opacity: 0.75;
  pointer-events: none;
}
.by-card:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.22);
  box-shadow: 0 30px 90px rgba(2, 6, 23, 0.12);
}
.by-cardTop {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.by-iconBubble {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.16), rgba(59, 130, 246, 0.06));
  border: 1px solid rgba(59, 130, 246, 0.18);
  animation: byPulse 3.6s ease-in-out infinite;
}
@keyframes byPulse {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-2px);
  }
}
.by-cardTitle {
  font-weight: 1000;
  letter-spacing: -0.2px;
  font-size: 15px;
}
.by-cardDesc {
  margin-top: 14px;
  opacity: 0.84;
  font-size: 14px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.by-stepTop {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.by-stepN {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.96), rgba(56, 189, 248, 0.92));
  color: white;
  font-weight: 1000;
  box-shadow: 0 18px 60px rgba(37, 99, 235, 0.22);
}

/* FAQ accordion */
.by-faq {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 26px;
  padding: 16px 18px;
  box-shadow: 0 18px 60px rgba(2, 6, 23, 0.08);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.by-faq summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-weight: 950;
}
.by-faq summary::-webkit-details-marker {
  display: none;
}
.by-faqChev {
  display: inline-flex;
  transition: transform 0.18s ease;
  opacity: 0.75;
}
.by-faq[open] .by-faqChev {
  transform: rotate(180deg);
}
.by-faqBody {
  margin-top: 12px;
  opacity: 0.84;
  font-size: 14px;
  line-height: 1.75;
}

/* =========================
   Footer (fixed alignment)
   ========================= */
.by-footer {
  padding: 54px 0 34px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.2));
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}
.by-footerTop {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  grid-gap: 22px;
  gap: 22px;
  align-items: start;
}
.by-footerTitle {
  font-weight: 1000;
  letter-spacing: -0.2px;
}
.by-footerText {
  opacity: 0.82;
  font-size: 14px;
  line-height: 1.75;
  margin-top: 12px;
}
.by-footerCol h4 {
  margin: 0;
  font-size: 13px;
  font-weight: 1000;
  opacity: 0.9;
}
.by-footerLinks {
  display: grid;
  grid-gap: 10px;
  gap: 10px;
  margin-top: 12px;
}
.by-footerCol a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(15, 23, 42, 0.72);
  font-size: 13px;
}
.by-footerCol a:hover {
  color: rgba(15, 23, 42, 0.92);
}
.by-socialRow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.by-socialBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 10px 30px rgba(2, 6, 23, 0.06);
}
.by-socialBtn:hover {
  border-color: rgba(59, 130, 246, 0.22);
}
.by-footerBottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0.8;
  font-size: 12px;
}

/* Responsivo */
@media (max-width: 980px) {
  .by-heroTitle {
    font-size: 46px;
  }
  .by-grid3 {
    grid-template-columns: 1fr;
  }
  .by-grid2 {
    grid-template-columns: 1fr;
  }
  .by-footerTop {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  html,
  body {
    overflow-x: hidden;
  }

  .by-hero {
    min-height: auto;
    padding: 20px 0 22px;
  }
  .by-heroTitle {
    font-size: 34px;
    letter-spacing: -0.6px;
  }
  /* Mobile: keep ONLY the logo in the top bar */
  .by-nav { display: none !important; }
  .by-brand { display: flex !important; }
  .by-brandText { display: none !important; }

  .by-container {
    padding-left: 14px;
    padding-right: 14px;
  }

  /* Prevent the hero glow from looking cut on the sides */
  .by-heroInner {
    overflow: hidden;
  }
  .by-heroInner::before {
    inset: -40px;
  }
  .by-heroInner::after {
    inset: -70px;
  }
  .by-footerTop {
    grid-template-columns: 1fr;
  }
  .by-scanBar {
    grid-template-columns: 1fr;
  }
  .by-btn.primary {
    width: 100%;
  }
}

/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/.pnpm/next@14.2.13_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[2]!../../node_modules/.pnpm/next@14.2.13_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[3]!./app/dashboard/dashboard.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* Dashboard (scoped with .db- prefix to avoid bleeding into landing) */

:root {
  --db-text: #0b1226;
  --db-border: rgba(15, 23, 42, 0.12);
  --db-border-soft: rgba(15, 23, 42, 0.08);
  --db-card: rgba(255, 255, 255, 0.78);
  --db-card-strong: rgba(255, 255, 255, 0.9);
  --db-bg: #f7faff;
  --db-shadow: 0 18px 60px rgba(2, 6, 23, 0.08);
}

.db-wrap {
  min-height: 100vh;
  color: var(--db-text);
  background:
    radial-gradient(1200px 720px at 10% 0%, rgba(56, 189, 248, 0.22), transparent 60%),
    radial-gradient(900px 560px at 92% 8%, rgba(59, 130, 246, 0.16), transparent 55%),
    radial-gradient(900px 700px at 55% 100%, rgba(147, 197, 253, 0.22), transparent 62%),
    linear-gradient(180deg, #f7faff 0%, #eef6ff 45%, #f7faff 100%);
}

.db-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 18px;
}

.db-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 50;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  background: white;
  border-bottom: 1px solid var(--db-border-soft);
}

.db-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.db-brandTitle {
  font-size: 16px;
  font-weight: 990;
  letter-spacing: 0.25px;
}

.db-brandSub {
  font-size: 12px;
  opacity: 0.7;
}

.db-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.db-panel {
  background: var(--db-card);
  border: 1px solid var(--db-border);
  box-shadow: var(--db-shadow);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 22px;
  padding: 16px;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 220ms ease;
}

/* Premium "hero" feel for the top bar inside panels */
.db-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(600px 220px at 18% 0%, rgba(59, 130, 246, 0.14), transparent 60%),
    radial-gradient(520px 220px at 82% 0%, rgba(56, 189, 248, 0.12), transparent 62%);
  opacity: 0.95;
}

.db-panel::after {
  content: "";
  position: absolute;
  left: -60%;
  top: -40%;
  width: 55%;
  height: 220%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: rotate(18deg);
  opacity: 0;
}

.db-panel:hover {
  transform: translateY(-1px);
  border-color: rgba(59, 130, 246, 0.22);
  box-shadow: 0 26px 86px rgba(2, 6, 23, 0.10);
}

.db-panel:hover::after {
  opacity: 1;
  animation: dbShine 1.35s ease forwards;
}

@keyframes dbShine {
  0% {
    transform: translateX(0) rotate(18deg);
  }
  100% {
    transform: translateX(220%) rotate(18deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .db-panel,
  .db-panel:hover {
    transition: none;
    transform: none;
  }
  .db-panel:hover::after {
    animation: none;
  }
}

.db-btn {
  border: 1px solid var(--db-border);
  background: rgba(255, 255, 255, 0.6);
  color: var(--db-text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 10px 30px rgba(2, 6, 23, 0.06);
  border-radius: 14px;
  padding: 11px 14px;
  font-weight: 900;
  transition: transform 0.08s ease, filter 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
  font-family: Lato, Subset, PingFang SC, Microsoft YaHei, Helvetica, Arial, sans-serif;
}

.db-btn:hover {
  border-color: rgba(59, 130, 246, 0.28);
}

.db-btnPrimary {
  border-color: rgba(59, 130, 246, 0.35);
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.96), rgba(96, 165, 250, 0.96));
  color: #ffffff;
  box-shadow: 0 18px 60px rgba(37, 99, 235, 0.25);
}

.db-input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--db-border);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 16px 40px rgba(2, 6, 23, 0.06);
}

.db-input input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 14px;
  color: var(--db-text);
}

.db-input input::placeholder {
  color: rgba(15, 23, 42, 0.45);
}

.db-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.2px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0.03));
  color: var(--db-text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 10px 30px rgba(2, 6, 23, 0.08);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.db-tabs {
  display: inline-flex;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--db-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 12px 30px rgba(2, 6, 23, 0.06);
}

.db-subnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.db-tab {
  border: none;
  background: transparent;
  padding: 10px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 950;
  opacity: 0.72;
}

.db-tabActive {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.16), rgba(59, 130, 246, 0.06));
  border: 1px solid rgba(59, 130, 246, 0.18);
  opacity: 1;
}

/* Layout helpers */
.db-grid2 {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-gap: 12px;
  gap: 12px;
}

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

.db-card {
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(241, 248, 255, 0.74));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 24px 80px rgba(2, 6, 23, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.db-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
}

@media (max-width: 980px) {
  .db-grid2 {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Token table (DeBank-ish)
   ========================= */

.dbtk-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 80px rgba(2, 6, 23, 0.06);
}

.dbtk-head {
  display: grid;
  grid-template-columns: 2.3fr 1fr 1.2fr 1fr;
  grid-gap: 14px;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(241, 245, 249, 0.75);
  color: rgba(15, 23, 42, 0.55);
  font-weight: 800;
  font-size: 14px;
}

.dbtk-head > div:nth-child(2),
.dbtk-head > div:nth-child(3),
.dbtk-head > div:nth-child(4) {
  text-align: right;
}

.dbtk-body {
  display: block;
}

.dbtk-row.compact {
  display: grid;
  grid-template-columns: 2.3fr 1fr 1.2fr 1fr;
  grid-gap: 14px;
  gap: 14px;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.dbtk-row.compact:first-child {
  border-top: none;
}

.dbtk-col {
  min-width: 0;
}

.dbtk-price,
.dbtk-amount,
.dbtk-usd {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

/* Mobile-only compact right column (amount + USD) */
.dbtk-mobileRight { display: none; }
.dbtk-mobileAmt { font-weight: 900; font-size: 14px; text-align: right; }
.dbtk-mobileUsd { margin-top: 2px; font-size: 12px; opacity: .75; text-align: right; }

.dbtk-main {
  font-weight: 900;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: rgba(15, 23, 42, 0.92);
}

.dbtk-sub {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(100, 116, 139, 0.9);
}

.dbtk-token {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.dbtk-logoWrap {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.18);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
  align-items: center;   /* garante centralização da img */
  margin-top: 2px;

}

.dbtk-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}

.dbtk-logoFallback {
  font-weight: 900;
  font-size: 14px;
  color: rgba(30, 41, 59, 0.75);
}

.dbtk-tokenText {
  min-width: 0;
}

.dbtk-tokenTop {
  display: flex;
  gap: 10px;
  align-items: baseline;
  min-width: 0;
}

.dbtk-tokenName {
  font-weight: 950;
  font-size: 14px;
  color: rgba(15, 23, 42, 0.95);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dbtk-tokenSub {
  font-size: 12px;
  color: rgba(100, 116, 139, 0.95);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dbtk-contract {
  margin-top: 6px;
  display: flex;
  gap: 6px;
  align-items: flex-start;
  font-size: 11px;
  color: rgba(100, 116, 139, 0.85);
}

.dbtk-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
  word-break: break-all;
  line-height: 1.25;
}

.dbtk-inlineChips {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.dbtk-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.10);
  border: 1px solid rgba(59, 130, 246, 0.18);
  color: rgba(30, 64, 175, 0.95);
  font-weight: 800;
  font-size: 12px;
}

@media (max-width: 860px) {
  .dbtk-head {
    grid-template-columns: 1fr 1fr;
  }

  .dbtk-head > div:nth-child(3),
  .dbtk-head > div:nth-child(4) {
    display: none;
  }

  .dbtk-row.compact {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .dbtk-price,
  .dbtk-amount,
  .dbtk-usd {
    text-align: left;
    align-items: flex-start;
  }

  .dbtk-usd {
    display: none;
  }
}

/* =========================
   Transactions table (DeBank-ish)
   ========================= */

.dbtx-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 80px rgba(2, 6, 23, 0.06);
}

.dbtx-head {
  display: grid;
  grid-template-columns: 2.0fr 1.2fr 0.9fr 1.2fr 0.9fr;
  grid-gap: 14px;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(241, 245, 249, 0.75);
  color: rgba(15, 23, 42, 0.55);
  font-weight: 800;
  font-size: 14px;
}

.dbtx-head > div:nth-child(3),
.dbtx-head > div:nth-child(4),
.dbtx-head > div:nth-child(5) {
  text-align: right;
}

.dbtx-body {
  display: block;
}

.dbtx-item {
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.dbtx-item:first-child {
  border-top: none;
}

/* Mobile compact tx card (hidden on desktop) */
.dbtx-mobile { display: none; }
.dbtxm-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.dbtxm-title {
  font-weight: 950;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dbtxm-amtWrap { flex: 0 0 auto; }
.dbtxm-amt {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  font-size: 16px;
  white-space: nowrap;
}
.dbtxm-amtIcon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15,23,42,.05);
  overflow: hidden;
  flex: 0 0 26px;
}
.dbtxm-amtIcon img { width: 100%; height: 100%; object-fit: cover; }
.dbtxm-pos { color: rgba(34,197,94,.95); }
.dbtxm-neg { color: rgba(239,68,68,.95); }
.dbtxm-meta {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  opacity: .75;
  font-size: 13px;
}
.dbtxm-metaItem { display: inline-flex; align-items: center; gap: 8px; }
.dbtxm-dot { opacity: .45; }

.dbtx-row {
  display: grid;
  grid-template-columns: 2.0fr 1.2fr 0.9fr 1.2fr 0.9fr;
  grid-gap: 14px;
  gap: 14px;
  align-items: center;
  padding: 12px 16px;
}

.dbtx-col {
  min-width: 0;
}

.dbtx-type,
.dbtx-amount,
.dbtx-usd {
  text-align: right;
}

.dbtx-main {
  font-weight: 900;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: rgba(15, 23, 42, 0.92);
}

.dbtx-sub {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(100, 116, 139, 0.9);
}

.dbtx-actionTop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.dbtx-actionTitle {
  font-weight: 950;
  font-size: 14px;
  color: rgba(15, 23, 42, 0.95);
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dbtx-actionMethod {
  font-weight: 850;
  opacity: 0.72;
}

.dbtx-badges {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.dbtx-metaLine {
  margin-top: 8px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  color: rgba(100, 116, 139, 0.92);
  font-size: 12px;
}

.dbtx-metaItem {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.dbtx-dot {
  opacity: 0.5;
}

.dbtx-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
}

.dbtx-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(37, 99, 235, 0.95);
  text-decoration: none;
}

.dbtx-link:hover {
  text-decoration: underline;
}

.dbtx-ext {
  font-size: 11px;
  opacity: 0.8;
}

.dbtx-cta {
  display: flex;
  justify-content: flex-end;
}

.dbtx-details {
  padding: 12px 16px 16px 16px;
  background: rgba(248, 250, 255, 0.92);
  border-top: 1px dashed rgba(148, 163, 184, 0.18);
}

.dbtx-detailsHead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.dbtx-detailsTitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 990;
}

.dbtx-detailsLink {
  font-size: 12px;
  font-weight: 850;
  color: rgba(37, 99, 235, 0.95);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  background: rgba(255, 255, 255, 0.75);
}

.dbtx-detailsLink:hover {
  text-decoration: underline;
}

/* Flow cards (token transfers) */
.db-txFlowsCompact {
  margin-top: 10px;
  display: grid;
  grid-gap: 10px;
  gap: 10px;
}

.db-txFlowsDetails {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
  gap: 10px;
}

@media (max-width: 860px) {
  .db-txFlowsDetails {
    grid-template-columns: 1fr;
  }
}

.db-txFlowLine {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.db-txTokenLogo {
  width: 36px;
  height: 36px;
  border-radius: 12px;
}

.db-txTokenLogoFallback {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  background: rgba(15, 23, 42, 0.06);
}

.db-txFlowMain {
  min-width: 0;
  flex: 1 1;
}

.db-txFlowTop {
  display: flex;
  align-items: center;
  gap: 10px;
}

.db-txFlowAmt {
  font-weight: 950;
  color: rgba(15, 23, 42, 0.92);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.db-txFlowSub {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(100, 116, 139, 0.92);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.db-txFlowBadges {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.db-pos { color: rgba(22, 163, 74, 0.95); }
.db-neg { color: rgba(220, 38, 38, 0.95); }

.dbtx-error {
  padding: 10px 16px 0 16px;
}

.dbtx-explain {
  margin-top: 12px;
}

.dbtx-explainTitle {
  font-weight: 950;
  font-size: 13px;
  margin: 10px 0 8px 0;
  opacity: 0.92;
}

.dbtx-explainBody {
  white-space: pre-wrap;
  line-height: 1.6;
  font-size: 13px;
  opacity: 0.92;
}

/* existing details grid styles (used by details panel) */
.db-detailsGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
  gap: 10px;
  margin-top: 8px;
}

@media (max-width: 860px) {
  .db-detailsGrid {
    grid-template-columns: 1fr;
  }

  .dbtx-head {
    grid-template-columns: 1fr 1fr;
  }

  .dbtx-head > div:nth-child(3),
  .dbtx-head > div:nth-child(4),
  .dbtx-head > div:nth-child(5) {
    display: none;
  }

  .dbtx-row {
    grid-template-columns: 1fr 1fr;
  }

  .dbtx-type,
  .dbtx-amount,
  .dbtx-usd {
    text-align: left;
  }

  .dbtx-usd,
  .dbtx-cta {
    display: none;
  }
}

.db-infoRow {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.70);
}

.db-infoK {
  font-weight: 880;
  font-size: 12px;
  opacity: 0.74;
}

.db-infoV {
  font-weight: 900;
  font-size: 12px;
  text-align: right;
  max-width: 68%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


/* =========================
   TOP DASHBOARD FIX (Risk + Portfolio)
   Cole no FINAL do CSS
   ========================= */

.db-grid2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-gap: 16px;
  gap: 16px;
  align-items: stretch;
}

@media (max-width: 980px) {
  .db-grid2 {
    grid-template-columns: 1fr;
  }
}

/* Panel header layout (title/subtitle/right) */
.db-panelHeader {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px 12px;
  margin: -16px -16px 12px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.45));
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  position: relative;
}

.db-panelHeader::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(520px 160px at 12% 30%, rgba(59, 130, 246, 0.12), transparent 58%),
    radial-gradient(520px 160px at 88% 25%, rgba(99, 102, 241, 0.10), transparent 60%);
  opacity: 0.85;
}

.db-panelHeaderLeft,
.db-panelHeaderRight {
  position: relative;
  z-index: 1;
}

.db-panelHeaderLeft {
  min-width: 0;
}

.db-panelTitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 1000;
  letter-spacing: -0.02em;
  font-size: 18px;
  color: rgba(15, 23, 42, 0.95);
}

.db-panelSubtitle {
  margin-top: 4px;
  font-size: 13px;
  color: rgba(100, 116, 139, 0.9);
}

.db-panelHeaderRight {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.db-panelHeaderRight .db-chip {
  transition: transform 140ms ease, border-color 160ms ease, filter 160ms ease;
}

.db-panelHeaderRight .db-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(59, 130, 246, 0.22);
  filter: saturate(1.05);
}

/* Risk card */
.db-riskGrid {
  display: grid;
  grid-template-columns: 160px 1fr;
  grid-gap: 18px;
  gap: 18px;
  align-items: center;
}

@media (max-width: 860px) {
  .db-riskGrid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* Circle meter */
.db-riskMeter {
  --score: 30;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background:
    conic-gradient(
      rgba(59, 130, 246, 0.98) calc(var(--score) * 1%),
      rgba(148, 163, 184, 0.22) 0
    );
  box-shadow:
    0 30px 90px rgba(2, 6, 23, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  animation: dbPop 520ms cubic-bezier(.2,.9,.2,1) both;
}

.db-riskMeter::after {
  content: "";
  position: absolute;
  inset: -45%;
  background: radial-gradient(circle at 30% 30%, rgba(56, 189, 248, 0.22), transparent 55%);
  animation: dbFloat 6s ease-in-out infinite;
}

.db-riskMeterInner {
  width: 106px;
  height: 106px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(148, 163, 184, 0.20);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 8px;
}

.db-riskScore {
  font-weight: 1100;
  font-size: 34px;
  letter-spacing: -0.9px;
  line-height: 1;
  background: linear-gradient(90deg, #0b1226, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: dbScorePulse 2.8s ease-in-out infinite;
}

@keyframes dbPop {
  from {
    opacity: 0;
    transform: translateY(6px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes dbScorePulse {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(37, 99, 235, 0));
  }
  50% {
    filter: drop-shadow(0 10px 26px rgba(37, 99, 235, 0.25));
  }
}

@media (prefers-reduced-motion: reduce) {
  .db-riskMeter,
  .db-riskScore {
    animation: none;
  }
}

.db-riskLabel {
  margin-top: 6px;
  font-size: 12px;
  opacity: 0.78;
  font-weight: 900;
}

.db-riskInfo {
  display: grid;
  grid-gap: 12px;
  gap: 12px;
  min-width: 0;
}

.db-riskFactors {
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(241,248,255,0.55));
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.08);
}

.db-riskMeta {
  display: grid;
  grid-gap: 10px;
  gap: 10px;
  min-width: 0;
}

.db-riskDelta {
  font-size: 13px;
  color: rgba(15, 23, 42, 0.92);
}

.db-riskHint {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(100, 116, 139, 0.9);
}

.db-riskFactorsTitle {
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.02em;
  color: rgba(100, 116, 139, 0.95);
  margin-top: 2px;
}

.db-riskFactorsList {
  margin: 0;
  padding-left: 18px;
  line-height: 1.65;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.9);
}

/* Portfolio card */
.db-portfolioTopChips {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.db-totalPill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: linear-gradient(90deg, rgba(59,130,246,.16), rgba(99,102,241,.10), rgba(15,23,42,.06));
  box-shadow: 0 16px 50px rgba(2, 6, 23, 0.12), inset 0 1px 0 rgba(255,255,255,.85);
  font-weight: 950;
  letter-spacing: -0.2px;
  transition: transform 160ms ease, border-color 160ms ease, filter 160ms ease;
}

.db-totalPill:hover {
  transform: translateY(-1px);
  border-color: rgba(59, 130, 246, 0.28);
  filter: saturate(1.06);
}

.db-totalLabel {
  opacity: 0.78;
  font-size: 12px;
}

.db-totalValue {
  font-size: 20px;
  font-weight: 1100;
  color: rgb(225 31 31 / 96%);
}

.db-addrPill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 520px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: linear-gradient(90deg, rgba(15,23,42,.06), rgba(59,130,246,.10));
  box-shadow: 0 16px 50px rgba(2, 6, 23, 0.10), inset 0 1px 0 rgba(255,255,255,.85);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, filter 160ms ease;
}

.db-addrPill:hover {
  transform: translateY(-1px);
  border-color: rgba(59, 130, 246, 0.28);
  filter: saturate(1.05);
}

.db-addrText {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.92);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.db-addrHint {
  font-size: 12px;
  font-weight: 900;
  opacity: 0.75;
}

.db-toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(255,255,255,0.80);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 18px 60px rgba(2, 6, 23, 0.22);
  font-size: 13px;
  font-weight: 900;
  color: rgba(15,23,42,0.92);
  z-index: 9999;
}

.db-portfolioStats {
  margin-top: 6px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 12px;
  gap: 12px;
}

@media (max-width: 860px) {
  .db-portfolioStats {
    grid-template-columns: 1fr;
  }
}

.db-portfolioStat {
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(241, 248, 255, 0.72));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 22px 70px rgba(2, 6, 23, 0.08);
  padding: 12px 12px;
}

.db-portfolioStatK {
  font-size: 12px;
  opacity: 0.72;
  font-weight: 900;
}

.db-portfolioStatV {
  margin-top: 6px;
  font-weight: 1000;
  font-size: 18px;
  letter-spacing: -0.2px;
}

.db-portfolioActions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

/* =========================
   PORTFOLIO FIX (cole no FINAL)
   ========================= */

.db-portfolioCard {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* chips da direita (Total / Snapshot) */
.db-portfolioTopChips {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

/* grid 3 colunas (Native / Native USD / Tokens) */
.db-portfolioStats,
.db-stats {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 12px;
  gap: 12px;
}

/* cards internos */
.db-portfolioStat,
.db-stat {
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.90), rgba(241, 248, 255, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 22px 70px rgba(2, 6, 23, 0.08);
  padding: 12px 12px;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 220ms ease;
  animation: dbFadeUp 420ms ease both;
}

.db-stat:nth-child(1) { animation-delay: 40ms; }
.db-stat:nth-child(2) { animation-delay: 90ms; }
.db-stat:nth-child(3) { animation-delay: 140ms; }

.db-portfolioStat:nth-child(1) { animation-delay: 40ms; }
.db-portfolioStat:nth-child(2) { animation-delay: 90ms; }
.db-portfolioStat:nth-child(3) { animation-delay: 140ms; }

.db-stat:hover,
.db-portfolioStat:hover {
  transform: translateY(-1px);
  border-color: rgba(59, 130, 246, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 28px 90px rgba(2, 6, 23, 0.10);
}

.db-portfolioStat::after,
.db-stat::after {
  content: "";
  position: absolute;
  inset: -40% -60% auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.14), transparent 62%);
  transform: rotate(15deg);
  opacity: 0.65;
}

@keyframes dbFadeUp {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .db-portfolioStat,
  .db-stat {
    animation: none;
    transition: none;
  }
}

.db-portfolioStatK,
.db-statK {
  font-size: 12px;
  opacity: 0.72;
  font-weight: 900;
}

.db-portfolioStatV,
.db-statV {
  margin-top: 6px;
  font-weight: 1000;
  font-size: 18px;
  letter-spacing: -0.2px;
}

/* ações (Refresh + wallets chip) */
.db-portfolioActions {
  margin-top: 2px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

/* responsivo */
@media (max-width: 860px) {
  .db-portfolioStats,
  .db-stats {
    grid-template-columns: 1fr;
  }
  .db-portfolioTopChips {
    justify-content: flex-start;
  }
}

/* Tx list improvements */
.dbtx-actionBadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  min-width: 26px;
  padding: 0 8px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.02em;
  background: rgba(15,23,42,0.06);
  border: 1px solid rgba(148,163,184,0.28);
  margin-right: 10px;
  position: relative;
  overflow: hidden;
}
.dbtx-actionBadge::after {
  content: "";
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: translateX(-60%);
  animation: dbtx-shine 3.2s ease-in-out infinite;
}
@keyframes dbtx-shine { 0%, 60% { transform: translateX(-60%); } 100% { transform: translateX(60%); } }

.dbtx-actionTitle {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dbtx-actionText {
  font-weight: 900;
  letter-spacing: -0.01em;
}
.dbtx-actionText .dbtx-actionMethod {
  opacity: 0.75;
}

.dbtx-receiverLink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: rgba(30, 64, 175, 0.92);
  text-decoration: none;
}
.dbtx-receiverLink:hover { text-decoration: underline; }

.dbtx-amountStack {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}
.dbtx-amountLine {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  min-width: 0; 
}

.dbtx-amountLine > span:last-child {
  min-width: 0;
  white-space: nowrap;   /* ✅ impede quebrar "HYPER" pra baixo */
  overflow: hidden;      /* ✅ */
  text-overflow: ellipsis; /* ✅ */
}

.dbtx-amountIcon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(15,23,42,0.06);
  border: 1px solid rgba(148,163,184,0.28);
  color: rgba(100, 116, 139, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.dbtx-amountIcon img { width: 100%; height: 100%; object-fit: cover; padding: 0;}

/* ----------------------------
   Mobile layout improvements
   ---------------------------- */
@media (max-width: 640px) {
  /* Top bar: show only the logo */
  .db-topActions { display: none !important; }
  .db-topbar { justify-content: center; padding-top: 10px; padding-bottom: 10px; }

  .db-grid2 { grid-template-columns: 1fr; }

  /* Panel header: avoid title/right overlap (Dashboard + address pill) */
  .db-panelHeader { flex-direction: column; align-items: flex-start; gap: 10px; }
  .db-panelHeaderRight { width: 100%; justify-content: flex-start; flex-wrap: wrap; gap: 10px; }

  .db-addrPill { max-width: 100%; width: 100%; justify-content: space-between; }
  .db-addrText { max-width: 220px; }

  .db-subnav { gap: 10px; flex-wrap: wrap; }

  /* Tokens controls: keep only search input on mobile */
  .db-tokenControls { width: 100%; flex-direction: column; align-items: stretch; }
  .db-tokenControls .ui-input, .db-tokenControls input { width: 100%; }

  /* Transactions: ultra-compact list */
  .dbtx-row { display: none; }
  .dbtx-mobile { display: block; }
  .db-tokenControls button { display: none !important; }

  /* Token list: compact (icon + symbol + amount + USD) */
  .dbtk-head { display: none; }
  .dbtk-row { grid-template-columns: 1fr auto; gap: 12px; align-items: center; }
  /* hide desktop columns on mobile (TokenCard uses dbtk-amount/dbtk-usd) */
  .dbtk-price, .dbtk-amt, .dbtk-usd,
  .dbtk-col.dbtk-amount,
  .dbtk-col.dbtk-usd { display: none !important; }
  .dbtk-mobileRight { display: flex !important; flex-direction: column; align-items: flex-end; justify-content: center; }
  .dbtk-subline, .dbtk-contract, .dbtk-inlineChips { display: none !important; }
  .dbtk-tokenName { display: none !important; }
  .dbtk-tokenSymbol { font-size: 14px; font-weight: 900; }
  .dbtk-usdSub { display: none !important; }

  /* TX controls: keep chain pills + search, hide extra toggles/chips */
  .db-txControls { width: 100%; flex-direction: column; align-items: stretch; }
  .db-txControls .dbchain-pills { width: 100%; overflow-x: auto; padding-bottom: 4px; flex-wrap: nowrap; justify-content: flex-start; }
  .db-txControls .ui-input, .db-txControls input { width: 100%; }
  .db-txControls .db-btn, .db-txControls .db-chip { display: none !important; }

  /* TX rows: compact (action + amount only) */
  .dbtx-row { grid-template-columns: 1fr auto; }
  .dbtx-col { padding: 12px 12px; }
  .dbtx-receiver, .dbtx-type, .dbtx-usd { display: none !important; }
  .dbtx-amount { justify-self: end; }

  /* Transactions: hide long summary line (e.g. "Swapped ...") to keep compact */
  .dbtx-action .dbtx-metaLine:first-of-type { display: none !important; }

  /* Swap: show only the received line on mobile */
  .dbtx-amountStack .dbtx-amountLine:first-child { display: none !important; }
}
.dbtx-amountIconSvg { width: 12px; height: 12px; opacity: 0.85; }

.dbtx-pos { color: rgba(22, 163, 74, 0.98); }
.dbtx-neg { color: rgba(220, 38, 38, 0.98); }


/* Linha 1: título + chips */
.dbtk-tokenTopRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Agrupa SYMBOL + Name */
.dbtk-tokenTitle {
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-width: 0; /* importante p/ ellipsis funcionar */
}

/* Se precisar cortar nome grande */
.dbtk-tokenName {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Chips na linha de cima */
.dbtk-inlineChips--top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
  flex-shrink: 0; /* não deixa chips esmagarem */
}

/* Linha do contrato: ficar bem compacta */
.dbtk-contract {
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.75;
}

/* Contrato cortar com ... */
.dbtk-contract .dbtk-mono {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.db-chipActive {
  border-color: rgba(15, 23, 42, 0.35);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.12), rgba(15, 23, 42, 0.06));
}

/* -------------------------
   Chain balances (DeBank-ish)
-------------------------- */
.dbchain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-gap: 12px;
  gap: 12px;
}

.dbchain-card {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 10px 30px rgba(30, 45, 90, 0.08);
  border-radius: 16px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
  font-family: Lato, Subset, PingFang SC, Microsoft YaHei, Helvetica, Arial, sans-serif;
}

.dbchain-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(30, 45, 90, 0.12);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(44, 92, 255, 0.22);
}

.dbchain-active {
  border-color: rgba(44, 92, 255, 0.55);
  box-shadow: 0 16px 46px rgba(44, 92, 255, 0.16);
}

.dbchain-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.dbchain-logo {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
}

.dbchain-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.dbchain-name {
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dbchain-sub {
  font-size: 12px;
  opacity: 0.7;
  text-align: left;
}

.dbchain-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.dbchain-usd {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.dbchain-chain {
  font-size: 11px;
  opacity: 0.75;
}

.dbchain-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.dbchain-pills{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.txHeader{
  margin: 10px 0 14px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.txChainsRow{
  margin-bottom: 10px;
}

.txChains{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Mobile: vira “carrossel” horizontal pra não quebrar feio */
@media (max-width: 720px){
  .txChains{
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }
  .txChains::-webkit-scrollbar{ height: 6px; }
}

.txControlsRow{
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 10px;
  gap: 10px;
  align-items: center;
}

.txSearch{
  min-width: 220px;
}

.txSpamBtn{
  white-space: nowrap;
}

/* Se ficar apertado, quebra em 2 linhas automaticamente */
@media (max-width: 520px){
  .txControlsRow{
    grid-template-columns: 1fr;
  }
  .txSpamBtn{
    width: 100%;
  }
}


.db-txHeaderStack{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.db-txSearchRow{
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.dbpill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
  font-weight: 650;
  font-size: 12px;
}

.dbpill:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(44, 92, 255, 0.22);
}

.dbpill-active {
  border-color: rgba(44, 92, 255, 0.55);
  background: rgba(44, 92, 255, 0.08);
}

.dbpill-logo {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
}


/* Token chain badge (DeBank-like) */
.dbtk-logoWrap{ position:relative; }
.dbtk-chainBadge{
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  border: 2px solid rgba(255,255,255,.95);
  box-shadow: 0 6px 18px rgba(2,6,23,.18);
  display: grid;
  place-items: center
}


/* wrapper do ícone do token */
.dbtk-iconWrap,
.dbtk-tokenIconWrap,
.dbtk-logoWrap {
  position: relative;
  overflow: visible !important;
}


.dbtk-chainBadge img {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  display: block;
}
