@keyframes motion-float-coin {
  0% {
    transform: translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
  }
  50% {
    transform: translate3d(0, -12px, 0) rotate3d(0, 1, 0, 15deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
  }
}
@keyframes motion-glow-pulse {
  0% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    opacity: 0.35;
  }
}
@keyframes motion-gradient-sweep {
  0% {
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    transform: translate3d(50%, 0, 0);
  }
}
@keyframes motion-particle-drift {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translate3d(80px, -120px, 0);
    opacity: 0;
  }
}
@keyframes motion-card-reveal {
  0% {
    transform: translate3d(0, 40px, 0) scale3d(0.96, 0.96, 1);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    opacity: 1;
  }
}
@keyframes motion-counter-slide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(0, -90%, 0);
  }
}
@keyframes motion-marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
@keyframes motion-orb-drift {
  0% {
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    opacity: 0.4;
  }
  33% {
    transform: translate3d(6vw, -4vh, 0) scale3d(1.15, 1.15, 1);
    opacity: 0.6;
  }
  66% {
    transform: translate3d(-4vw, 8vh, 0) scale3d(0.85, 0.85, 1);
    opacity: 0.3;
  }
  100% {
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    opacity: 0.4;
  }
}
@keyframes motion-shake-error {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  15%, 45%, 75% {
    transform: translate3d(-8px, 0, 0);
  }
  30%, 60%, 90% {
    transform: translate3d(8px, 0, 0);
  }
}
@keyframes motion-ripple {
  0% {
    transform: translate3d(-50%, -50%, 0) scale3d(0, 0, 1);
    opacity: 0.5;
  }
  100% {
    transform: translate3d(-50%, -50%, 0) scale3d(4, 4, 1);
    opacity: 0;
  }
}
.motion-float {
  animation: motion-float-coin 6s ease-in-out infinite;
  will-change: transform;
}
.motion-float.delay-1 {
  animation-delay: 1.5s;
}
.motion-float.delay-2 {
  animation-delay: 3s;
}
.motion-float.delay-3 {
  animation-delay: 4.5s;
}

.motion-glow-trigger {
  position: relative;
}
.motion-glow-trigger::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.4);
  opacity: 0.35;
  animation: motion-glow-pulse 4s ease-in-out infinite;
  pointer-events: none;
  will-change: opacity;
}
.motion-glow-trigger.glow-violet::before {
  box-shadow: 0 0 25px rgba(155, 81, 224, 0.4);
}

.motion-gradient-shimmer {
  position: relative;
  overflow: hidden;
}
.motion-gradient-shimmer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0) 100%);
  animation: motion-gradient-sweep 2.5s infinite linear;
  pointer-events: none;
  will-change: transform;
}

.motion-hover-lift {
  transition: transform 450ms cubic-bezier(0.16, 1, 0.3, 1), opacity 450ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}
.motion-hover-lift:hover {
  transform: translate3d(0, -6px, 0) scale3d(1.02, 1.02, 1);
}

.motion-reveal-card {
  animation: motion-card-reveal 600ms cubic-bezier(0.25, 1, 0.5, 1) forwards;
  will-change: transform, opacity;
}

.motion-scroll-fade {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: transform 600ms cubic-bezier(0.25, 1, 0.5, 1), opacity 600ms cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}
.motion-scroll-fade.scroll-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion-parallax-card {
  transform-style: preserve-3d;
  perspective: 1000px;
  transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translate3d(0, 0, 0);
  transition: transform 100ms cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.motion-marquee-track {
  display: flex;
  width: max-content;
  animation: motion-marquee 20s linear infinite;
  will-change: transform;
}

.motion-orb {
  animation: motion-orb-drift 15s ease-in-out infinite;
  will-change: transform, opacity;
}
.motion-orb.orb-fast {
  animation-duration: 10s;
}
.motion-orb.orb-slow {
  animation-duration: 22s;
}

.motion-ripple-ring {
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  pointer-events: none;
  animation: motion-ripple 600ms cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
  will-change: transform, opacity;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  line-height: 1.25;
  color: #ffffff;
  margin: 0 0 0.75rem 0;
  letter-spacing: -0.025em;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.035em;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2.25rem;
  letter-spacing: -0.03em;
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.85rem;
  }
}
@media (max-width: 576px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-size: 1.45rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  h3 {
    font-size: 1.3rem;
  }
}

h4 {
  font-size: 1.15rem;
  font-weight: 500;
}

h5 {
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
}

h6 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
}

p {
  margin: 0 0 1.25rem 0;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}
p:last-child {
  margin-bottom: 0;
}

.Space-Grotesk {
  font-family: "Space Grotesk", sans-serif;
}

.font-mono {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #00F5FF 0%, #7928CA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  font-weight: 600;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-muted {
  color: rgba(255, 255, 255, 0.45) !important;
}

.dot-accent {
  color: #7928CA;
  text-shadow: 0 0 12px rgba(121, 40, 202, 0.5);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #030508;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (max-width: 768px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.ambient-glow-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.glow-sphere {
  position: absolute;
  border-radius: 9999px;
  filter: blur(120px);
  opacity: 0.45;
  pointer-events: none;
}
.glow-sphere-primary {
  top: 15%;
  left: 20%;
  width: 35vw;
  height: 35vw;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
  animation: drift-primary 15s ease-in-out infinite;
}
.glow-sphere-secondary {
  top: 45%;
  right: 15%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(155, 81, 224, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
  animation: drift-secondary 20s ease-in-out infinite;
}
.glow-sphere-tertiary {
  bottom: 10%;
  left: 10%;
  width: 30vw;
  height: 30vw;
  background: radial-gradient(circle, rgba(255, 45, 85, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  animation: drift-tertiary 12s ease-in-out infinite;
}

.particle-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.particle-container canvas {
  width: 100%;
  height: 100%;
}

.main-content-flow {
  position: relative;
  z-index: 5;
  padding-top: 120px;
}

html {
  scroll-behavior: smooth;
}
html::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
html::-webkit-scrollbar-track {
  background: #030508;
}
html::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  transition: background 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
html::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.18);
}

.dashboard-sections-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.dashboard-grid-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
}
@media (max-width: 768px) {
  .dashboard-grid-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.grid-layout-asym {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 2rem;
  width: 100%;
}
@media (max-width: 1200px) {
  .grid-layout-asym {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .grid-layout-asym {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.col-span-2 {
  grid-column: span 2;
}
@media (max-width: 768px) {
  .col-span-2 {
    grid-column: span 1;
  }
}

.col-span-3 {
  grid-column: span 3;
}
@media (max-width: 1200px) {
  .col-span-3 {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  .col-span-3 {
    grid-column: span 1;
  }
}

.dashboard-grid-3x2 {
  display: grid;
  grid-template-columns: 1.8fr 1.2fr;
  gap: 2rem;
  align-items: start;
  width: 100%;
}
@media (max-width: 1024px) {
  .dashboard-grid-3x2 {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.glass-sidebar-info-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.auth-split-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 100vh;
  width: 100%;
  background: #030508;
}
@media (max-width: 1024px) {
  .auth-split-layout {
    grid-template-columns: 1fr;
  }
}

.auth-visual-pane {
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at 30% 30%, rgba(121, 40, 202, 0.08) 0%, rgba(0, 0, 0, 0) 80%);
  padding: 3.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.03);
}
@media (max-width: 1024px) {
  .auth-visual-pane {
    display: none;
  }
}

.auth-form-pane {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
@media (max-width: 576px) {
  .auth-form-pane {
    padding: 1.25rem;
  }
}

.form-card-container {
  width: 100%;
  max-width: 440px;
  background: rgba(10, 14, 24, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.04), 0 16px 48px rgba(0, 0, 0, 0.45);
  padding: 3.5rem;
  border-radius: 24px;
}
@media (max-width: 576px) {
  .form-card-container {
    padding: 2rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 16px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  background: transparent;
  color: #ffffff;
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  user-select: none;
}
.btn:active {
  transform: scale(0.98);
}

.btn-gradient {
  background: linear-gradient(135deg, #00F5FF 0%, #7928CA 100%);
  background-size: 200% auto;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
}
.btn-gradient:hover {
  background-position: right center;
  box-shadow: 0 6px 20px rgba(0, 242, 254, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.04), 0 16px 48px rgba(0, 0, 0, 0.45);
  color: #ffffff;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}
.btn-outline.active-outline {
  border-color: #00F5FF;
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.2);
}

.btn-glow {
  border: 1px solid rgba(0, 242, 254, 0.5);
  background: rgba(0, 242, 254, 0.05);
  color: #00F5FF;
  text-shadow: 0 0 8px rgba(0, 242, 254, 0.5);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.1);
}
.btn-glow:hover {
  background: rgba(0, 242, 254, 0.15);
  border-color: #00F5FF;
  box-shadow: 0 0 18px rgba(0, 242, 254, 0.4);
  transform: translateY(-2px);
}

.btn-text {
  color: rgba(255, 255, 255, 0.7);
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.btn-text:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  border-radius: 24px;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: 10px;
}

.btn-full {
  width: 100%;
}

.btn-copy-address {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 32px;
  height: 32px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-copy-address:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-swap-direction {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(155, 81, 224, 0.15);
  border: 1px solid rgba(155, 81, 224, 0.3);
  color: #7928CA;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
  margin: 0.75rem auto;
  box-shadow: 0 0 10px rgba(155, 81, 224, 0.1);
}
.btn-swap-direction:hover {
  background: rgba(155, 81, 224, 0.25);
  border-color: #7928CA;
  box-shadow: 0 0 15px rgba(155, 81, 224, 0.3);
  transform: rotate(180deg);
}

.ripple-effect {
  position: absolute;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 9999px;
  transform: scale(0);
  pointer-events: none;
  animation: ripple-grow 600ms linear;
}

@keyframes ripple-grow {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
.glass-card {
  background: rgba(10, 14, 24, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.04), 0 16px 48px rgba(0, 0, 0, 0.45);
  border-radius: 24px;
  padding: 2rem;
  transition: background 450ms cubic-bezier(0.16, 1, 0.3, 1), border-color 450ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 450ms cubic-bezier(0.16, 1, 0.3, 1), transform 450ms cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.hover-lift:hover {
  transform: translateY(-5px);
  background: rgba(15, 20, 35, 0.75);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.hover-glow-cyan:hover {
  border: 1px solid rgba(0, 245, 255, 0.4);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.04), 0 0 20px rgba(0, 245, 255, 0.16);
  transform: translateY(-3px);
}

.hover-glow-violet:hover {
  border: 1px solid rgba(121, 40, 202, 0.4);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.04), 0 0 20px rgba(121, 40, 202, 0.16);
  transform: translateY(-3px);
}

.dynamic-3d-tilt {
  transform-style: preserve-3d;
  perspective: 1000px;
  transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translate3d(0, 0, 0);
  transition: transform 120ms cubic-bezier(0.16, 1, 0.3, 1);
}
.dynamic-3d-tilt .card-chip-row,
.dynamic-3d-tilt .card-balance-preview,
.dynamic-3d-tilt .card-address-badge {
  transform: translateZ(30px);
}

.chain-node-card {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.85rem 1.5rem;
  border-radius: 16px;
  margin-right: 1.25rem;
  white-space: nowrap;
}
.chain-node-card .chain-icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.05);
}
.chain-node-card .chain-icon-wrap.eth-color {
  color: #8C8C8C;
}
.chain-node-card .chain-icon-wrap.btc-color {
  color: #F7931A;
}
.chain-node-card .chain-icon-wrap.sol-color {
  color: #14F195;
}
.chain-node-card .chain-icon-wrap.bnb-color {
  color: #F3BA2F;
}
.chain-node-card .chain-icon-wrap.matic-color {
  color: #8247E5;
}
.chain-node-card .chain-icon-wrap.avax-color {
  color: #E84142;
}
.chain-node-card .chain-status-tag {
  font-size: 0.75rem;
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
  background: rgba(0, 230, 118, 0.15);
  color: #00E676;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}
.feature-card .feature-icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-card:hover .feature-icon-box {
  background: rgba(0, 242, 254, 0.08);
  border-color: #00F5FF;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}
.feature-card .feature-title {
  margin-bottom: 0;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.testimonial-card .rating-stars {
  color: #FFD700;
  letter-spacing: 2px;
}
.testimonial-card .testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}
.testimonial-card .user-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.testimonial-card .user-meta .placeholder-avatar {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
}
.testimonial-card .user-meta .placeholder-avatar.bg-grad-cyan {
  background: linear-gradient(135deg, #00F5FF, #7928CA);
}
.testimonial-card .user-meta .placeholder-avatar.bg-grad-violet {
  background: linear-gradient(135deg, #7928CA, #FF2D55);
}
.testimonial-card .user-meta .user-name {
  margin: 0;
  font-size: 0.95rem;
}
.testimonial-card .user-meta .user-title {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.glass-shield-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 2rem 3.5rem;
}
.glass-shield-card .security-shield-svg {
  filter: drop-shadow(0 0 10px rgba(155, 81, 224, 0.4));
}
.glass-shield-card .shield-label {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
}

.input-wrap {
  position: relative;
  margin-bottom: 2rem;
  width: 100%;
}

.input-label {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.75rem;
}

.form-input {
  width: 100%;
  padding: 0.95rem 1.25rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  color: #ffffff;
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}
.form-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.form-input:focus {
  background: rgba(255, 255, 255, 0.04);
  border-color: #00F5FF;
  box-shadow: 0 0 14px rgba(0, 242, 254, 0.25);
}
.form-input.input-invalid {
  border-color: #FF2D55;
  box-shadow: 0 0 14px rgba(255, 45, 85, 0.25);
  animation: motion-shake-error 400ms ease-in-out;
}

.input-field-mock {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.95rem 1.25rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.3);
  font-family: "Plus Jakarta Sans", sans-serif;
  cursor: text;
}
.input-field-mock .input-placeholder-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.3);
}

.input-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.95rem 1.25rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
}
.input-row .input-placeholder-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
}
.input-row .token-selector {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0.75rem;
  border-radius: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.input-row .token-selector:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.exchange-block {
  padding: 1.25rem;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.exchange-block .exchange-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.35rem;
}
.exchange-block .exchange-row .amount-value {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
}
.exchange-block .exchange-row .token-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0.85rem;
  border-radius: 16px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
}
.exchange-block .exchange-row .token-badge:hover {
  background: rgba(255, 255, 255, 0.1);
}

.gas-slider-container {
  margin-bottom: 2rem;
}
.gas-slider-container .slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.75rem;
}
.gas-slider-container .mock-range-slider {
  position: relative;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  cursor: pointer;
}
.gas-slider-container .mock-range-slider .slider-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 75%;
  background: linear-gradient(135deg, #00F5FF 0%, #7928CA 100%);
  border-radius: 9999px;
}
.gas-slider-container .mock-range-slider .slider-thumb {
  position: absolute;
  left: 75%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 9999px;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.8);
  border: 2px solid #00F5FF;
}

.swap-summary-lines {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 1.25rem 0;
}
.swap-summary-lines .summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 100;
  transition: all 450ms cubic-bezier(0.16, 1, 0.3, 1);
}
.main-header.sticky-nav {
  background: rgba(8, 10, 16, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.04), 0 16px 48px rgba(0, 0, 0, 0.45);
  height: 70px;
  border-top: none;
  border-left: none;
  border-right: none;
}

.header-container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-wrapper .logo-icon {
  filter: drop-shadow(0 0 8px rgba(0, 242, 254, 0.3));
  transition: transform 750ms cubic-bezier(0.16, 1, 0.3, 1);
}
.logo-wrapper:hover .logo-icon {
  transform: rotate(360deg);
}
.logo-wrapper .logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}

@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(8, 10, 16, 0.95);
    backdrop-filter: blur(20px);
    padding: 3.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    transform: translateX(100%);
    transition: transform 450ms cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav-menu.menu-open {
    transform: translateX(0);
  }
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1024px) {
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 3.5rem;
  }
}

.nav-link {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  padding: 0.25rem 0;
}
.nav-link:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
.nav-link.nav-active {
  color: #00F5FF;
  text-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
}
.nav-link.nav-active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, #00F5FF 0%, #7928CA 100%);
  border-radius: 9999px;
  box-shadow: 0 0 8px #00F5FF;
}
@media (max-width: 1024px) {
  .nav-link {
    font-size: 1.5rem;
  }
}

.mobile-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}
.mobile-toggle-btn .hamburger-line {
  width: 100%;
  height: 2px;
  background: #ffffff;
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: left center;
}
@media (max-width: 1024px) {
  .mobile-toggle-btn {
    display: flex;
  }
}
.mobile-toggle-btn.toggle-active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(2px, -2px);
}
.mobile-toggle-btn.toggle-active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.mobile-toggle-btn.toggle-active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(2px, 2px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.mobile-bottom-nav {
  display: none;
}
@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 68px;
    z-index: 95;
    background: rgba(3, 5, 8, 0.85);
    background: rgba(3, 5, 8, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.04), 0 16px 48px rgba(0, 0, 0, 0.45);
    border-bottom: none;
    border-left: none;
    border-right: none;
    padding: 0 1.25rem;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.5);
    padding-bottom: env(safe-area-inset-bottom);
  }
}

.mobile-bottom-nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0.35rem;
  flex: 1;
}
.mobile-bottom-nav-link .nav-icon {
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-bottom-nav-link:hover {
  color: rgba(255, 255, 255, 0.85);
}
.mobile-bottom-nav-link.active-item {
  color: #00F5FF;
  text-shadow: 0 0 10px rgba(0, 245, 255, 0.35);
}
.mobile-bottom-nav-link.active-item .nav-icon {
  transform: scale(1.15) translate3d(0, -1px, 0);
}

.main-footer {
  background: #05060A;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 5.5rem 0 3.5rem 0;
  margin-top: 5.5rem;
}

.footer-topcontainer {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 5.5rem;
  margin-bottom: 5.5rem;
}
@media (max-width: 768px) {
  .footer-topcontainer {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

.footer-brand-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.footer-brand-column .brand-pitch {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 320px;
  line-height: 1.6;
}

.social-links-row {
  display: flex;
  gap: 1.25rem;
  margin-top: 0.75rem;
}
.social-links-row .social-icon-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.social-links-row .social-icon-link:hover {
  color: #00F5FF;
  border-color: #00F5FF;
  background: rgba(0, 242, 254, 0.05);
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.3);
  transform: translateY(-2px);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 576px) {
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

.links-column .links-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-bottom: 2rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.footer-link:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 2rem;
}
.footer-bottom .bottom-split-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}
@media (max-width: 768px) {
  .footer-bottom .bottom-split-row {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
  }
}
.footer-bottom .legal-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.footer-bottom .legal-links .divider-dot {
  color: rgba(255, 255, 255, 0.15);
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
  background: #030508;
}
@media (max-width: 1024px) {
  .dashboard-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .dashboard-layout .mobile-toggle-btn {
    display: none !important;
  }
}

.dashboard-sidebar {
  background: rgba(8, 10, 16, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.04), 0 16px 48px rgba(0, 0, 0, 0.45);
  border-top: none;
  border-left: none;
  border-bottom: none;
  height: 100vh;
  position: sticky;
  top: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  z-index: 90;
}
@media (max-width: 1024px) {
  .dashboard-sidebar {
    position: fixed;
    left: -260px;
    width: 260px;
    transition: transform 450ms cubic-bezier(0.16, 1, 0.3, 1);
  }
  .dashboard-sidebar.sidebar-active {
    transform: translateX(260px);
  }
}
@media (max-width: 768px) {
  .dashboard-sidebar {
    display: none !important;
  }
}
.dashboard-sidebar .sidebar-logo {
  margin-bottom: 1.25rem;
}

.sidebar-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sidebar-nav-link {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.85rem 1.15rem;
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.sidebar-nav-link .nav-icon {
  font-size: 1.1rem;
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.sidebar-nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.03);
}
.sidebar-nav-link:hover .nav-icon {
  transform: scale(1.1);
}
.sidebar-nav-link.active-item {
  color: #00F5FF;
  background: rgba(0, 242, 254, 0.05);
  border: 1px solid rgba(0, 242, 254, 0.15);
  text-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
}
.sidebar-nav-link.active-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 3px;
  background: #00F5FF;
  border-radius: 0 6px 6px 0;
  box-shadow: 0 0 8px #00F5FF;
}

.dashboard-main {
  padding: 3.5rem;
  overflow-y: auto;
}
.dashboard-main::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.dashboard-main::-webkit-scrollbar-track {
  background: transparent;
}
.dashboard-main::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  transition: background 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.dashboard-main::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.18);
}
@media (max-width: 768px) {
  .dashboard-main {
    padding-bottom: 88px;
  }
}
@media (max-width: 576px) {
  .dashboard-main {
    padding: 1.25rem;
    padding-bottom: 80px;
  }
}

.dashboard-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.5rem;
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .dashboard-header-row {
    flex-direction: column;
    align-items: stretch;
  }
}

.header-left-search {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 440px;
}
@media (max-width: 768px) {
  .header-left-search {
    max-width: 100%;
  }
}
.header-left-search .search-bar-mockup {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.25rem;
  border-radius: 9999px;
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.header-left-search .search-bar-mockup .search-icon {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
}
.header-left-search .search-bar-mockup .search-input-field {
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  width: 100%;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.85rem;
}
.header-left-search .search-bar-mockup .search-input-field::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.header-right-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .header-right-meta {
    width: 100%;
    justify-content: flex-start;
  }
}
.header-right-meta .gas-tracker-badge,
.header-right-meta .network-selector-mock,
.header-right-meta .icon-nav-btn,
.header-right-meta .account-summary-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 1.1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  white-space: nowrap;
  height: 38px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  font-family: "Space Grotesk", sans-serif;
}
.header-right-meta .gas-tracker-badge .gas-value, .header-right-meta .gas-tracker-badge .account-address,
.header-right-meta .network-selector-mock .gas-value,
.header-right-meta .network-selector-mock .account-address,
.header-right-meta .icon-nav-btn .gas-value,
.header-right-meta .icon-nav-btn .account-address,
.header-right-meta .account-summary-pill .gas-value,
.header-right-meta .account-summary-pill .account-address {
  font-size: 0.75rem;
}
.header-right-meta .gas-tracker-badge .dropdown-arrow,
.header-right-meta .network-selector-mock .dropdown-arrow,
.header-right-meta .icon-nav-btn .dropdown-arrow,
.header-right-meta .account-summary-pill .dropdown-arrow {
  font-size: 0.55rem;
  opacity: 0.5;
}
.header-right-meta .icon-nav-btn {
  justify-content: center;
  width: 38px;
  padding: 0;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.header-right-meta .icon-nav-btn:hover {
  background: rgba(255, 255, 255, 0.05);
}
.header-right-meta .account-summary-pill .placeholder-avatar {
  width: 20px;
  height: 20px;
  border-radius: 9999px;
}

.dashboard-grid-3x2 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 1200px) {
  .dashboard-grid-3x2 {
    grid-template-columns: 1fr;
  }
}

.chart-panel-card .svg-chart-container {
  height: 240px;
  width: 100%;
  margin-top: 1.25rem;
  position: relative;
}
.chart-panel-card .mockup-svg-chart {
  width: 100%;
  height: 100%;
}
.chart-panel-card .mockup-svg-chart path {
  filter: drop-shadow(0 4px 10px rgba(0, 242, 254, 0.25));
}

.transaction-log-card .table-responsive-wrapper {
  overflow-x: auto;
}
.transaction-log-card .table-responsive-wrapper::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.transaction-log-card .table-responsive-wrapper::-webkit-scrollbar-track {
  background: transparent;
}
.transaction-log-card .table-responsive-wrapper::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  transition: background 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.transaction-log-card .table-responsive-wrapper::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.18);
}
.transaction-log-card .transaction-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.transaction-log-card .transaction-table th {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  padding: 1.25rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.transaction-log-card .transaction-table td {
  padding: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  font-size: 0.9rem;
}
.transaction-log-card .transaction-table td:first-child {
  border-radius: 16px 0 0 16px;
}
.transaction-log-card .transaction-table td:last-child {
  border-radius: 0 16px 16px 0;
}
.transaction-log-card .transaction-table tbody tr {
  transition: background 200ms cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.transaction-log-card .transaction-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
}
.status-badge.status-sent {
  background: rgba(255, 45, 85, 0.15);
  color: #FF2D55;
}
.status-badge.status-received {
  background: rgba(0, 230, 118, 0.15);
  color: #00E676;
}
.status-badge.status-swapped {
  background: rgba(0, 245, 255, 0.15);
  color: #00F5FF;
}

section {
  padding: 6.5rem 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  section {
    padding: 4.5rem 0;
  }
}

.section-heading {
  text-align: center;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
}
.section-heading .heading-tagline {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.section-heading .section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 4px;
}
@media (max-width: 768px) {
  .section-heading .section-title {
    font-size: 1.85rem;
  }
}
.section-heading .section-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 600px;
  line-height: 1.6;
}

.section-hero {
  padding-top: 6.5rem;
  padding-bottom: 5.5rem;
}
@media (max-width: 768px) {
  .section-hero {
    padding-top: 4.5rem;
  }
}

.hero-grid-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 4.5rem;
  align-items: center;
  width: 100%;
}
@media (max-width: 1024px) {
  .hero-grid-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }
}

.hero-text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  width: 100%;
}
@media (max-width: 1024px) {
  .hero-text-content {
    align-items: center;
  }
}

.badge-new-release {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #00F5FF;
  background: rgba(0, 245, 255, 0.08);
  border: 1px solid rgba(0, 245, 255, 0.15);
  margin-bottom: 0.75rem;
}
.badge-new-release .badge-ping {
  position: relative;
  display: inline-flex;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00F5FF;
}
.badge-new-release .badge-ping .ping-wave {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #00F5FF;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}
.hero-title {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 0.75rem;
}
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.75rem;
  }
}
@media (max-width: 576px) {
  .hero-title {
    font-size: 2.25rem;
  }
}

.gradient-text {
  background: linear-gradient(135deg, #00F5FF 0%, #7928CA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 580px;
  margin-bottom: 1.25rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
@media (max-width: 576px) {
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta-group .btn {
    width: 100%;
  }
}

.hero-trust-metrics {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1.25rem;
}
@media (max-width: 576px) {
  .hero-trust-metrics {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
}
.hero-trust-metrics .metric-item {
  display: flex;
  flex-direction: column;
}
.hero-trust-metrics .metric-item .metric-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
}
.hero-trust-metrics .metric-item .metric-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}
.hero-trust-metrics .metric-item.border-left {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 2rem;
}
@media (max-width: 576px) {
  .hero-trust-metrics .metric-item.border-left {
    border-left: none;
    padding-left: 0;
  }
}

.hero-visual-card-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

.parallax-scene-wrapper {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 380px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 576px) {
  .parallax-scene-wrapper {
    max-width: 100%;
    height: 300px;
  }
}

.floating-glass-wallet-card {
  width: 340px;
  height: 215px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.04), 0 16px 48px rgba(0, 0, 0, 0.45);
  border-radius: 24px;
  padding: 1.25rem;
  transform-style: preserve-3d;
  perspective: 1000px;
  transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translate3d(0, 0, 0);
  transition: transform 120ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 576px) {
  .floating-glass-wallet-card {
    width: 100%;
    max-width: 295px;
    height: 195px;
    padding: 0.75rem;
  }
}
.floating-glass-wallet-card .card-chip-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.floating-glass-wallet-card .card-network-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}
.floating-glass-wallet-card .card-balance-preview {
  margin-top: 0.35rem;
  margin-bottom: 0.35rem;
}
.floating-glass-wallet-card .card-balance-preview .balance-title {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-bottom: 4px;
}
.floating-glass-wallet-card .card-balance-preview .balance-amount {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}
.floating-glass-wallet-card .card-balance-preview .balance-profit-badge {
  font-size: 0.7rem;
  color: #00E676;
}
.floating-glass-wallet-card .card-address-badge {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.4rem 0.75rem;
  border-radius: 10px;
}
.floating-glass-wallet-card .card-address-badge .address-preview {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}
.floating-glass-wallet-card .card-address-badge .btn-copy-address {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: color 200ms cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  justify-content: center;
  align-items: center;
}
.floating-glass-wallet-card .card-address-badge .btn-copy-address:hover {
  color: #ffffff;
}

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 0.85rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.04), 0 16px 48px rgba(0, 0, 0, 0.45);
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
}
.floating-badge img, .floating-badge svg {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .floating-badge {
    padding: 0.4rem 0.65rem;
    font-size: 0.65rem;
  }
}
.floating-badge.badge-eth {
  top: 15%;
  left: -10%;
  animation: float-eth 6s ease-in-out infinite;
}
@media (max-width: 576px) {
  .floating-badge.badge-eth {
    left: 0%;
  }
}
.floating-badge.badge-sol {
  bottom: 15%;
  right: -10%;
  animation: float-sol 8s ease-in-out infinite;
}
@media (max-width: 576px) {
  .floating-badge.badge-sol {
    right: 0%;
  }
}
.floating-badge.badge-btc {
  top: 55%;
  left: -15%;
  animation: float-btc 7s ease-in-out infinite;
}
@media (max-width: 576px) {
  .floating-badge.badge-btc {
    left: -2%;
  }
}

@keyframes float-eth {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes float-sol {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
}
@keyframes float-btc {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.section-chains-ticker {
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding: 1.25rem 0;
  overflow: hidden;
}
.section-chains-ticker .ticker-heading-container {
  text-align: center;
  margin-bottom: 0.75rem;
}
.section-chains-ticker .ticker-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.35);
}
.section-chains-ticker .ticker-carousel-wrapper {
  display: flex;
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}
.section-chains-ticker .ticker-track {
  display: flex;
  gap: 1.25rem;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}

@keyframes ticker-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-33.33%, 0, 0);
  }
}
.portfolio-dashboard-mockup {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.04), 0 16px 48px rgba(0, 0, 0, 0.45);
  border-radius: 24px;
  padding: 2rem;
  width: 100%;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.6);
}
@media (max-width: 768px) {
  .portfolio-dashboard-mockup {
    padding: 1.25rem;
  }
}

.mockup-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 1.25rem;
  margin-bottom: 2rem;
  gap: 1.25rem;
}
@media (max-width: 576px) {
  .mockup-header-row {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}

.mockup-tabs {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.02);
  padding: 4px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
@media (max-width: 576px) {
  .mockup-tabs {
    width: 100%;
    justify-content: center;
  }
}
.mockup-tabs .tab-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.45);
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.mockup-tabs .tab-btn:hover {
  color: #ffffff;
}
.mockup-tabs .tab-btn.active-tab {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.timeframe-selectors {
  display: flex;
  gap: 4px;
}
@media (max-width: 576px) {
  .timeframe-selectors {
    width: 100%;
    justify-content: center;
  }
}
.timeframe-selectors .time-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.45);
  width: 32px;
  height: 32px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  justify-content: center;
  align-items: center;
}
.timeframe-selectors .time-btn:hover {
  color: #ffffff;
}
.timeframe-selectors .time-btn.active-time {
  background: rgba(0, 242, 254, 0.08);
  color: #00F5FF;
  border: 1px solid rgba(0, 242, 254, 0.15);
}

.mockup-body-grid {
  display: grid;
  grid-template-columns: 1.8fr 1.2fr;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .mockup-body-grid {
    grid-template-columns: 1fr;
  }
}

.chart-illustration-panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.chart-illustration-panel .svg-chart-container {
  height: 220px;
  width: 100%;
}

.portfolio-details-panel {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.portfolio-details-panel .mini-asset-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.15rem;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.portfolio-details-panel .mini-asset-row:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
}
.portfolio-details-panel .mini-asset-row .asset-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.portfolio-details-panel .mini-asset-row .asset-meta .asset-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
  font-size: 1rem;
}
.portfolio-details-panel .mini-asset-row .asset-meta .asset-logo.eth-color {
  color: #8C8C8C;
}
.portfolio-details-panel .mini-asset-row .asset-meta .asset-logo.btc-color {
  color: #F7931A;
}
.portfolio-details-panel .mini-asset-row .asset-meta .asset-logo.sol-color {
  color: #14F195;
}
.portfolio-details-panel .mini-asset-row .asset-meta .asset-symbol {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}
.portfolio-details-panel .mini-asset-row .asset-meta .asset-name {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}
.portfolio-details-panel .mini-asset-row .asset-valuation {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.portfolio-details-panel .mini-asset-row .asset-valuation .valuation-usd {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}
.portfolio-details-panel .mini-asset-row .asset-valuation .valuation-native {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

.features-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .features-grid-3col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .features-grid-3col {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.features-grid-3col .feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.04), 0 16px 48px rgba(0, 0, 0, 0.45);
  border-radius: 24px;
  padding: 2rem;
}
.features-grid-3col .feature-card .feature-icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.features-grid-3col .feature-card:hover .feature-icon-box {
  background: rgba(0, 242, 254, 0.08);
  border-color: #00F5FF;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}
.features-grid-3col .feature-card .feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0;
}
.features-grid-3col .feature-card .feature-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.split-visual-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4.5rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .split-visual-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

.visual-pane-left {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

.security-cube-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 320px;
  height: 320px;
}
@media (max-width: 576px) {
  .security-cube-wrapper {
    max-width: 100%;
    height: 240px;
  }
}
.security-cube-wrapper .ambient-glow-circle {
  position: absolute;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(121, 40, 202, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}
.security-cube-wrapper .glass-shield-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.04), 0 16px 48px rgba(0, 0, 0, 0.45);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  z-index: 2;
  animation: float-shield 6s ease-in-out infinite;
}
@media (max-width: 576px) {
  .security-cube-wrapper .glass-shield-card {
    padding: 1.25rem;
    max-width: 240px;
  }
}
.security-cube-wrapper .glass-shield-card .security-shield-svg {
  filter: drop-shadow(0 0 12px rgba(121, 40, 202, 0.4));
}
.security-cube-wrapper .glass-shield-card .shield-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}

@keyframes float-shield {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.text-pane-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
}
.text-pane-right .security-checklist {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}
.text-pane-right .checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
@media (max-width: 576px) {
  .text-pane-right .checklist-item {
    gap: 0.75rem;
  }
}
.text-pane-right .checklist-item .check-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 230, 118, 0.15);
  color: #00E676;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.text-pane-right .checklist-item .item-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}
.text-pane-right .checklist-item .item-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
}
.showcase-grid.reverse-layout {
  grid-template-columns: 1fr 1fr;
}
.showcase-grid.reverse-layout .showcase-text {
  order: 2;
}
@media (max-width: 1024px) {
  .showcase-grid.reverse-layout .showcase-text {
    order: 0;
  }
}
@media (max-width: 1024px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

.showcase-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
}
.showcase-text .step-guide {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
  width: 100%;
}
.showcase-text .step-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 0.75rem 1.25rem;
  border-radius: 16px;
  width: 100%;
}
.showcase-text .step-row .step-num {
  font-size: 1rem;
  font-weight: 700;
  color: #00F5FF;
  font-family: "Space Grotesk", sans-serif;
}
.showcase-text .step-row .step-txt {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.showcase-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.mockup-widget-card {
  width: 100%;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.04), 0 16px 48px rgba(0, 0, 0, 0.45);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}
@media (max-width: 576px) {
  .mockup-widget-card {
    padding: 1.25rem;
    max-width: 100%;
  }
}
.mockup-widget-card .widget-head {
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.75rem;
}
.mockup-widget-card .widget-head .widget-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
}
.mockup-widget-card .widget-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.mockup-widget-card .qr-mockup-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  margin-bottom: 1.25rem;
}
.mockup-widget-card .qr-mockup-wrapper .qr-svg {
  filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.15));
}
.mockup-widget-card .wallet-address-copy-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}
.mockup-widget-card .wallet-address-copy-block .wallet-address {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 0.55rem 1.25rem;
  border-radius: 10px;
  width: 100%;
  text-align: center;
}
.mockup-widget-card .swap-divider-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -10px 0;
  position: relative;
  z-index: 5;
}
.mockup-widget-card .swap-divider-btn .btn-swap-direction {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.2);
  color: #00F5FF;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.mockup-widget-card .swap-divider-btn .btn-swap-direction:hover {
  background: #00F5FF;
  color: #030508;
  box-shadow: 0 0 10px #00F5FF;
}
.mockup-widget-card .input-row-interactive {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  width: 100%;
}
.mockup-widget-card .input-row-interactive .form-input-inline {
  width: 100%;
  padding: 0.95rem 1.25rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  color: #ffffff;
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}
.mockup-widget-card .input-row-interactive .form-input-inline:focus {
  background: rgba(255, 255, 255, 0.04);
  border-color: #00F5FF;
  box-shadow: 0 0 14px rgba(0, 242, 254, 0.25);
}
.mockup-widget-card .token-dropdown-wrap {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.mockup-widget-card .token-dropdown-wrap:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
}
.mockup-widget-card .token-select-dropdown {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.95rem 2.2rem 0.95rem 1.25rem;
  cursor: pointer;
  outline: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 0.6rem auto;
}
.mockup-widget-card .token-select-dropdown-small {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.4rem 1.6rem 0.4rem 0.75rem;
  cursor: pointer;
  outline: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
  background-size: 0.5rem auto;
}
.mockup-widget-card .swap-amount-input {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  width: 140px;
  padding: 0;
  outline: none;
  box-shadow: none !important;
  font-family: "Space Grotesk", sans-serif;
}
.mockup-widget-card .swap-amount-input::-webkit-outer-spin-button, .mockup-widget-card .swap-amount-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.mockup-widget-card .range-slider-wrapper {
  position: relative;
  padding: 8px 0;
  width: 100%;
}
.mockup-widget-card .interactive-range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  outline: none;
  cursor: pointer;
  transition: background 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.mockup-widget-card .interactive-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #00F5FF;
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.6);
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.mockup-widget-card .interactive-range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 14px rgba(0, 242, 254, 0.9);
}
.mockup-widget-card .interactive-range-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #00F5FF;
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.6);
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.mockup-widget-card .interactive-range-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
}
.mockup-widget-card .showcase-token-tabs {
  display: flex;
  gap: 0.35rem;
  justify-content: center;
  margin-bottom: 1.25rem;
  width: 100%;
}
.mockup-widget-card .showcase-token-tabs .token-tab {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.4rem 0.85rem;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.mockup-widget-card .showcase-token-tabs .token-tab:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}
.mockup-widget-card .showcase-token-tabs .token-tab.active {
  color: #ffffff;
  background: rgba(0, 245, 255, 0.08);
  border-color: rgba(0, 245, 255, 0.25);
  box-shadow: 0 0 10px rgba(0, 245, 255, 0.08);
}
.mockup-widget-card .form-feedback-text {
  font-size: 0.75rem;
  font-weight: 500;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-top: 6px;
  display: none;
  text-align: left;
}
.mockup-widget-card .form-feedback-text.feedback-success {
  display: block;
  color: #00E676;
}
.mockup-widget-card .form-feedback-text.feedback-error {
  display: block;
  color: #FF2D55;
}

.analytics-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
}
@media (max-width: 1024px) {
  .analytics-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .analytics-metrics-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.analytics-metrics-grid .metric-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.04), 0 16px 48px rgba(0, 0, 0, 0.45);
  border-radius: 24px;
  padding: 2rem;
}
.analytics-metrics-grid .metric-card .metric-card-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}
.analytics-metrics-grid .metric-card .metric-card-value {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
}
.analytics-metrics-grid .metric-card .metric-trend {
  font-size: 0.8rem;
  font-weight: 600;
}
.analytics-metrics-grid .metric-card .metric-trend.trend-positive {
  color: #00E676;
}
.analytics-metrics-grid .metric-card .metric-trend.trend-negative {
  color: #FF2D55;
}

.testimonials-slider-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: 100%;
}
@media (max-width: 768px) {
  .testimonials-slider-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.testimonials-slider-grid .testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.04), 0 16px 48px rgba(0, 0, 0, 0.45);
  border-radius: 24px;
  padding: 2rem;
}
.testimonials-slider-grid .testimonial-card .rating-stars {
  color: #FFB300;
  letter-spacing: 2px;
  font-size: 0.85rem;
}
.testimonials-slider-grid .testimonial-card .testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
}
.testimonials-slider-grid .testimonial-card .user-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.testimonials-slider-grid .testimonial-card .user-meta .placeholder-avatar, .testimonials-slider-grid .testimonial-card .user-meta .user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.testimonials-slider-grid .testimonial-card .user-meta .placeholder-avatar.bg-grad-cyan, .testimonials-slider-grid .testimonial-card .user-meta .user-avatar.bg-grad-cyan {
  background: linear-gradient(135deg, #00F5FF 0%, #7928CA 100%);
}
.testimonials-slider-grid .testimonial-card .user-meta .placeholder-avatar.bg-grad-violet, .testimonials-slider-grid .testimonial-card .user-meta .user-avatar.bg-grad-violet {
  background: linear-gradient(135deg, #7928CA 0%, #FF2D55 100%);
}
.testimonials-slider-grid .testimonial-card .user-meta .user-info {
  display: flex;
  flex-direction: column;
}
.testimonials-slider-grid .testimonial-card .user-meta .user-info .user-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}
.testimonials-slider-grid .testimonial-card .user-meta .user-info .user-title {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.faq-accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}
.faq-accordion-wrapper .accordion-item {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.04), 0 16px 48px rgba(0, 0, 0, 0.45);
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
  transition: all 450ms cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-accordion-wrapper .accordion-item.accordion-active {
  border-color: rgba(0, 242, 254, 0.15);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.05);
}
.faq-accordion-wrapper .accordion-header {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #ffffff;
  outline: none;
  text-align: left;
}
.faq-accordion-wrapper .accordion-header .header-text {
  font-size: 1rem;
  font-weight: 600;
}
.faq-accordion-wrapper .accordion-header .accordion-icon {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.45);
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-accordion-wrapper .accordion-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 450ms cubic-bezier(0.16, 1, 0.3, 1), opacity 450ms cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-accordion-wrapper .accordion-body .body-content {
  padding: 0 2rem 2rem 2rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

.cta-banner-card {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.04) 0%, rgba(121, 40, 202, 0.04) 100%);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.04), 0 16px 48px rgba(0, 0, 0, 0.45);
  border-radius: 32px;
  padding: 3.5rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
  width: 100%;
}
.cta-banner-card .banner-glow-spot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}
.cta-banner-card .banner-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  z-index: 2;
}
@media (max-width: 768px) {
  .cta-banner-card .banner-title {
    font-size: 1.85rem;
  }
}
.cta-banner-card .banner-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 580px;
  line-height: 1.6;
  z-index: 2;
}
.cta-banner-card .banner-actions {
  display: flex;
  gap: 1.25rem;
  z-index: 2;
}
@media (max-width: 576px) {
  .cta-banner-card .banner-actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-banner-card .banner-actions .btn {
    width: 100%;
  }
}

.section-contact {
  padding-bottom: 6.5rem;
}

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.04), 0 16px 48px rgba(0, 0, 0, 0.45);
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.6);
  width: 100%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  width: 100%;
}
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info-pane {
  background: linear-gradient(135deg, rgba(121, 40, 202, 0.05) 0%, rgba(0, 242, 254, 0.02) 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.04);
  padding: 3.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (max-width: 1024px) {
  .contact-info-pane {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 2rem;
  }
}
.contact-info-pane .pane-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
}
.contact-info-pane .pane-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}
.contact-info-pane .info-items-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 1.25rem;
}
.contact-info-pane .info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.contact-info-pane .info-item .info-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(121, 40, 202, 0.08);
  border: 1px solid rgba(121, 40, 202, 0.15);
  color: #7928CA;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-pane .info-item .info-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}
.contact-info-pane .info-item .info-value {
  font-size: 0.95rem;
  color: #ffffff;
  text-decoration: none;
  transition: color 200ms cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
  margin-top: 2px;
}
.contact-info-pane .info-item .info-value[href]:hover {
  color: #00F5FF;
  text-shadow: 0 0 10px rgba(0, 245, 255, 0.2);
}

.contact-form-pane {
  padding: 3.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
@media (max-width: 1024px) {
  .contact-form-pane {
    padding: 2rem;
  }
}
.contact-form-pane .form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 576px) {
  .contact-form-pane .form-row-2col {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.contact-form-pane .form-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-toast-feedback {
  margin-top: 1.25rem;
  padding: 0.85rem 1.25rem;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.5;
  display: none;
  font-weight: 500;
}
.contact-toast-feedback.toast-success {
  display: block;
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.15);
  color: #00E676;
  animation: fadeIn 300ms ease-out forwards;
}
.contact-toast-feedback.toast-error {
  display: block;
  background: rgba(255, 45, 85, 0.08);
  border: 1px solid rgba(255, 45, 85, 0.15);
  color: #FF2D55;
  animation: fadeIn 300ms ease-out forwards;
}

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

/* Recent Activity Card & Row Enhancements for premium UX */
.transaction-log-card {
    padding: 1.75rem 2rem !important;
}

.transaction-table {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 0.75rem !important; /* Separated row design */
    margin-top: 0.5rem;
}

.transaction-log-card .transaction-table th {
    padding: 0.5rem 1.25rem !important;
    border-bottom: none !important;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.35);
}

.transaction-log-card .transaction-table tbody tr {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.transaction-log-card .transaction-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.045) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.transaction-log-card .transaction-table td {
    padding: 1.1rem 1.5rem !important;
    border-bottom: none !important;
    vertical-align: middle;
}

.transaction-log-card .transaction-table td:first-child {
    border-radius: 14px 0 0 14px !important;
    border-left: 1px solid rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.transaction-log-card .transaction-table td:last-child {
    border-radius: 0 14px 14px 0 !important;
    border-right: 1px solid rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* Metadata formatting */
.tx-action-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tx-type-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: bold;
    flex-shrink: 0;
}

.icon-received {
    color: #00E676;
    background: rgba(0, 230, 118, 0.08) !important;
    border: 1px solid rgba(0, 230, 118, 0.15);
}

.icon-sent {
    color: #FF3366;
    background: rgba(255, 51, 102, 0.08) !important;
    border: 1px solid rgba(255, 51, 102, 0.15);
}

.tx-action-title {
    font-size: 0.92rem !important;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.15rem 0 !important;
}

.tx-sender {
    font-size: 0.78rem !important;
    color: rgba(255, 255, 255, 0.45);
}

/* Responsive cards for mobile phones */
@media (max-width: 576px) {
    .transaction-log-card .transaction-table thead {
        display: none !important; /* Hide header columns */
    }
    
    .transaction-log-card .transaction-table, 
    .transaction-log-card .transaction-table tbody, 
    .transaction-log-card .transaction-table tr, 
    .transaction-log-card .transaction-table td {
        display: block !important;
        width: 100% !important;
    }
    
    .transaction-log-card .transaction-table tr {
        margin-bottom: 1rem !important;
        border-radius: 16px !important;
        border: 1px solid rgba(255, 255, 255, 0.05) !important;
        background: rgba(255, 255, 255, 0.02) !important;
        padding: 0.75rem 0 !important;
    }
    
    .transaction-log-card .transaction-table td {
        padding: 0.5rem 1.25rem !important;
        box-sizing: border-box !important;
        border: none !important;
        border-radius: 0 !important;
    }
    
    .transaction-log-card .transaction-table td:first-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
        padding-bottom: 0.85rem !important;
    }
    
    .transaction-log-card .transaction-table td:last-child {
        text-align: left !important;
        font-size: 1.1rem !important;
        font-weight: bold !important;
        padding-top: 0.75rem !important;
    }
    
    .transaction-log-card .transaction-table td:not(:first-child):not(:last-child) {
        display: inline-block !important;
        width: auto !important;
        color: rgba(255,255,255,0.4) !important;
        font-size: 0.8rem !important;
        padding-right: 0.5rem !important;
    }
}
