

:root {
  --primary: #4F47FF;
  --secondary: #00EAF1;
  --danger: #E150FF;
  --background: #0B0D11;
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.1);
}

body {
  background: var(--background);
  color: white;
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.04);
}

.glow {
  box-shadow: 0 0 15px var(--primary), 0 0 30px rgba(79, 71, 255, 0.4);
}

.text-primary {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  color: transparent;
}

button, .btn {
  transition: 0.2s ease;
}

button:hover, .btn:hover {
  filter: brightness(1.2);
}

input, select {
  transition: 0.2s ease;
}

input:focus, select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(79, 71, 255, 0.4);
}

#mixModal.show {
  display: flex;
}

#floatingWidget {
  animation: widgetFade 0.3s ease;
}

@keyframes widgetFade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.btn-addr {
  padding: 0.4rem 0.65rem;
  border-radius: 0.375rem;
  transition: 0.2s ease;
}

.btn-addr:hover {
  filter: brightness(1.2);
}

#langSelect option {
  background-color: #0B0D11 !important;
  color: white !important;
}



#feeSelect option {
  background-color: #0B0D11 !important;
  color: white !important;
}

#openMixModal,
#openMixModalMobile {
  box-shadow:
    0 0 15px rgba(79,71,255,0.7),
    0 0 25px rgba(0,234,241,0.4);
  transform: translateZ(0);
}
.loader-mini {
    border-top-color: transparent !important;
}
#openMixModal:hover,
#openMixModalMobile:hover {
  transform: translateY(-2px) scale(1.05);
}



.nav-btn {
    padding: 6px 18px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.03);
    color: #fff;
    font-size: 16px;
    transition: none;
    position: relative;
    overflow: hidden;
}

.nav-btn:hover {
    border-color: rgba(0,234,241,0.6);
    color: #00EAF1;
    transform: translateY(-2px) scale(1.03);
    box-shadow:
        0 0 10px rgba(0,234,241,0.3),
        0 0 20px rgba(0,234,241,0.15);
}

.nav-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top,
        rgba(0,234,241,0.15),
        transparent 60%
    );
    opacity: 0;
    transition: none;
}

.nav-btn:hover::before {
    opacity: 1;
}

.nav-btn-mix {
    padding: 8px 26px;
    background: linear-gradient(90deg, #4F47FF, #00EAF1);
    color: white;
    font-weight: bold;
    border-radius: 10px;
    box-shadow:
        0 0 15px rgba(79,71,255,0.7),
        0 0 25px rgba(0,234,241,0.4);
    transition: none;
}
.nav-btn-mix:hover {
    transform: translateY(-3px) scale(1.06);
    box-shadow:
        0 0 25px rgba(79,71,255,0.9),
        0 0 45px rgba(0,234,241,0.6);
}

#mixModal {
  z-index: 9999 !important;
}

#mixModal .glass {
  z-index: 10000 !important;
}

#tronLayer {
  z-index: -3 !important;
}
