body {
  margin: 0;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: hsl(6, 78%, 57%);
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);

  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);

  --toastify-container-width: fit-content;
  --toastify-toast-width: 320px;
  --toastify-toast-offset: 16px;
  --toastify-toast-top: max(var(--toastify-toast-offset), env(safe-area-inset-top));
  --toastify-toast-right: max(var(--toastify-toast-offset), env(safe-area-inset-right));
  --toastify-toast-left: max(var(--toastify-toast-offset), env(safe-area-inset-left));
  --toastify-toast-bottom: max(var(--toastify-toast-offset), env(safe-area-inset-bottom));
  --toastify-toast-background: #fff;
  --toastify-toast-padding: 14px;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-toast-bd-radius: 6px;
  --toastify-toast-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;

  /* Used only for colored theme */
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;

  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
  /* used to control the opacity of the progress trail */
  --toastify-color-progress-bgo: 0.2;
}

.Toastify__toast-container {
  z-index: 9999;
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, 9999);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
  position: fixed;
  width: fit-content;
  width: var(--toastify-container-width);
  box-sizing: border-box;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.Toastify__toast-container--top-left {
  top: max(16px, env(safe-area-inset-top));
  top: var(--toastify-toast-top);
  left: max(16px, env(safe-area-inset-left));
  left: var(--toastify-toast-left);
}
.Toastify__toast-container--top-center {
  top: max(16px, env(safe-area-inset-top));
  top: var(--toastify-toast-top);
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}
.Toastify__toast-container--top-right {
  top: max(16px, env(safe-area-inset-top));
  top: var(--toastify-toast-top);
  right: max(16px, env(safe-area-inset-right));
  right: var(--toastify-toast-right);
  align-items: end;
}
.Toastify__toast-container--bottom-left {
  bottom: max(16px, env(safe-area-inset-bottom));
  bottom: var(--toastify-toast-bottom);
  left: max(16px, env(safe-area-inset-left));
  left: var(--toastify-toast-left);
}
.Toastify__toast-container--bottom-center {
  bottom: max(16px, env(safe-area-inset-bottom));
  bottom: var(--toastify-toast-bottom);
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}
.Toastify__toast-container--bottom-right {
  bottom: max(16px, env(safe-area-inset-bottom));
  bottom: var(--toastify-toast-bottom);
  right: max(16px, env(safe-area-inset-right));
  right: var(--toastify-toast-right);
  align-items: end;
}

.Toastify__toast {
  --y: 0;
  position: relative;
  touch-action: none;
  width: 320px;
  width: var(--toastify-toast-width);
  min-height: 64px;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 14px;
  padding: var(--toastify-toast-padding);
  border-radius: 6px;
  border-radius: var(--toastify-toast-bd-radius);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  box-shadow: var(--toastify-toast-shadow);
  max-height: 800px;
  max-height: var(--toastify-toast-max-height);
  font-family: sans-serif;
  font-family: var(--toastify-font-family);
  /* webkit only issue #791 */
  z-index: 0;
  /* inner swag */
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  word-break: break-word;
}

@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: 100vw;
    left: env(safe-area-inset-left);
    margin: 0;
  }
  .Toastify__toast-container--top-left,
  .Toastify__toast-container--top-center,
  .Toastify__toast-container--top-right {
    top: env(safe-area-inset-top);
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left,
  .Toastify__toast-container--bottom-center,
  .Toastify__toast-container--bottom-right {
    bottom: env(safe-area-inset-bottom);
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: env(safe-area-inset-right);
    left: auto;
    left: initial;
  }
  .Toastify__toast {
    --toastify-toast-width: 100%;
    margin-bottom: 0;
    border-radius: 0;
  }
}

.Toastify__toast-container[data-stacked='true'] {
  width: 320px;
  width: var(--toastify-toast-width);
}

.Toastify__toast--stacked {
  position: absolute;
  width: 100%;
  transform: translate3d(0, var(--y), 0) scale(var(--s));
  transition: transform 0.3s;
}

.Toastify__toast--stacked[data-collapsed] .Toastify__toast-body,
.Toastify__toast--stacked[data-collapsed] .Toastify__close-button {
  transition: opacity 0.1s;
}

.Toastify__toast--stacked[data-collapsed='false'] {
  overflow: visible;
}

.Toastify__toast--stacked[data-collapsed='true']:not(:last-child) > * {
  opacity: 0;
}

.Toastify__toast--stacked:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: calc(var(--g) * 1px);
  bottom: 100%;
}

.Toastify__toast--stacked[data-pos='top'] {
  top: 0;
}

.Toastify__toast--stacked[data-pos='bot'] {
  bottom: 0;
}

.Toastify__toast--stacked[data-pos='bot'].Toastify__toast--stacked:before {
  transform-origin: top;
}

.Toastify__toast--stacked[data-pos='top'].Toastify__toast--stacked:before {
  transform-origin: bottom;
}

.Toastify__toast--stacked:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  transform: scaleY(3);
  z-index: -1;
}

.Toastify__toast--rtl {
  direction: rtl;
}

.Toastify__toast--close-on-click {
  cursor: pointer;
}

.Toastify__toast-icon {
  margin-inline-end: 10px;
  width: 22px;
  flex-shrink: 0;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.5s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

.Toastify__toast-theme--dark {
  background: #121212;
  background: var(--toastify-color-dark);
  color: #fff;
  color: var(--toastify-text-color-dark);
}

.Toastify__toast-theme--light {
  background: #fff;
  background: var(--toastify-color-light);
  color: #757575;
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--default {
  background: #fff;
  background: var(--toastify-color-light);
  color: #757575;
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--info {
  color: #fff;
  color: var(--toastify-text-color-info);
  background: #3498db;
  background: var(--toastify-color-info);
}

.Toastify__toast-theme--colored.Toastify__toast--success {
  color: #fff;
  color: var(--toastify-text-color-success);
  background: #07bc0c;
  background: var(--toastify-color-success);
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: #fff;
  color: var(--toastify-text-color-warning);
  background: #f1c40f;
  background: var(--toastify-color-warning);
}

.Toastify__toast-theme--colored.Toastify__toast--error {
  color: #fff;
  color: var(--toastify-text-color-error);
  background: hsl(6, 78%, 57%);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
  background: var(--toastify-color-progress-light);
}

.Toastify__progress-bar-theme--dark {
  background: #bb86fc;
  background: var(--toastify-color-progress-dark);
}

.Toastify__progress-bar--info {
  background: #3498db;
  background: var(--toastify-color-progress-info);
}

.Toastify__progress-bar--success {
  background: #07bc0c;
  background: var(--toastify-color-progress-success);
}

.Toastify__progress-bar--warning {
  background: #f1c40f;
  background: var(--toastify-color-progress-warning);
}

.Toastify__progress-bar--error {
  background: hsl(6, 78%, 57%);
  background: var(--toastify-color-progress-error);
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: rgba(255, 255, 255, 0.7);
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  position: absolute;
  top: 6px;
  right: 6px;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  z-index: 1;
}

.Toastify__toast--rtl .Toastify__close-button {
  left: 6px;
  right: auto;
  right: initial;
}

.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}

.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}

.Toastify__close-button:hover,
.Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.7;
  transform-origin: left;
}

.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}

.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}

.Toastify__progress-bar--rtl {
  right: 0;
  left: auto;
  left: initial;
  transform-origin: right;
  border-bottom-left-radius: 0;
  border-bottom-left-radius: initial;
}

.Toastify__progress-bar--wrp {
  position: absolute;
  overflow: hidden;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-bottom-left-radius: 6px;
  border-bottom-left-radius: var(--toastify-toast-bd-radius);
  border-bottom-right-radius: 6px;
  border-bottom-right-radius: var(--toastify-toast-bd-radius);
}

.Toastify__progress-bar--wrp[data-hidden='true'] {
  opacity: 0;
}

.Toastify__progress-bar--bg {
  opacity: 0.2;
  opacity: var(--toastify-color-progress-bgo);
  width: 100%;
  height: 100%;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: #e0e0e0;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: #616161;
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, var(--y), 0);
  }
}

@keyframes Toastify__bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, var(--y), 0);
  }
}

@keyframes Toastify__bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes Toastify__bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.Toastify__bounce-enter--top-left,
.Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}

.Toastify__bounce-enter--top-right,
.Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}

.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}

.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left,
.Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}

.Toastify__bounce-exit--top-right,
.Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}

.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}

.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: translate3d(0, var(--y), 0) scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}

@keyframes Toastify__flipOut {
  from {
    transform: translate3d(0, var(--y), 0) perspective(400px);
  }
  30% {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, var(--y), 0);
  }
}

@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, var(--y), 0);
  }
}

@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}

@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}

.Toastify__slide-enter--top-left,
.Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}

.Toastify__slide-enter--top-right,
.Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}

.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}

.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left,
.Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--top-right,
.Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

* {
  box-sizing: border-box;
}

/* Loading spinner animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

body {
  margin: 0;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #1a1c1f;
  min-height: 100vh;
}

.App {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #040404;
}

/* Global scrollbar styles */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

/* Responsive design */
@media (max-width: 768px) {
  .footer {
    padding: 1.5rem 0;
    margin-top: 2rem;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    padding: 0 1rem;
  }
  
  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .footer-links span {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
}

/* Loading animation effects */
.fade-in {
  animation: fadeIn 0.8s ease-out;
}

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

/* Button focus states */
button:focus {
  outline: 2px solid #667eea;
  outline-offset: 2px;
}

/* Input focus states */
input:focus {
  outline: none;
}

/* Text selection styles */
::selection {
  background: #667eea;
  color: white;
}

::-moz-selection {
  background: #667eea;
  color: white;
}

.Marquee_marquee__R\+KpQ {
  position: relative;
  width: 100%;
  z-index: 1000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  background: #85EF8A;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

.Marquee_track__6w4q1 {
  display: inline-flex;
  white-space: nowrap;
  align-items: center;
  gap: 32px;
  animation: Marquee_marquee__R\+KpQ 20s linear infinite;
  animation: Marquee_marquee__R\+KpQ var(--duration, 20s) linear infinite;
  will-change: transform;
}

.Marquee_item__LxsiB {
  display: inline-flex;
  align-items: center;
  color: #000000;
  opacity: 0.9;
  font-size: 12px;
  line-height: 1;
}

.Marquee_item__LxsiB strong {
  font-weight: 700;
  font-size: inherit;
}

@keyframes Marquee_marquee__R\+KpQ {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}



.LanguageSelector_container__0Flxe {
  position: relative;
  display: inline-block;
}

.LanguageSelector_selector__LJCQC {
  display: flex;
  align-items: center;
  height: 36px;
  padding: 6px;
  background: none;
  border: 1px solid #3b3c3e;
  border-radius: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.LanguageSelector_selector__LJCQC:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.LanguageSelector_dropdown__WBCG\+ {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 4px;
  background: #232429;
  border: 1px solid #3b3c3e;
  border-radius: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  min-width: 140px;
  z-index: 1000;
  animation: LanguageSelector_slideDown__Y7QTv 0.2s ease;
}

@keyframes LanguageSelector_slideDown__Y7QTv {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.LanguageSelector_option__FjBYx {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 12px;
  background: none;
  border: none;
  color: white;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-align: left;
}

.LanguageSelector_option__FjBYx:hover {
  background: rgba(102, 126, 234, 0.1);
}

.LanguageSelector_option__FjBYx.LanguageSelector_active__jdMov {
  background: rgba(102, 126, 234, 0.15);
  color: white;
  font-weight: 600;
}

.LanguageSelector_flagIcon__U4h5s {
  width: 20px;
  height: 15px;
  border-radius: 2px;
  object-fit: cover;
}

.LanguageSelector_name__Lf4yQ {
  flex: 1 1;
  font-weight: 500;
}

.LanguageSelector_code__geH-5 {
  font-size: 12px;
  font-weight: 600;
  color: white;
  min-width: 20px;
}

/* Responsive design */
@media (max-width: 768px) {
  
  .LanguageSelector_flagIcon__U4h5s {
    width: 18px;
    height: 13px;
  }
  
  .LanguageSelector_dropdown__WBCG\+ {
    min-width: 120px;
  }
  
  .LanguageSelector_option__FjBYx {
    padding: 8px 10px;
    font-size: 13px;
  }
} 
/* Toast Container Styles */
.Toast_toastBody__tM5WH {
  font-family: 'Inter';
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 280px;
  max-width: 400px;
}

/* Progress Bar Styles */
.Toast_toastProgress__DB-kY {
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  height: 3px;
  border-radius: 0 0 8px 8px;
}

/* Success Toast Styles */
.Toast_successToast__3JYWR {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-left: 4px solid #10b981;
}

.Toast_successToast__3JYWR::before {
  content: "✅";
  margin-right: 8px;
  font-size: 16px;
}

/* Error Toast Styles */
.Toast_errorToast__bQLsB {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  border-left: 4px solid #ef4444;
}

.Toast_errorToast__bQLsB::before {
  content: "❌";
  margin-right: 8px;
  font-size: 16px;
}

/* Warning Toast Styles */
.Toast_warningToast__OFLmC {
  background: linear-gradient(135deg, #fad961 0%, #f76b1c 100%);
  color: white;
  border-left: 4px solid #f59e0b;
}

.Toast_warningToast__OFLmC::before {
  content: "⚠️";
  margin-right: 8px;
  font-size: 16px;
}

/* Info Toast Styles */
.Toast_infoToast__UmhN- {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  color: #1f2937;
  border-left: 4px solid #3b82f6;
}

.Toast_infoToast__UmhN-::before {
  content: "ℹ️";
  margin-right: 8px;
  font-size: 16px;
}

/* Default Toast Styles */
.Toast_defaultToast__xnDa6 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-left: 4px solid #6b7280;
}

.Toast_defaultToast__xnDa6::before {
  content: "💬";
  margin-right: 8px;
  font-size: 16px;
}

/* Hover Effects */
.Toast_successToast__3JYWR:hover,
.Toast_errorToast__bQLsB:hover,
.Toast_warningToast__OFLmC:hover,
.Toast_infoToast__UmhN-:hover,
.Toast_defaultToast__xnDa6:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

/* Animation Effects */
@keyframes Toast_slideInRight__gXtY1 {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes Toast_slideOutRight__f4jHL {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .Toast_toastBody__tM5WH {
    min-width: 250px;
    max-width: 320px;
    font-size: 13px;
    padding: 10px 14px;
  }
}

@media (max-width: 480px) {
  .Toast_toastBody__tM5WH {
    min-width: 200px;
    max-width: 280px;
    font-size: 12px;
    padding: 8px 12px;
  }
}

.WalletButton_walletButton__ijz10 {
  display: flex;
  align-items: center;
}

.WalletButton_walletDropdown__ZyK4I {
  position: relative;
  display: inline-block;
}

.WalletButton_walletSelector__61ZNt {
  display: flex;
  align-items: center;
  gap: 4px;
  background: white;
  border: 1px solid #3b3c3e;
  border-radius: 0.75rem;
  color: black;
  padding: 6px 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.WalletButton_walletSelector__61ZNt:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.WalletButton_walletAddress__Ui-qs {
  color: black;
  font-weight: 600;
}

.WalletButton_pijsLogo__6gUIC {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}

/* Ensure consistent appearance for PIJS logo */
.WalletButton_walletSelector__61ZNt .WalletButton_pijsLogo__6gUIC {
  filter: saturate(1.05);
}

.WalletButton_arrowIcon__boB46 {
  width: 16px;
  height: 16px;
  color: #999;
  transition: transform 0.2s ease;
}

.WalletButton_arrowIcon__boB46.WalletButton_rotated__S4Fzs {
  transform: rotate(180deg);
}

.WalletButton_dropdown__ZsQ05 {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 4px;
  background: #232429;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  min-width: 140px;
  z-index: 1000;
  animation: WalletButton_slideDown__r93dk 0.2s ease;
}

@keyframes WalletButton_slideDown__r93dk {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.WalletButton_dropdownOption__fqIOE {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 12px;
  background: none;
  border: none;
  color: white;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-align: left;
}

.WalletButton_dropdownOption__fqIOE:hover {
  background: rgba(102, 126, 234, 0.1);
}

.WalletButton_signOutIcon__HrjvX {
  width: 16px;
  height: 16px;
  color: currentColor;
}

.WalletButton_dashboardIcon__eCU1K {
  width: 16px;
  height: 16px;
  color: currentColor;
}

.WalletButton_walletStatus__Rgm4a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.WalletButton_connectButton__EDQsJ {
  background: white;
  color: black;
  border: none;
  height: 40px;
  border-radius: 0.75rem;

  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0 1.5rem;
}

.WalletButton_connectButton__EDQsJ:hover:not(:disabled) {
  transform: translateY(-2px);
}

.WalletButton_connectButton__EDQsJ:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.WalletButton_connectButton__EDQsJ:active {
  transform: translateY(0);
}

/* Dropdown header showing full address */
.WalletButton_dropdownHeader__M0Nji {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.WalletButton_fullAddress__LPeHx {
  color: white;
  font-size: 12px;
  font-weight: 500;
  word-break: break-all;
}

.WalletButton_shortAddress__pK7EI {
  color: rgba(255,255,255,0.8);
  font-size: 11px;
  font-weight: 500;
}

/* Mobile: hide short address text on the selector button */
@media (max-width: 768px) {
  .WalletButton_walletSelector__61ZNt .WalletButton_walletAddress__Ui-qs {
    display: none;
  }
}

.Nav_nav__g-B3v {
  z-index: 1000;
  position: relative;
}

.Nav_container__P-uG\+ {
  height: 56px;
  max-width: 1200px;
  padding: 0 16px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.Nav_logo__SU06O{
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.Nav_logo__SU06O:hover {
  opacity: 0.8;
}

.Nav_logo__SU06O img{
  height: 40px;
}

.Nav_logo__SU06O span{
  font-size: 20px;
  font-weight: 600;
  color: white;
}

.Nav_desktopMenu__K\+xuI {
  display: flex;
  align-items: center;
}

.Nav_menuLinks__emryv {
  display: flex;
  gap: 24px;
}

.Nav_menuLink__OAqKF {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: white;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.Nav_menuLink__OAqKF:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #EAB97E;
}

.Nav_dropdown__HxSYz {
  position: relative;
}

.Nav_dropdownArrow__6Bu7j {
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.Nav_dropdownArrow__6Bu7j svg {
  width: 16px;
  height: 16px;
}

.Nav_dropdownArrow__6Bu7j.Nav_open__ZowD2 {
  transform: rotate(180deg);
}

.Nav_dropdownMenu__H43qT {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  margin-top: 8px;
}

.Nav_dropdownLink__H5lxI {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: white;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  padding: 12px 16px;
  text-align: left;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.Nav_dropdownLink__H5lxI:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #efbe84;
}

.Nav_navRight__OoC6f {
  display: flex;
  align-items: center;
  gap: 8px;
}

.Nav_walletSection__3e-Vc {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.Nav_menuButton__-HHiT {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  order: 999;
}

.Nav_hamburger__XVffu {
  display: flex;
  flex-direction: column;
  width: 20px;
  height: 16px;
  justify-content: space-between;
}

.Nav_hamburger__XVffu span {
  display: block;
  height: 2px;
  width: 100%;
  background: white;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.Nav_hamburger__XVffu.Nav_open__ZowD2 span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.Nav_hamburger__XVffu.Nav_open__ZowD2 span:nth-child(2) {
  opacity: 0;
}

.Nav_hamburger__XVffu.Nav_open__ZowD2 span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.Nav_mobileMenu__w2lMg {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 100vh;
  background: #040404;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.Nav_mobileMenuLinks__VvisA {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.Nav_mobileMenuLink__euyCO {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  padding: 16px 24px;
  text-align: left;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.Nav_mobileMenuLink__euyCO:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #EAB97E;
}

.Nav_mobileMenuLink__euyCO:last-child {
  border-bottom: none;
}

.Nav_mobileDropdown__\+q3-j {
  position: relative;
}

.Nav_mobileDropdownArrow__3eCdh {
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
  float: right;
}

.Nav_mobileDropdownArrow__3eCdh svg {
  width: 16px;
  height: 16px;
}

.Nav_mobileDropdownArrow__3eCdh.Nav_open__ZowD2 {
  transform: rotate(180deg);
}

.Nav_mobileDropdownMenu__GLuro {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.Nav_mobileDropdownLink__5tdhz {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  padding: 12px 32px;
  text-align: left;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.Nav_mobileDropdownLink__5tdhz:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #EAB97E;
}

.Nav_mobileDropdownLink__5tdhz:last-child {
  border-bottom: none;
}

.Nav_socialLinks__9G04K {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 16px 0 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: auto;
}

.Nav_socialLink__IT3U5 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: none;
  border: none;
  cursor: pointer;
  padding: 16px 24px;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  gap: 12px;
  width: 100%;
  text-align: left;
}

.Nav_socialLink__IT3U5:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #EAB97E;
}

.Nav_socialLink__IT3U5:last-child {
  border-bottom: none;
}

.Nav_socialIcon__btT30 {
  width: 20px;
  height: 20px;
  fill: white;
  flex-shrink: 0;
}

.Nav_socialName__jOrYL {
  color: white;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.Nav_socialLink__IT3U5:hover .Nav_socialName__jOrYL {
  color: #EAB97E;
}

@media (max-width: 768px) {
  .Nav_desktopMenu__K\+xuI {
    display: none;
  }
  
  .Nav_menuButton__-HHiT {
    display: block;
  }
  
  .Nav_mobileMenu__w2lMg {
    display: block;
  }
  
  .Nav_container__P-uG\+ {
    position: relative;
  }
}






.DashboardPage_mainContent__GqdNL {
  display: flex;
  flex-direction: column;
  flex: 1 1;
  padding-top: 8px;
  gap: 80px;
}

.DashboardPage_container__r9KeA {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}


/* Tabs Styles */
.DashboardPage_tabsContainer__l4Zdb {
  width: 100%;
  margin-bottom: 1.5rem;
}

.DashboardPage_tabsHeader__tw9jU {
  display: flex;
  overflow: hidden;
  margin-bottom: 16px;
}

.DashboardPage_tabButton__C9WII {
  background: transparent;
  color: #929292;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.DashboardPage_tabButton__C9WII:hover {
  color: white;
  border-bottom: 2px solid #efbe84;
}

.DashboardPage_tabButton__C9WII.DashboardPage_active__vhiet {
  color: white;
  border-bottom: 2px solid #efbe84;
}

.DashboardPage_tabContent__2cedi {
  min-height: 200px;
}

/* Responsive design */
@media (max-width: 768px) {
  .DashboardPage_container__r9KeA {
    padding: 0 12px;
  }
}

.BalanceCard_container__8QaKR {
  width: 100%;
}

.BalanceCard_balanceCard__AloNn {
  background: #1a1c1f;
  border: 1px solid #3b3c3e;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.BalanceCard_cardContent__H4bzv {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 16px;
}

.BalanceCard_textSection__AnNBe {
  flex: 1 1;
  padding-right: 48px;
  z-index: 2;
}

.BalanceCard_imageSection__tphJ1 {
  position: absolute;
  top: 3%;
  right: -4%;
  z-index: 1;
}

.BalanceCard_tokenBackground__bGm3B {
  width: 128px;
  height: 128px;
  object-fit: contain;
}

.BalanceCard_title__GIvte {
  color: #929292;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.BalanceCard_notice__n8hs- {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
}

.BalanceCard_registerSection__RnVyL {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.BalanceCard_registerText__dR4gD {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
}

.BalanceCard_registerButton__TvGA\+ {
  position: relative;
  background: #EFBE84;
  color: black;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  z-index: 100;
}

.BalanceCard_registerButton__TvGA\+:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.BalanceCard_registerButton__TvGA\+:active {
  transform: translateY(0);
}

.BalanceCard_registerButton__TvGA\+:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.BalanceCard_registerButton__TvGA\+:disabled:hover {
  transform: none;
  box-shadow: none;
}

.BalanceCard_balanceSection__H8\+xV {
  display: flex;
  flex-direction: column;
}

.BalanceCard_claimableValue__SGYUG {
  color: white;
  font-size: 32px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.BalanceCard_tokenLogo__fMIiO{
  width: 32px;
  height: 32px;
}

.BalanceCard_unit__iAIBj {
  color: white;
  font-size: 1rem;
  font-weight: 600;
}

.BalanceCard_claimButton__Oh\+xW {
  position: relative;
  background: #EFBE84;
  color: black;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-end;
  white-space: nowrap;
  z-index: 100;
}

.BalanceCard_claimButton__Oh\+xW:hover:not(:disabled) {
  box-shadow: 0 4px 12px rgba(239, 190, 132, 0.4);
}

.BalanceCard_claimButton__Oh\+xW:disabled:hover {
  transform: none;
  box-shadow: none;
}

.BalanceCard_claimButton__Oh\+xW.BalanceCard_disabled__wtidt {
  opacity: 0.6;
  cursor: not-allowed;
  background: #3b3c3e;
  color: #ffffff;
}

.BalanceCard_claimButton__Oh\+xW.BalanceCard_disabled__wtidt:hover {
  transform: none;
  box-shadow: none;
}

/* Claim Info Styles */
.BalanceCard_claimInfo__jKFfg {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-top: 1px solid #3b3c3e;
    gap: 1rem;
  }
  
  .BalanceCard_claimInfoItem__jEWN8 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .BalanceCard_claimInfoLabel__HF5G3 {
    color: #929292;
    font-size: 12px;
    font-weight: 500;
  }
  
  .BalanceCard_claimInfoValue__IyEAi {
    color: white;
    font-size: 16px;
    font-weight: 600;
  }

@media (max-width: 480px) {
  .BalanceCard_imageSection__tphJ1 {
    right: -10%;
  }
}

/* Shimmer/Glow Effect Styles */
.BalanceCard_shimmerMask__1zXXr {
  position: relative;
  background: #2a2c2f;
  border-radius: 4px;
  overflow: hidden;
  display: inline-block;
}

.BalanceCard_shimmerEffect__vv8L\+ {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 30%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.1) 70%,
    transparent 100%
  );
  animation: BalanceCard_shimmer__vTzno 2s infinite;
}

@keyframes BalanceCard_shimmer__vTzno {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.BalanceCard_buttonShimmer__iAr2z {
  border-radius: 0.75rem;
}


/* Node Modal Styles */
.NodeModal_overlay__0y8J4 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.NodeModal_modal__6Jpkm {
  background: #1a1c1f;
  background-image: url(/static/media/fire.1120c96906f450ecd468.gif);
  background-size: 100% auto;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-attachment: local;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(239, 190, 132, 0.2);
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: NodeModal_modalFadeIn__OfhU0 0.3s ease-out;
}

@keyframes NodeModal_modalFadeIn__OfhU0 {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.NodeModal_header__r88rz {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #3b3c3e;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
}

.NodeModal_titleSection__5GCl5 {
  flex: 1 1;
  margin-right: 15px;
  margin-bottom: 2rem;
}

.NodeModal_title__mDWhF {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.NodeModal_subtitle__L\+p7U {
  font-size: 16px;
  color: #b0b0b0;
  margin: 0;
  line-height: 1.4;
}

.NodeModal_closeButton__7Rmhq {
  background: none;
  border: none;
  color: #b0b0b0;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.NodeModal_closeButton__7Rmhq:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

.NodeModal_saleIcon__GuSXE {
  height: 56px;
  width: auto;
  object-fit: contain;
  animation: NodeModal_saleIconGlow__YQ8EO 2s infinite alternate;
}

@keyframes NodeModal_saleIconGlow__YQ8EO {
  from {
    filter: drop-shadow(0 0 5px rgba(239, 190, 132, 0.5));
  }
  to {
    filter: drop-shadow(0 0 15px rgba(239, 190, 132, 0.8));
  }
}

.NodeModal_content__xMfUg {
  padding: 1rem;
  padding-bottom: 6rem; /* 为底部火焰动画预留空间 */
  position: relative;
  z-index: 10;
}

.NodeModal_section__TCych {
  margin-bottom: 25px;
}

.NodeModal_sectionTitle__uEJWP {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.NodeModal_benefitItem__6Taqn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  padding: 15px;
  background: rgba(239, 190, 132, 0.05);
  border-radius: 12px;
  border-left: 3px solid #efbe84;
  transition: all 0.3s ease;
}

.NodeModal_benefitIcon__syFfj {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.NodeModal_benefitText__atkyb {
  color: #e0e0e0;
  line-height: 1.5;
  font-size: 15px;
}

.NodeModal_actionSection__ep3cx {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.NodeModal_purchaseButton__TAuaN {
  background: #fff;
  color: #000;
  border: none;
  padding: 15px 40px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
}

.NodeModal_purchaseButton__TAuaN:hover {
  transform: scale(1.01);
}

.NodeModal_purchaseButton__TAuaN:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(239, 190, 132, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .NodeModal_overlay__0y8J4 {
    padding: 10px;
  }
  
  .NodeModal_modal__6Jpkm {
    max-height: 90vh;
    border-radius: 15px;
  }
  
  .NodeModal_title__mDWhF {
    font-size: 20px;
  }
  
  .NodeModal_subtitle__L\+p7U {
    font-size: 14px;
  }
  
  .NodeModal_benefitItem__6Taqn {
    padding: 12px;
    margin-bottom: 12px;
  }
  
  .NodeModal_benefitText__atkyb {
    font-size: 14px;
  }
  
  .NodeModal_purchaseButton__TAuaN {
    padding: 12px 30px;
    font-size: 14px;
    min-width: 180px;
  }
  
  .NodeModal_content__xMfUg {
    padding-bottom: 4rem; /* 移动端减少底部间距 */
  }
  
}

/* Custom Scrollbar */
.NodeModal_modal__6Jpkm::-webkit-scrollbar {
  width: 8px;
}

.NodeModal_modal__6Jpkm::-webkit-scrollbar-track {
  background: #1a1c1f;
  border-radius: 10px;
}

.NodeModal_modal__6Jpkm::-webkit-scrollbar-thumb {
  background: #efbe84;
  border-radius: 10px;
}

.NodeModal_modal__6Jpkm::-webkit-scrollbar-thumb:hover {
  background: #d4a26a;
}
.ReferrerModal_overlay__xRSkf {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

.ReferrerModal_modal__tj5sg {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #1a1c1f;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 480px;
  animation: ReferrerModal_modalSlideIn__Q5Yfa 0.3s ease-out;
  overflow: hidden;
}

@keyframes ReferrerModal_modalSlideIn__Q5Yfa {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

.ReferrerModal_title__OmwW8 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  text-align: left;
}

.ReferrerModal_closeButton__CXGNZ {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.ReferrerModal_closeButton__CXGNZ:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.ReferrerModal_closeIcon__8E8\+U {
  width: 20px;
  height: 20px;
  filter: brightness(0.6);
  transition: filter 0.2s ease;
}

.ReferrerModal_closeButton__CXGNZ:hover .ReferrerModal_closeIcon__8E8\+U {
  filter: brightness(1);
}


.ReferrerModal_infoSection__QmK22 {
  display: flex;
  flex-direction: column;
}

.ReferrerModal_description__5AivD {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  text-align: left;
}

.ReferrerModal_addressSection__-WquW {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ReferrerModal_label__QQ\+tt {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ReferrerModal_addressDisplay__msHkg {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ReferrerModal_address__2b92q {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}

.ReferrerModal_fullAddress__0rJ9R {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  word-break: break-all;
  line-height: 1.3;
}

.ReferrerModal_footer__vulJG {
  display: flex;
  justify-content: center;
}

.ReferrerModal_confirmButton__NAEvE {
  padding: 12px 32px;
  background: #efbe84;
  color: #000000;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(239, 190, 132, 0.3);
  min-width: 140px;
}

.ReferrerModal_confirmButton__NAEvE:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(239, 190, 132, 0.4);
}

.ReferrerModal_confirmButton__NAEvE:active {
  transform: translateY(0);
}

/* Responsive design */
@media (max-width: 640px) {
  .ReferrerModal_modal__tj5sg {
    width: 95%;
    margin: 20px;
  }
  
  .ReferrerModal_title__OmwW8 {
    font-size: 18px;
  }
  
  .ReferrerModal_confirmButton__NAEvE {
    width: 100%;
    min-width: auto;
  }
}
.InsufficientBalanceModal_modalOverlay__wMrWo {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.InsufficientBalanceModal_modalContent__0nqlX {
  background: #1a1c1f;
  border-radius: 16px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
  border: 1px solid #2a2d31;
  animation: InsufficientBalanceModal_modalAppear__slmnT 0.3s ease-out;
}

@keyframes InsufficientBalanceModal_modalAppear__slmnT {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.InsufficientBalanceModal_modalHeader__5FREk {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 0 24px;
}

.InsufficientBalanceModal_modalTitle__k0lXp {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.InsufficientBalanceModal_closeButton__8LxC\+ {
  background: none;
  border: none;
  color: #8b8b8b;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.InsufficientBalanceModal_closeButton__8LxC\+:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.InsufficientBalanceModal_modalBody__9z1FB {
  padding: 24px;
}

.InsufficientBalanceModal_modalText__e3Ooz {
  color: #d4d4d4;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 16px 0;
  text-align: center;
}

.InsufficientBalanceModal_bridgeIcon__T-Dtq {
  display: block;
  margin: 0 auto 24px auto;
  max-width: 80px;
  height: auto;
  opacity: 0.8;
}

.InsufficientBalanceModal_bridgeButton__zoPbf {
  width: 100%;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 12px;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.InsufficientBalanceModal_bridgeButton__zoPbf:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.InsufficientBalanceModal_bridgeButton__zoPbf:active {
  transform: translateY(0);
}

.InsufficientBalanceModal_bridgeButton__zoPbf svg {
  transition: transform 0.3s ease;
}

.InsufficientBalanceModal_bridgeButton__zoPbf:hover svg {
  transform: translateX(2px) translateY(-2px);
}

/* Mobile responsive */
@media (max-width: 480px) {
  .InsufficientBalanceModal_modalOverlay__wMrWo {
    padding: 16px;
  }
  
  .InsufficientBalanceModal_modalContent__0nqlX {
    max-width: none;
  }
  
  .InsufficientBalanceModal_modalHeader__5FREk {
    padding: 20px 20px 0 20px;
  }
  
  .InsufficientBalanceModal_modalTitle__k0lXp {
    font-size: 1.25rem;
  }
  
  .InsufficientBalanceModal_modalBody__9z1FB {
    padding: 20px;
  }
}
/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */

/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: initial;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid #007aff;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 8px;
  bottom: var(--swiper-pagination-bottom, 8px);
  top: auto;
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: 8px;
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: #000;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: 0.2;
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-theme-color);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: 8px;
  right: var(--swiper-pagination-right, 8px);
  left: auto;
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform,
        200ms top;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform,
        200ms left;
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform,
    200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: inherit;
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-theme-color);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: 4px;
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
}

.BannerSlides_container__qmaQt {
  position: relative;
}

.BannerSlides_swiper__GBkpX {
  height: 120px;
  border-radius: 16px;
  overflow: hidden;
}

.BannerSlides_swiperSlide__pNayu {
  height: 100%;
}

.BannerSlides_slide__gC82D {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Node Banner - Golden/Premium theme */
.BannerSlides_nodeBanner__AKbb\+ {
  background: 
    linear-gradient(135deg, rgba(255, 140, 0, 0.9) 0%, rgba(255, 215, 0, 0.9) 100%),
    url(/static/media/node_banner.8fc607ed4b58a10c3226.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

.BannerSlides_nodeBanner__AKbb\+:hover {
  background: 
    linear-gradient(135deg, rgba(255, 204, 0, 0.9) 0%, rgba(255, 127, 0, 0.9) 100%),
    url(/static/media/node_banner.8fc607ed4b58a10c3226.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

/* NFT Banner - Lightning/Energy theme */
.BannerSlides_nftBanner__LTVJu {
  background: 
    linear-gradient(135deg, rgba(118, 75, 162, 0.9) 0%, rgba(102, 126, 234, 0.9) 100%),
    url(/static/media/nft_banner.ef7275d3fcdef04b69ea.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

.BannerSlides_nftBanner__LTVJu:hover {
  background: 
    linear-gradient(135deg, rgba(90, 111, 216, 0.9) 0%, rgba(106, 65, 144, 0.9) 100%),
    url(/static/media/nft_banner.ef7275d3fcdef04b69ea.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Airdrop Banner - Sky/Cloud theme */
.BannerSlides_airdropBanner__I6zc1 {
  background: 
    linear-gradient(135deg, rgba(56, 178, 172, 0.9) 0%, rgba(129, 236, 236, 0.9) 100%),
    url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAlgAAADICAYAAAA0n5+2AAAACXBIWXMAAA7EAAAOxAGVKw4bAAAEtGlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSfvu78nIGlkPSdXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQnPz4KPHg6eG1wbWV0YSB4bWxuczp4PSdhZG9iZTpuczptZXRhLyc+CjxyZGY6UkRGIHhtbG5zOnJkZj0naHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyc+CgogPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9JycKICB4bWxuczpBdHRyaWI9J2h0dHA6Ly9ucy5hdHRyaWJ1dGlvbi5jb20vYWRzLzEuMC8nPgogIDxBdHRyaWI6QWRzPgogICA8cmRmOlNlcT4KICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0nUmVzb3VyY2UnPgogICAgIDxBdHRyaWI6Q3JlYXRlZD4yMDI1LTA4LTAxPC9BdHRyaWI6Q3JlYXRlZD4KICAgICA8QXR0cmliOkV4dElkPjFkODhhMDBjLTVjZGMtNGQzZS1hNDk5LTc1MzkwNDdkZDMzNzwvQXR0cmliOkV4dElkPgogICAgIDxBdHRyaWI6RmJJZD41MjUyNjU5MTQxNzk1ODA8L0F0dHJpYjpGYklkPgogICAgIDxBdHRyaWI6VG91Y2hUeXBlPjI8L0F0dHJpYjpUb3VjaFR5cGU+CiAgICA8L3JkZjpsaT4KICAgPC9yZGY6U2VxPgogIDwvQXR0cmliOkFkcz4KIDwvcmRmOkRlc2NyaXB0aW9uPgoKIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PScnCiAgeG1sbnM6ZGM9J2h0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvJz4KICA8ZGM6dGl0bGU+CiAgIDxyZGY6QWx0PgogICAgPHJkZjpsaSB4bWw6bGFuZz0neC1kZWZhdWx0Jz5haXJkcm9wX2Jhbm5lciAtIDE8L3JkZjpsaT4KICAgPC9yZGY6QWx0PgogIDwvZGM6dGl0bGU+CiA8L3JkZjpEZXNjcmlwdGlvbj4KCiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0nJwogIHhtbG5zOnBkZj0naHR0cDovL25zLmFkb2JlLmNvbS9wZGYvMS4zLyc+CiAgPHBkZjpBdXRob3I+ZHpjZGRkPC9wZGY6QXV0aG9yPgogPC9yZGY6RGVzY3JpcHRpb24+CgogPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9JycKICB4bWxuczp4bXA9J2h0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8nPgogIDx4bXA6Q3JlYXRvclRvb2w+Q2FudmEgKFJlbmRlcmVyKSBkb2M9REFHdW1XdmRGQ0kgdXNlcj1VQUVrdURkR0dlMCBicmFuZD1CQUVrdUxuZXlMayB0ZW1wbGF0ZT08L3htcDpDcmVhdG9yVG9vbD4KIDwvcmRmOkRlc2NyaXB0aW9uPgo8L3JkZjpSREY+CjwveDp4bXBtZXRhPgo8P3hwYWNrZXQgZW5kPSdyJz8+nToVmwAACjFJREFUeJzt3V2Ibeddx/H/KqeEGHtoXkBr0hDxLdH4VkSliPNUAhp6URBFyU0M1hshLZRSLxTX/7lIeuELubAVLDWtKCqCoDeNiHQtQSqCBbHQak9eapOWBo2mmMQ0qcuLk4vY9szM6fnvZ8+c+Xxgbs7ee37PkJPhe/bsvWYKAABKTfs+AADA1UZgAQAUE1gAAMUEFgBAMYEFAFBMYAEAFBNYAADFBBYAQDGBBQBQTGABABQTWAAAxQQWAEAxgQUAUExgAQAUE1gAAMUEFgBAMYEFAFBMYAEAFBNYAADFBBYAQDGBBQBQTGABABQTWAAAxQQWAEAxgQUAUExgAQAUE1gAAMUEFgBAMYEFAFBMYAEAFBNYAADFDg2sbdt+LyK+93I/aWb+eO/9pa/7VAAAp9i5I26/MzPv6b0/ftxPuG3bZyLiNVd2LACA00sIAQAUE1gAAMUEFgBAMYEFAFBMYAEAFBNYAADFBBYAQDGBBQBQTGABABQTWAAAxQQWAECxIwMrMx/bLkNE3Drg3AAAJ9a07wMAAFxtBBYAQDGBBQBQTGABABQTWAAAxQQWAECxoYG1bdsDEfHmUXuZ+cHe+x+O2gMAiIg4N3jvzmVZHlqW5Z92PdRauzdckwsA2IPRgRXLsny+9/7EgKlnIuL8gB0AgP/Hr8oBACgmsAAAigksAIBiAgsAoJjAAgAoJrAAAIoJLACAYgILAKCYwAIAKCawAACKCSwAgGICCwCgmMACACgmsAAAigksAIBiAgsAoJjAAgAoJrAAAIoJLACAYgILAKCYwAIAKCawAACKCSwAgGICCwCg2LnRg621t0fE3QN2fiQirolxX+MTvfcPD9oCAE6woc9gZeYfL8vy1MjNEVprN2Xmvfs+BwBwMgx9Bqv3/icD5+6PiPO99wcGbN3eWnv/gB0A4BTwGiwAgGICCwCgmMACACgmsAAAigksAIBiAgsAoJjAAgAoJrC4YvM8f+O2bY8f8XFh3+cEgFGG/6ocrkqviYgXp2m6/VJ32Lbt8wPPAwB75RksAIBiAgsAoJjAAgAoJrAAAIoJLACAYgILAKCYyzRQ5Y3btn30kNuvH3YSANgzgcUVW5blucx86xF324YcBgBOAIHFFVvX9cvrui77PgcAnBRegwUAUExgAQAUE1gAAMUEFgBAMYEFAFBMYAEAFDs3z/OtMTC0lmX53LquXxq1dzWa5/mWGHiJjWVZvrCu6wuj9gDgtDuXmZ+IiH8ctHdnZr51Xdd/GLR3VcrMv4+ICzHm4p23Z+Z967o+MmALAK4K5yLiuWma3jJibNu2vxixcxZk5l2995d3vbNt28O73gCAq43XYAEAFBNYAADFBBYAQDGBBQBQTGABABQTWAAAxQQWAEAxgQUAUExgAQAUE1gAAMUEFgBAMYEFAFBMYAEAFBNYAADFBBYAQDGBBQBQTGABABQTWAAAxQQWAEAxgQUAUExgAQAUE1gAAMUEFgBAMYEFAFBMYAEAFJu2bXsuIp4etPeGiHgmIl4csHU+Lgbkfw3Yem1E/Os0TT8xYCu2bXsyIl6OiG3A3E2Z+bO990d2PTTP89sy86Fd77zKp6ZpunvgHgBnxLnMvCMGPZOVmR9YluV3l2X5+K63Wmu/EBHXLcvyvl1vveKFQTuRmT8aEedG7S3L8oVBU9dFxF9n5oO7Hmqt3dha+/1d7wBwNp3rvf/bqLHMfH5Zlid7708MmPuPiHhp0NZQvfcn932GHfrioP9mz7fWBswAcBZ5DRYAQDGBBQBQTGABABQTWAAAxYa9E+0sm+f5u+LiJSqObVmWx9Z1HfYGBOBkOjg4uKG1dv/lPm5Zlj9f1/Wfd3Em4GhHBtbBwcE1rbVjxcGyLP+5ruuzV36sq0tm/kpE3BIRTx3zIXdk5l+u67rzyxUAJ1tr7YbMvCcz33vcx2Tmz2XmpwUW7M+RgdVa+8HM/Js4+mKk5zPzN9d1PfY3gbMkM3/7uBfrnOf5/oh43Y6PBJwOU0Q83Xv/0HEfkJnfs7vjAMdxnB8RThHxV9M0/fRhd5rn+R1x8UKRAABnmhe5AwAUE1gAAMUEFgBAMYEFAFBMYAEAFBNYAADFBBYAQLHj/qqcm+Z5bofdobX2HcuyfO7KjwQAcLodJ7CejohHM/Peo+64LItfy3AJrbVviojbjnnfG5dl+dJuTwQA7MqRgdV7f7T3ft+Iw1zF/r21lq21Yz9gWZbf2N1xgFNki4gf2rbt8ct4zPUR8cs7Og9wDMf9ESFXYJqm90TEe/Z9DuD06b1f6L1fu+9zAJfHi9wBAIoJLACAYgILAKCYwAIAKCawAACKeRfhKTTP87si4nWj9pZl+aN1XS+M2gN25+Dg4ObW2tsHTr7Ue39w4B6cCJ7BOoUy812ttc9GxGd2/ZGZd7XWvn3YFwfsVGvt5sx8Wwz4/hEXv4e8e9TXBieJZ7BOqWVZ/qD3/vKudzLzYNcbwHCf7b1/aMRQZr53xA6cNJ7BAgAoJrAAAIoJLACAYgILAKCYwAIAKCawAACKCSwAgGICCw4xz/Md27Y9fNjHPM937PucAJwsLjQKh3tDRNySmQ98rRsz89ci4psj4pNDT8Wh5nmeM/MdEfHFr7jp2oj4yDRN9+3hWMAZIrDgaE/33pevdUNm/tLgs3BMmfnrvff3vfrP5nn+ycz8+X2dCTg7/IgQAKCYwAIAKCawAACKCSwAgGJe5A5Hu26e59suddvIg3B8mfnOzPyZr/jjGyLi4/s4D3C2CCw43AsR8f2Z+dFD7vM/ow7D8SzL8lBmfvgSN//30MMAZ5LAgkP03j/We//WfZ+Dy7Ou67Pruj6773MAZ5fXYAEAFBNYAADFBBYAQDGBBQBQTGABABQTWAAAxQQWAECx4dfBaq29KSK+YcDOd0bEtRHRdr21B9e01g4i4ssDtm5urX1fDLiYZmvtuyPi1nme24Ct63e9cRYcHBzc8Mrfj1Fe7L1/bMTQPM8/EBGvH7EVEbEsy6fXdX1q0NyNI/4/e4XrLXImTSPHtm17ICLePGju5oh4bUQ8MWhvpB+LiL+LiG3A1u0R8UxEPD1g61viYhQ/OmArIuKxaZp+cdDWVWme57sz84MR8S8D5qaI+LZpmt44YCu2bVvi4t/H5wfM3ZaZv9V7/51dD83zfEdmvn/XO6/y4jRNPzVwD06Eof+ymKbpV0dtzfN8f0Sc770/MGpzlG3bnszMu3rvLw/Yejgz/7T3/siut+Z5vicz3zRN07t3vUWpj4wI1Xmez2Xm47veebXMvLf3/qld78zzPOx7Y+/9k733t4zag7PKa7AAAIoJLACAYgILAKCYwII9mef5ndu2PX6lH/M87/xduQBcHm+fhf15fWY+2Hv/wNf7CbZtuxCD3w0MwNE8gwUAUExgAQAU8yNCAL7KwcHB+Vd+88al/G/v/W+HHQhOGYEFwFdprd2ZmX8WEZ+4xF1+uPd+3cgzwWnyf5L72zcIDXu+AAAAAElFTkSuQmCC);
  color: white;
}

.BannerSlides_airdropBanner__I6zc1:hover {
  background: 
    linear-gradient(135deg, rgba(45, 155, 150, 0.9) 0%, rgba(104, 211, 211, 0.9) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(56, 178, 172, 0.3);
}

/* Bridge Banner - Silver gradient theme */
.BannerSlides_bridgeBanner__YOfEK {
  background: 
    linear-gradient(135deg, rgba(128, 128, 128, 0.9) 0%, rgba(192, 192, 192, 0.9) 100%),
    url(/static/media/bridge_banner.459554785c247a8ed4db.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}

.BannerSlides_bridgeBanner__YOfEK:hover {
  background: 
    linear-gradient(135deg, rgba(211, 211, 211, 0.9) 0%, rgba(169, 169, 169, 0.9) 100%),
    url(/static/media/bridge_banner.459554785c247a8ed4db.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(192, 192, 192, 0.3);
}

.BannerSlides_bannerIcon__oJCx2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
}

.BannerSlides_bannerIcon__oJCx2 img {
  width: 48px;
  height: 48px;
}

.BannerSlides_bannerContent__6JNns {
  flex: 1 1;
  min-width: 0;
}

.BannerSlides_bannerTitle__jtiJV {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px 0;
  line-height: 1.2;
  color: white;
}

.BannerSlides_bannerDescription__rsp8G {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  opacity: 0.9;
  line-height: 1.3;
  color: white;
}

.BannerSlides_bannerArrow__fUnAX {
  width: 36px;
  height: 36px;
  margin-left: 16px;
  flex-shrink: 0;
  color: white;
  transition: all 0.2s ease;
}

.BannerSlides_slide__gC82D:hover .BannerSlides_bannerArrow__fUnAX {
  transform: scale(1.1);
}

/* Slide indicators */
.BannerSlides_indicators__M-q0j {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.BannerSlides_indicator__WX7uY {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.BannerSlides_indicator__WX7uY.BannerSlides_active__LTkP0 {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.05);
}

.BannerSlides_indicator__WX7uY:hover {
  background: rgba(255, 255, 255, 0.6);
}

/* Responsive design */
@media (max-width: 768px) {
  .BannerSlides_swiper__GBkpX {
    height: 100px;
  }
  
  .BannerSlides_slide__gC82D {
    padding: 16px 20px;
  }
  
  .BannerSlides_bannerIcon__oJCx2 {
    margin-right: 12px;
  }
  
  .BannerSlides_bannerTitle__jtiJV {
    font-size: 16px;
  }
  
  .BannerSlides_bannerDescription__rsp8G {
    font-size: 13px;
  }
  
  .BannerSlides_bannerArrow__fUnAX {
    width: 24px;
    height: 24px;
    margin-left: 12px;
  }
}

@media (max-width: 480px) {
  .BannerSlides_swiper__GBkpX {
    height: 90px;
  }
  
  .BannerSlides_slide__gC82D {
    padding: 12px 16px;
  }
  
  .BannerSlides_bannerTitle__jtiJV {
    font-size: 15px;
  }
  
  .BannerSlides_bannerDescription__rsp8G {
    font-size: 12px;
  }
  
}
/* Rules Modal Styles */
.Rules_overlay__CDz\+U {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.Rules_modal__G5-p1 {
  background: #1a1c1f;
  border-radius: 20px;
  border: 1px solid #3b3c3e;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: Rules_modalFadeIn__RGE4C 0.3s ease-out;
}

@keyframes Rules_modalFadeIn__RGE4C {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.Rules_header__PCcLP {
  padding: 30px 30px 20px;
  border-bottom: 1px solid #3b3c3e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: #1a1c1f;
  border-radius: 20px 20px 0 0;
  z-index: 10;
}

.Rules_title__piExl {
  font-size: 28px;
  font-weight: bold;
  color: #ffffff;
  margin: 0;
}

.Rules_closeButton__6w7H8 {
  background: none;
  border: none;
  color: #b0b0b0;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.Rules_closeButton__6w7H8:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

.Rules_content__Xnrdq {
  padding: 0 30px 30px;
}


.Rules_sectionTitle__zFsmg {
  font-size: 20px;
  font-weight: 600;
  color: #efbe84;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.Rules_ruleItem__gucyJ {
  color: #e0e0e0;
  margin-bottom: 12px;
  padding-left: 10px;
  position: relative;
  line-height: 1.6;
  font-size: 15px;
}

.Rules_ruleItem__gucyJ:before {
  content: "•";
  color: #efbe84;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.Rules_levelItem__Puino {
  color: #e0e0e0;
  margin-bottom: 8px;
  padding: 8px 12px;
  background: rgba(239, 190, 132, 0.1);
  border-radius: 8px;
  border-left: 3px solid #efbe84;
  font-size: 14px;
}

.Rules_highlight__2GnH0 {
  color: #fff;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .Rules_overlay__CDz\+U {
    padding: 10px;
  }
  
  .Rules_modal__G5-p1 {
    max-height: 90vh;
    border-radius: 15px;
  }
  
  .Rules_header__PCcLP {
    padding: 20px 20px 15px;
    border-radius: 15px 15px 0 0;
  }
  
  .Rules_title__piExl {
    font-size: 24px;
  }
  
  .Rules_content__Xnrdq {
    padding: 0 20px 20px;
  }
  
  .Rules_sectionTitle__zFsmg {
    font-size: 18px;
  }
  
  .Rules_ruleItem__gucyJ {
    font-size: 14px;
  }
  
  .Rules_levelItem__Puino {
    font-size: 13px;
    padding: 6px 10px;
  }
}

/* Custom Scrollbar */
.Rules_modal__G5-p1::-webkit-scrollbar {
  width: 8px;
}

.Rules_modal__G5-p1::-webkit-scrollbar-track {
  background: #1a1c1f;
  border-radius: 10px;
}

.Rules_modal__G5-p1::-webkit-scrollbar-thumb {
  background: #efbe84;
  border-radius: 10px;
}

.Rules_modal__G5-p1::-webkit-scrollbar-thumb:hover {
  background: #d4a26a;
}
/* Leaderboard Component Styles */
.Leaderboard_container__uFgTD {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 2rem;
}

/* Header Section */
.Leaderboard_header__2q21R {
  margin-bottom: 1rem;
}

.Leaderboard_titleRow__yH3vG {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.Leaderboard_title__rJI2q {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin: 0;
}

.Leaderboard_subtitle__ikOIB {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.Leaderboard_userRank__Viuje {
  display: inline-block;
}

.Leaderboard_userRankText__EDqtw {
  color: white;
  font-size: 14px;
  font-weight: 500;
}

/* Countdown Banner */
.Leaderboard_countdownBanner__Stehw {
  background: #1d1d1d;
  background-image: url(/static/media/countdown.bf744d2ce5e0335adf89.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 1rem;
  padding: 0;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  overflow: hidden;
  position: relative;
}

/* BNB Background Icons */
.Leaderboard_bnbBackground__CH5jK {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.Leaderboard_bnbIcon__IAS-O {
  position: absolute;
  filter: brightness(1.2) saturate(1.3);
}

.Leaderboard_bnb1__dqmdG {
  width: 32px;
  height: 32px;
  top: 15%;
  left: 8%;
  transform: rotate(15deg);
}

.Leaderboard_bnb2__0SXYb {
  width: 40px;
  height: 40px;
  top: 60%;
  right: 10%;
  transform: rotate(-25deg);
}

.Leaderboard_bnb3__gTo\+5 {
  width: 32px;
  height: 32px;
  top: 35%;
  left: 75%;
  transform: rotate(45deg);
}

.Leaderboard_bnb4__G-abh {
  width: 48px;
  height: 48px;
  top: 80%;
  left: 15%;
  transform: rotate(-15deg);
}

.Leaderboard_progressBar__jy124 {
  position: relative;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px 12px 0 0;
  z-index: 1;
}

.Leaderboard_progressFill__ImvlE {
  height: 100%;
  background: linear-gradient(135deg, rgba(56, 178, 172, 1) 0%, rgba(129, 236, 236, 1) 100%);
  border-radius: 12px;
  border-radius: 12px 12px 0 0;
  transition: width 0.3s ease;
  box-shadow: 0 0 8px rgba(239, 190, 132, 0.5);
}

.Leaderboard_bannerHeader__ZSCYD {
  text-align: center;
  margin-bottom: 12px;
  padding: 16px 16px 0 16px;
  position: relative;
  z-index: 1;
}

.Leaderboard_titleContainer__F47Bp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: -2px;
}

.Leaderboard_dailyText__CBJ\+c {
  color: white;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: -4px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.Leaderboard_airdropText__oDrDr {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  background: linear-gradient(135deg, #efbe84 0%, #f4d03f 50%, #efbe84 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(1px 1px 0px #c89967);
  text-shadow: none;
  position: relative;
}

.Leaderboard_countdownContainer__TjDcj {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 16px 16px 16px;
  position: relative;
  z-index: 1;
}

.Leaderboard_countdownLabel__gxH\+Y {
  color: white;
  font-size: 14px;
  font-weight: 500;
}

.Leaderboard_countdownTime__rPFTi {
  display: flex;
  align-items: center;
  gap: 4px;
}

.Leaderboard_timeUnit__qU3cx {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #040404;
  border-radius: 8px;
  padding: 8px 12px;
  min-width: 50px;
}

.Leaderboard_timeValue__AfKGX {
  color: white;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.Leaderboard_timeLabel__\+TkXt {
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 500;
  margin-top: 2px;
}

.Leaderboard_timeSeparator__NG6fl {
  color: white;
  font-size: 20px;
  font-weight: 700;
  margin: 0 4px;
}

/* Leaderboard Section */
.Leaderboard_leaderboard__aUt-M {
  overflow: hidden;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

/* Podium Styles */
.Leaderboard_podium__QWjbi {
  padding: 20px;
}

.Leaderboard_podiumContainer__wtUAS {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.Leaderboard_podiumPlace__4n1dE {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.Leaderboard_podiumUser__TLgNq {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  border-radius: 12px;
  border: 2px solid transparent;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  min-width: 120px;
  position: relative;
}

.Leaderboard_firstPlace__nBmdw {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 140px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 193, 7, 0.2) 100%);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}

.Leaderboard_secondPlace__JCKPQ {
  height: 120px;
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.2) 0%, rgba(169, 169, 169, 0.2) 100%);
  border-color: rgba(192, 192, 192, 0.5);
  box-shadow: 0 6px 20px rgba(192, 192, 192, 0.2);
}

.Leaderboard_thirdPlace__E1t0h {
  height: 120px;
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.2) 0%, rgba(184, 115, 51, 0.2) 100%);
  border-color: rgba(205, 127, 50, 0.5);
  box-shadow: 0 4px 16px rgba(205, 127, 50, 0.2);
}

.Leaderboard_podiumRank__I6aCd {
  font-size: 32px;
  margin-bottom: 4px;
}

.Leaderboard_podiumAddress__-YRGv {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.Leaderboard_podiumReferrals__OiHOg {
  font-size: 18px;
  color: white;
  font-weight: 700;
  text-align: center;
  margin-top: 8px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.Leaderboard_podiumReferralsCount__cPqxe {
  font-size: 18px;
  font-weight: 700;
}

.Leaderboard_podiumReferralsUnit__25msM {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.Leaderboard_podiumYouTag__W0Rp5 {
  background: #ffd700;
  color: #000;
  padding: 2px 6px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 600;
  margin-top: 2px;
}

.Leaderboard_emptyPodium__yDn13 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
}

.Leaderboard_emptyText__2pf22 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.Leaderboard_listBody__JtDoc {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.Leaderboard_listHeader__vfI8M {
  display: grid;
  grid-template-columns: 80px 1fr 140px;
  grid-gap: 16px;
  gap: 16px;
  padding: 16px;
  background: #1A1C1F;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 400;
  color: #929292;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.Leaderboard_rankColumn__Dv3j8 {
  text-align: center;
}

.Leaderboard_addressColumn__-DJry {
  text-align: left;
}

.Leaderboard_referralsColumn__aE8Kc {
  text-align: center;
}

/* List Items */
.Leaderboard_list__DlsaP {
  max-height: none;
}

.Leaderboard_listItem__SiPLQ {
  display: grid;
  grid-template-columns: 80px 1fr 140px;
  grid-gap: 16px;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.Leaderboard_listItem__SiPLQ:hover {
  background: rgba(255, 255, 255, 0.05);
}

.Leaderboard_listItem__SiPLQ:last-child {
  border-bottom: none;
}

.Leaderboard_currentUser__kWUVK {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.Leaderboard_rank__wMDX1 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: white;
}

.Leaderboard_address__YdwtE {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  gap: 8px;
}

.Leaderboard_youTag__Qmp6W {
  background: #ffd700;
  color: #000;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
}

.Leaderboard_referrals__GBU5M {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

/* Pagination */
.Leaderboard_pagination__rYq5g {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.Leaderboard_paginationButton__z7hEu {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
}

.Leaderboard_paginationButton__z7hEu:hover:not(.Leaderboard_disabled__cYqu4) {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.Leaderboard_paginationButton__z7hEu.Leaderboard_disabled__cYqu4 {
  opacity: 0.5;
  cursor: not-allowed;
}

.Leaderboard_pageNumbers__6siTr {
  display: flex;
  gap: 4px;
}

.Leaderboard_pageButton__jcxZW {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
}

.Leaderboard_pageButton__jcxZW:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.Leaderboard_pageButton__jcxZW.Leaderboard_active__IyqV6 {
  background: #EFBE74;
  border-color: #EFBE74;
  color: #000;
}

/* Info Section */
.Leaderboard_info__UWvu0 {
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.Leaderboard_infoText__aWyIa {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
}

/* Error State */
.Leaderboard_error__SsjmS {
  text-align: center;
  padding: 40px 20px;
  color: rgba(255, 255, 255, 0.7);
}

.Leaderboard_errorIcon__LkNbH {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.Leaderboard_errorMessage__\+DF\+h {
  font-size: 16px;
  margin: 0 0 20px 0;
}

.Leaderboard_retryButton__yPtHo {
  padding: 10px 20px;
  background: #4a90e2;
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.Leaderboard_retryButton__yPtHo:hover {
  background: #357abd;
}

/* Loading Shimmer Effects */
.Leaderboard_shimmerItem__\+4Wd1 {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.Leaderboard_shimmerEffect__NdYuX {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: Leaderboard_shimmer__tps3a 2s infinite;
}

.Leaderboard_rankShimmer__dSAx9 {
  width: 40px;
  height: 20px;
  margin: 0 auto;
}

.Leaderboard_addressShimmer__7SBDH {
  width: 120px;
  height: 20px;
}

.Leaderboard_referralsShimmer__OQsa\+ {
  width: 30px;
  height: 20px;
  margin: 0 auto;
}

@keyframes Leaderboard_shimmer__tps3a {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .Leaderboard_title__rJI2q {
    font-size: 20px;
  }
  
  .Leaderboard_bannerHeader__ZSCYD {
    padding: 12px 12px 0 12px;
  }
  
  .Leaderboard_airdropText__oDrDr {
    font-size: 28px;
    filter: drop-shadow(1px 1px 0px #c89967);
  }
  
  .Leaderboard_countdownContainer__TjDcj {
    padding: 0 12px 12px 12px;
  }

  .Leaderboard_timeUnit__qU3cx {
    padding: 6px 8px;
    min-width: 40px;
  }
  
  .Leaderboard_timeValue__AfKGX {
    font-size: 16px;
  }
  
  .Leaderboard_timeLabel__\+TkXt {
    font-size: 10px;
  }
  
  .Leaderboard_timeSeparator__NG6fl {
    font-size: 16px;
  }

  /* Podium responsive */
  .Leaderboard_podium__QWjbi {
    padding: 16px;
  }

  .Leaderboard_podiumContainer__wtUAS {
    gap: 12px;
  }

  .Leaderboard_podiumUser__TLgNq {
    min-width: 100px;
    padding: 12px 8px;
  }

  .Leaderboard_firstPlace__nBmdw {
    height: 120px;
  }

  .Leaderboard_secondPlace__JCKPQ {
    height: 100px;
  }

  .Leaderboard_thirdPlace__E1t0h {
    height: 100px;
  }

  .Leaderboard_podiumRank__I6aCd {
    font-size: 24px;
  }

  .Leaderboard_podiumAddress__-YRGv {
    font-size: 11px;
  }

  .Leaderboard_podiumReferralsCount__cPqxe {
    font-size: 16px;
  }

  .Leaderboard_listHeader__vfI8M,
  .Leaderboard_listItem__SiPLQ {
    grid-template-columns: 60px 1fr 100px;
    gap: 12px;
  }
  
  .Leaderboard_rank__wMDX1 {
    font-size: 16px;
  }
  
  .Leaderboard_address__YdwtE {
    font-size: 12px;
  }
  
  .Leaderboard_referrals__GBU5M {
    font-size: 14px;
  }
  
  .Leaderboard_pagination__rYq5g {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .Leaderboard_paginationButton__z7hEu {
    padding: 6px 12px;
    font-size: 12px;
  }
  
  .Leaderboard_pageButton__jcxZW {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}
.Referral_container__IRGFv {
  width: 100%;
  margin-bottom: 1.5rem;
}

.Referral_referralTitle__-ICo0 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 600;
  max-width: 600px;
}

.Referral_highlightedText__mTinI {
  color: #efbe84;
}

.Referral_referralRulesLink__cPK1W {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #efbe84;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  margin-top: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.Referral_referralRulesLink__cPK1W:hover {
  transform: translateY(-1px);
  opacity: 1;
}

.Referral_referralRulesLink__cPK1W .Referral_linkIcon__fqGsl {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.Referral_referralRulesLink__cPK1W:hover .Referral_linkIcon__fqGsl {
  transform: translate(2px, -2px);
}

.Referral_card__fKy8L {
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  margin-top: 24px;
}

.Referral_cardContent__9Yj7F {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1a1c1f;
  border: 1px solid #3b3c3e;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  gap: 1rem;
  padding: 16px;
}

.Referral_referralSection__WV-gi {
  flex: 1 1;
  z-index: 2;
}

.Referral_levelSection__XgBQC {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

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

.Referral_levelInfo__cAKDk {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.Referral_levelLabel__NMVXE {
  color: #929292;
  font-size: 12px;
  font-weight: 500;
}

.Referral_levelValue__HP5Hg {
  color: #efbe84;
  font-size: 16px;
  font-weight: 600;
}

.Referral_progressBar__6F0gP {
  width: 100%;
  height: 6px;
  background: #3b3c3e;
  border-radius: 3px;
  overflow: hidden;
}

.Referral_progressFill__yPXne {
  height: 100%;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.Referral_progressText__xISXQ {
  color: #929292;
  font-size: 11px;
  font-weight: 500;
}

.Referral_nftHint__aMI1l {
  font-size: 12px;
  font-weight: 500;
  text-align: left;
  opacity: 0.9;
}

.Referral_normalText__\+9ZxK {
  color: #929292;
}

.Referral_nftText__IaBuR {
  color: #efbe84;
}

.Referral_title__cwdMk {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.Referral_notice__va01u {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
}

.Referral_summarySection__CPgZE {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  margin-bottom: 1rem;
}

.Referral_divider__REwa3 {
  width: 1px;
  height: 44px;
  background-color: #3b3c3e;
}

.Referral_summaryItem__fzOkt {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.Referral_summaryLabel__bJKku {
  color: #929292;
  font-size: 12px;
  font-weight: 500;
}

.Referral_tokenLogo__5dp1F{
  width: 20px;
  height: 20px;
}

.Referral_summaryValue__nh5Gi {
  color: white;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.Referral_inviteSection__UTQt4 {
  margin-top: 1rem;
}

.Referral_linkTitle__V0uLi {
  color: #929292;
  font-size: 12px;
  font-weight: 500;
}

.Referral_linkContainer__XGEAu {
  display: flex;
  gap: 0.5rem;
  background: #2a2c2f;
  border: 1px solid #3b3c3e;
  margin-top: 0.25rem;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.Referral_linkContainer__XGEAu:hover {
  background: #3b3c3e;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.Referral_linkContainer__XGEAu:active {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.Referral_linkContainer__XGEAu.Referral_copied__kj9UG .Referral_copyIndicator__2b8sf {
  animation: Referral_copySuccess__VQ6lG 0.3s ease;
}

@keyframes Referral_copySuccess__VQ6lG {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.Referral_linkInput__jlNnp {
  flex: 1 1;
  background: transparent;
  border: none;
  padding: 0.75rem;
  color: white;
  font-size: 0.9rem;
  cursor: pointer;
  pointer-events: none; 
}

.Referral_copyIndicator__2b8sf {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  min-width: 50px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.Referral_copyIcon__P5-k\+ {
  width: 16px;
  height: 16px;
}

.Referral_checkIcon__izPdN {
  width: 16px;
  height: 16px;
}

.Referral_invitedSection__n\+FoJ {
  margin-top: 16px;
}

.Referral_sectionHeader__qEpNN {
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.Referral_sectionTitle__VSP8B {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}

.Referral_loading__tP6hN {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  min-height: 100px;
}

.Referral_spinner__5w9wW {
  width: 16px;
  height: 16px;
  border: 2px solid #3b3c3e;
  border-top: 2px solid #667eea;
  border-radius: 50%;
  animation: Referral_spin__O2mjK 1s linear infinite;
}

@keyframes Referral_spin__O2mjK {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.Referral_invitedList__YgJ-e {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  border: 1px solid #3b3c3e;
  background: #1a1c1f;
}

.Referral_listHeader__MvBHn {
  display: grid;
  grid-template-columns: 3fr 1fr;
  padding: 16px;
  background: transparent;
  border-bottom: 1px solid #3b3c3e;
}

.Referral_headerUser__96FAU,
.Referral_headerReward__ZbFBv {
  color: #929292;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.Referral_invitedItem__9AUve {
  display: grid;
  grid-template-columns: 3fr 1fr;
  padding: 16px;  
}

.Referral_invitedAddress__MGFDd {
  color: white;
  font-size: 0.9rem;
}

.Referral_invitedReward__QPYRs {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
}

.Referral_emptyState__yRHlb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
}

.Referral_emptyIcon__M6RSO {
  font-size: 3rem;
  opacity: 0.5;
}

.Referral_emptyText__75cUk {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
}

.Referral_emptyText__75cUk p {
  margin: 0.25rem 0;
}

/* Responsive design */
@media (max-width: 768px) {
  .Referral_referralTitle__-ICo0 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .Referral_imageSection__a2JuC {
    right: -10%;
  }
  
  .Referral_referralIcon__uNRdN {
    width: 80px;
    height: 80px;
    font-size: 40px;
  }
}

/* Shimmer/Glow Effect Styles */
.Referral_shimmerMask__Vye1T {
  position: relative;
  background: #2a2c2f;
  border-radius: 4px;
  overflow: hidden;
  display: inline-block;
}

.Referral_shimmerEffect__AUegM {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 30%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.1) 70%,
    transparent 100%
  );
  animation: Referral_shimmer__DKq-E 2s infinite;
}

@keyframes Referral_shimmer__DKq-E {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.Referral_progressShimmer__PW\+yg {
  border-radius: 3px;
}

.Referral_linkContainer__XGEAu.Referral_disabled__Q1vep {
  cursor: not-allowed;
  opacity: 0.7;
}

.Referral_linkContainer__XGEAu.Referral_disabled__Q1vep:hover {
  background: #2a2c2f;
  box-shadow: none;
}

.Referral_disabledIcon__jkwFO {
  opacity: 0.5;
}

/* Pagination Styles */
.Referral_paginationContainer__P9\+jt {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.Referral_paginationInfo__QEMza {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
}

.Referral_paginationText__GfPIO {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

.Referral_totalItemsText__jK9Gu {
  color: #929292;
  font-size: 12px;
  font-weight: 400;
}

.Referral_paginationControls__\+Exh8 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.Referral_paginationButton__Otrs6 {
  background: #2a2c2f;
  color: #ffffff;
  border: 1px solid #3b3c3e;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.Referral_paginationButton__Otrs6:hover:not(.Referral_disabled__Q1vep) {
  background: #3b3c3e;
  border-color: #4a4c4f;
}

.Referral_paginationButton__Otrs6.Referral_disabled__Q1vep {
  opacity: 0.5;
  cursor: not-allowed;
  background: #2a2c2f;
}

.Referral_pageNumbers__vT8Ji {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 8px;
}

.Referral_pageButton__Cesa0 {
  background: #2a2c2f;
  color: #ffffff;
  border: 1px solid #3b3c3e;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 32px;
  text-align: center;
}

.Referral_pageButton__Cesa0:hover {
  background: #3b3c3e;
  border-color: #4a4c4f;
}

.Referral_pageButton__Cesa0.Referral_active__EBF0m {
  background: #efbe84;
  color: #000000;
  border-color: #efbe84;
  font-weight: 600;
}

.Referral_pageButton__Cesa0.Referral_active__EBF0m:hover {
  background: #efbe84;
  border-color: #efbe84;
}

/* Responsive pagination */
@media (max-width: 768px) {
  .Referral_paginationContainer__P9\+jt {
    padding: 12px;
  }
  
  .Referral_paginationControls__\+Exh8 {
    flex-wrap: wrap;
    gap: 6px;
  }
  
  .Referral_paginationButton__Otrs6 {
    padding: 6px 8px;
    font-size: 11px;
  }
  
  .Referral_pageButton__Cesa0 {
    padding: 4px 8px;
    font-size: 11px;
    min-width: 28px;
  }
  
  .Referral_paginationText__GfPIO {
    font-size: 13px;
  }
  
  .Referral_totalItemsText__jK9Gu {
    font-size: 11px;
  }
}

.Node_container__8QhQo {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
}

/* No Node Message */
.Node_noNodeMessage__7dqm5 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  background: #1a1c1f;
  border-radius: 1rem;
  border: 2px dashed #3b3c3e;
}

.Node_noNodeIcon__L0NPI {
  margin-bottom: 20px;
  color: #efbe84;
  opacity: 0.8;
}

.Node_noNodeMessage__7dqm5 h3 {
  margin: 0 0 12px 0;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}

.Node_noNodeMessage__7dqm5 p {
  margin: 0;
  font-size: 14px;
  color: #929292;
  max-width: 300px;
  line-height: 1.5;
}

/* Node Cards */
.Node_nodeCard__3y8bn,
.Node_earningsCard__m5P3G,
.Node_performanceCard__8zg03 {
  background: #1a1c1f;
  border-radius: 1rem;
  padding: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #3b3c3e;
  transition: all 0.3s ease;
}

.Node_nodeCard__3y8bn:hover,
.Node_earningsCard__m5P3G:hover,
.Node_performanceCard__8zg03:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
  background: #2a2c2f;
}

/* Earnings Grid */
.Node_earningsGrid__y83Tw {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 12px;
  gap: 12px;
}

/* Node Card Header */
.Node_nodeHeader__41Tjl {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.Node_nodeTitle__ghryb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.Node_nodeTitle__ghryb h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.Node_nodeType__TBlS- {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.Node_basicNode__9V2p8 {
  color: #ffffff;
}

.Node_advancedNode__0Tpvu {
  color: #ffffff;
}

.Node_defaultNode__Eh3xE {
  background: #3b3c3e;
  color: #929292;
  border: 1px solid #3b3c3e;
}

.Node_nodeStatus__kap4h {
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.Node_active__B91VW {
  color: #85EF8A;
}

.Node_inactive__rTZS1 {
  background: #3b3c3e;
  color: #929292;
  border: 1px solid #3b3c3e;
}

/* Node Details */
.Node_nodeDetails__\+1Srd {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.Node_detailItem__Z9irJ {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #3b3c3e;
}

.Node_detailItem__Z9irJ:last-child {
  border-bottom: none;
}

.Node_detailLabel__h4s4A {
  font-size: 14px;
  color: #929292;
  font-weight: 500;
}

.Node_detailValue__rKkgB {
  font-size: 14px;
  color: #ffffff;
  font-weight: 600;
}

/* Earnings Card */
.Node_earningsHeader__nTnEV {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.Node_earningsHeader__nTnEV h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.Node_earningsIcon__qLwnL {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: #ffffff;
}

.Node_earningsAmount__7q4QJ {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.Node_amount__TAnMF {
  font-size: 24px;
  font-weight: 700;
  color: #efbe84;
  line-height: 1;
}

.Node_currency__12J5W {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

/* Statistics Grid */
.Node_statsGrid__Hmz8i {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 12px;
  gap: 12px;
}

.Node_statCard__QvE42 {
  background: #1a1c1f;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #3b3c3e;
  transition: all 0.3s ease;
  position: relative;
}

.Node_statCard__QvE42:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
  background: #2a2c2f;
}

.Node_statIcon__PmWS1 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 10px;
  color: #ffffff;
  border: 1px solid #667eea;
  flex-shrink: 0;
}

.Node_statContent__vorTv {
  flex: 1 1;
  min-width: 0;
}

.Node_statValue__i\+GeT {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1.2;
}

.Node_statLabel__sExLs {
  font-size: 12px;
  color: #929292;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.Node_upgradeButton__iibbv {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #efbe84 0%, #f4d03f 100%);
  border: none;
  border-radius: 8px;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.Node_upgradeButton__iibbv:hover {
  background: linear-gradient(135deg, #f4d03f 0%, #efbe84 100%);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(239, 190, 132, 0.4);
}

/* Performance Card */
.Node_performanceCard__8zg03 h3 {
  margin: 0 0 20px 0;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.Node_metricsGrid__QWLj3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 20px;
  gap: 20px;
}

.Node_metricItem__sjZNt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.Node_metricItem__sjZNt:hover {
  background: #2a2c2f;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.Node_metricLabel__z78Wr {
  font-size: 14px;
  color: #929292;
  font-weight: 500;
}

.Node_metricValue__hgvKQ {
  font-size: 16px;
  color: #efbe84;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.Node_metricUnit__kONg0 {
  font-size: 12px;
  color: #ffffff;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .Node_container__8QhQo {
    gap: 12px;
  }
  
  .Node_nodeCard__3y8bn,
  .Node_earningsCard__m5P3G,
  .Node_performanceCard__8zg03 {
    padding: 20px;
  }
  
  .Node_nodeHeader__41Tjl {
    gap: 12px;
    align-items: flex-start;
  }

  .Node_earningsGrid__y83Tw {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .Node_statsGrid__Hmz8i {
    grid-template-columns: 1fr;
  }
  
  .Node_metricsGrid__QWLj3 {
    grid-template-columns: 1fr;
  }
  
  .Node_metricItem__sjZNt {
    gap: 8px;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .Node_nodeCard__3y8bn,
  .Node_earningsCard__m5P3G,
  .Node_performanceCard__8zg03 {
    padding: 16px;
  }
  
  .Node_statCard__QvE42 {
    padding: 16px;
  }

}

.Swap_container__VtmIf {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.Swap_bridgeLink__bBJVW {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
  max-width: 800px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.Swap_bridgeLink__bBJVW:hover {
  opacity: 0.8;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.Swap_swapCard__Demh7 {
    transition: all 0.3s ease;
    padding: 16px;
    background: #1a1c1f;
    border: 1px solid #3b3c3e;
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
  }
  
  .Swap_swapHeader__xcmud {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
  }
  
  .Swap_swapTitle__7aygu {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
  }
  
  .Swap_slippageContainer__EKkeA {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .Swap_slippageLabel__1ChRC {
    color: #b4b4b4;
    font-size: 14px;
  }
  
  /* 自定义滑点选择器 */
  .Swap_slippageSelectWrapper__AK7vs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: #1a1c1f;
    border: 1px solid #3b3c3e;
    border-radius: 6px;
    padding: 4px 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 60px;
  }
  
  .Swap_slippageSelectWrapper__AK7vs:hover {
    border-color: #efbe84;
    box-shadow: 0 2px 6px rgba(239, 190, 132, 0.2);
  }
  
  .Swap_slippageSelectWrapper__AK7vs.Swap_open__8qr5z {
    border-color: #efbe84;
    box-shadow: 0 2px 6px rgba(239, 190, 132, 0.3);
  }
  
  .Swap_slippageValue__85ikQ {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
  }
  
  .Swap_swapBody__LVxgG {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .Swap_tokenSection__-sYCe {
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px;
    transition: all 0.2s ease;
  }
  
  .Swap_tokenSection__-sYCe:hover {
    border-color: rgba(255, 255, 255, 0.15);
  }
  
  .Swap_tokenHeader__VT504 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
  }
  
  .Swap_tokenLabel__n8qS\+ {
    color: #b4b4b4;
    font-size: 14px;
    font-weight: 500;
  }
  
  .Swap_balanceContainer__qyhJh {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .Swap_tokenBalance__wbbyu {
    color: #b4b4b4;
    font-size: 12px;
  }
  
  .Swap_tokenInputContainer__TIthl {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0; /* 允许flex子元素收缩 */
  }
  
  .Swap_tokenInput__OrTqB {
    flex: 1 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    padding: 0;
    outline: none;
    min-width: 0; /* 防止输入框撑爆容器 */
  }
  
  .Swap_tokenInput__OrTqB.Swap_readOnly__mXnml {
    color: #b4b4b4;
    cursor: not-allowed;
  }
  
  .Swap_tokenInput__OrTqB::placeholder {
    color: #666666;
  }
  
  .Swap_tokenSelector__Ee4nA {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0; /* 防止tokenSelector被压缩 */
  }
  
  /* 自定义下拉菜单容器 */
  .Swap_customDropdown__Pdtkw {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: visible; /* 确保下拉菜单不被裁剪 */
  }
  
  .Swap_tokenSelectWrapper__W2SBX {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #1a1c1f;
    border: 1px solid #3b3c3e;
    border-radius: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
  }
  
  .Swap_tokenSelectWrapper__W2SBX:hover {
    border-color: #efbe84;
    box-shadow: 0 4px 12px rgba(239, 190, 132, 0.2);
  }
  
  .Swap_tokenSelectWrapper__W2SBX.Swap_open__8qr5z {
    border-color: #efbe84;
    box-shadow: 0 4px 12px rgba(239, 190, 132, 0.3);
  }
  
  .Swap_tokenLogo__Qy5ZO {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  
  .Swap_tokenSymbol__PoJVu {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
  }
  
  .Swap_dropdownArrow__flTqk {
    color: #929292;
    transition: transform 0.2s ease;
    margin-left: auto;
  }
  
  .Swap_dropdownArrow__flTqk.Swap_rotated__FW4Sb {
    transform: rotate(180deg);
  }
  
  /* 下拉菜单 */
  .Swap_dropdownMenu__rO55q {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1c1f;
    border: 1px solid #3b3c3e;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    z-index: 9999; /* 提高z-index确保在最顶层 */
    margin-top: 4px;
    overflow: hidden;
    animation: Swap_dropdownSlide__7Navf 0.2s ease-out;
  }
  
  @keyframes Swap_dropdownSlide__7Navf {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .Swap_dropdownOption__05Ey0 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #ffffff;
  }
  
  .Swap_dropdownOption__05Ey0:hover {
    background: rgba(239, 190, 132, 0.1);
  }
  
  .Swap_dropdownOption__05Ey0.Swap_selected__XUME0 {
    background: rgba(239, 190, 132, 0.2);
    color: #efbe84;
    font-weight: 600;
  }
  
  .Swap_dropdownOption__05Ey0.Swap_selected__XUME0::after {
    content: '✓';
    margin-left: auto;
    color: #efbe84;
    font-weight: bold;
  }
  
  .Swap_maxButton__Y3E3i {
    background: none;
    border: 1px solid #ffffff;
    border-radius: 12px;
    color: #ffffff;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 32px;
  }
  
  .Swap_maxButton__Y3E3i:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  }
  
  .Swap_maxButton__Y3E3i:active {
    transform: translateY(0);
  }
  
  .Swap_swapButtonContainer__6\+Wgt {
    display: flex;
    justify-content: center;
    margin: -24px 0;
    position: relative;
    z-index: 1;
  }
  
  .Swap_swapButton__WPueq {
    background: #1a1c1f;
    border: 2px solid #3b3c3e;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 16px;
  }
  
  .Swap_swapButton__WPueq:hover {
    background: #3b3c3e;
    border-color: #efbe84;
    transform: rotate(180deg);
  }
  
  .Swap_priceInfo__KzQod {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 12px 16px;
    margin: 8px 0;
  }
  
  .Swap_priceRow__qzauo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    color: #b4b4b4;
    font-size: 14px;
  }
  
  .Swap_priceRow__qzauo:last-child {
    margin-bottom: 0;
  }
  
  .Swap_priceImpact__q7jpB {
    color: #4ade80;
  }
  
  .Swap_actionButtons__uvhOU {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
  }
  
  .Swap_approveButton__yciKU,
  .Swap_swapActionButton__e\+T1x {
    background: #fff;
    border: none;
    border-radius: 12px;
    color: #000000;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
  }
  
  
  .Swap_approveButton__yciKU:hover {
    transform: translateY(-2px);
  }
  
  .Swap_swapActionButton__e\+T1x:hover {
    transform: translateY(-2px);
  }
  
  .Swap_approveButton__yciKU:disabled,
  .Swap_swapActionButton__e\+T1x:disabled {
    background: rgba(255, 255, 255, 0.1);
    color: #666666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
  }
  
  .Swap_approveButton__yciKU:active,
  .Swap_swapActionButton__e\+T1x:active {
    transform: translateY(-1px);
  }
  
  /* 响应式设计 */
  @media (max-width: 768px) {
    .Swap_swapTitle__7aygu {
      font-size: 16px;
    }
    
    .Swap_tokenInput__OrTqB {
      font-size: 16px; /* 稍小的字体 */
    }
    
    .Swap_actionButtons__uvhOU {
      margin-top: 12px;
    }
    
    .Swap_approveButton__yciKU,
    .Swap_swapActionButton__e\+T1x {
      padding: 12px 16px;
      font-size: 14px;
    }
    
    /* 移动端下拉菜单优化 */
    .Swap_tokenInputContainer__TIthl {
      gap: 8px; /* 减少间距 */
    }
    
    .Swap_tokenLogo__Qy5ZO {
      width: 18px;
      height: 18px;
    }
    
    .Swap_tokenSymbol__PoJVu {
      font-size: 12px;
    }
    
    /* 移动端滑点选择器优化 */
    .Swap_slippageSelectWrapper__AK7vs {
      padding: 6px 8px;
      min-width: 50px;
    }
    
    .Swap_slippageValue__85ikQ {
      font-size: 12px;
    }
    
    /* 确保移动端customDropdown不影响定位 */
    .Swap_customDropdown__Pdtkw {
      position: static; /* 重置定位，让dropdown menu可以相对视口定位 */
      overflow: visible;
    }
    
    /* 移动端底部弹出菜单 - 通过Portal渲染到body */
    .Swap_dropdownMenu__rO55q {
      position: fixed;
      top: auto;
      bottom: 0;
      left: 0;
      right: 0;
      width: 100vw;
      max-height: 50vh;
      margin: 0;
      border-radius: 16px 16px 0 0;
      border: none;
      border-top: 1px solid #3b3c3e;
      box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.6);
      -webkit-backdrop-filter: blur(10px);
              backdrop-filter: blur(10px);
      animation: Swap_bottomSheetSlide__B2nS- 0.3s ease-out;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      -webkit-overflow-scrolling: touch;
      touch-action: pan-y;
      z-index: 10000;
      background: #1a1c1f; /* 确保背景色 */
    }
  
    /* 桌面端保持原始样式 */
    @media (min-width: 769px) {
      .Swap_dropdownMenu__rO55q {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: auto;
        max-height: none;
        margin-top: 4px;
        border-radius: 12px;
        border: 1px solid #3b3c3e;
        animation: Swap_dropdownSlide__7Navf 0.2s ease-out;
        z-index: 9999;
      }
    }
    
    /* 移动端底部弹出菜单的顶部把手 */
    @media (max-width: 768px) {
      .Swap_dropdownMenu__rO55q::before {
        content: '';
        display: block;
        width: 40px;
        height: 4px;
        background: #3b3c3e;
        border-radius: 2px;
        margin: 12px auto 8px;
        flex-shrink: 0;
      }
    }
    
    @keyframes Swap_bottomSheetSlide__B2nS- {
      from {
        transform: translateY(100%);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }
    
    .Swap_dropdownOption__05Ey0 {
      padding: 16px 20px;
      font-size: 14px;
      border-bottom: 1px solid rgba(59, 60, 62, 0.3);
    }
    
    .Swap_dropdownOption__05Ey0:last-child {
      border-bottom: none;
    }
    
    /* 全屏遮罩层 - 移动端下拉菜单的背景遮罩 */
    .Swap_mobileOverlay__qj9zI {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 9999; /* 低于dropdown menu */
      animation: Swap_fadeIn__o49e8 0.3s ease-out;
      cursor: pointer;
    }
    
    @keyframes Swap_fadeIn__o49e8 {
      from { opacity: 0; }
      to { opacity: 1; }
    }
  }
  
  /* 极小屏幕优化 (小于480px) */
  @media (max-width: 480px) {
    .Swap_tokenInputContainer__TIthl {
      gap: 6px;
      flex-wrap: nowrap;
      overflow: visible; /* 确保下拉菜单可见 */
    }
    
    .Swap_tokenLogo__Qy5ZO {
      width: 16px;
      height: 16px;
    }
    
    .Swap_tokenSymbol__PoJVu {
      font-size: 11px;
      white-space: nowrap;
    }
    
    .Swap_tokenInput__OrTqB {
      font-size: 14px;
      min-width: 60px; /* 确保最小可用宽度 */
    }
    
    .Swap_dropdownArrow__flTqk {
      width: 12px;
      height: 12px;
    }
  }
  
.Footer_footer__3HiEO {
  border-top: 1px solid #1a1b1f;
  padding: 24px 0;
  margin-top: auto;
  width: 100%;
}

.Footer_container__9V6AF {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.Footer_content__haQej {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.Footer_left__AhAyB {
  display: flex;
  align-items: center;
}

.Footer_copyright__WgLSH {
  color: #9ca3af;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.Footer_right__3dDAv {
  display: flex;
  align-items: center;
}

.Footer_socialLinks__fCGoM {
  display: flex;
  align-items: center;
  gap: 16px;
}

.Footer_socialLink__DljUD {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-color: transparent;
  color: #9ca3af;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  border: 1px solid #2a2a2a;
}

.Footer_socialLink__DljUD:hover {
  background-color: #1a1b1f;
  color: #ffffff;
  border-color: #404040;
  transform: translateY(-1px);
}

.Footer_socialLink__DljUD:active {
  transform: translateY(0);
}

.Footer_socialLink__DljUD img {
  transition: all 0.2s ease-in-out;
  filter: brightness(0.6);
}

.Footer_socialLink__DljUD:hover img {
  filter: brightness(1);
}

/* 响应式设计 */
@media (max-width: 768px) {
  .Footer_container__9V6AF {
    padding: 0 16px;
  }
  
  .Footer_content__haQej {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  
  .Footer_left__AhAyB {
    order: 2;
  }
  
  .Footer_right__3dDAv {
    order: 1;
  }
  
  .Footer_copyright__WgLSH {
    font-size: 13px;
  }
  
  .Footer_socialLink__DljUD {
    width: 36px;
    height: 36px;
  }
  
  .Footer_socialLink__DljUD img {
    width: 18px;
    height: 18px;
  }
} 
/* NFT 组件样式 - Dashboard版本 */
.NFT_container__m26jQ {
  width: 100%;
}

.NFT_nftTitle__xjgRb {
  color: #ffffff;
  font-size: 32px;
  font-weight: 600;
  max-width: 600px;
}

.NFT_nftRulesLink__1TOnl {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #efbe84;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  margin-top: 12px;
  margin-bottom: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.NFT_nftRulesLink__1TOnl:hover {
  transform: translateY(-1px);
  opacity: 1;
}

.NFT_nftRulesLink__1TOnl .NFT_linkIcon__tNYgs {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.NFT_nftRulesLink__1TOnl:hover .NFT_linkIcon__tNYgs {
  transform: translate(2px, -2px);
}



/* NFT Header with title and toggle */
.NFT_nftHeader__ek612 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding: 0 4px;
}

.NFT_title__KIkED {
  font-size: 24px;
  font-weight: 600;
  color: white;
  margin: 0;
}

/* Toggle Switch Styles */
.NFT_toggleContainer__hFqfC {
  display: flex;
  align-items: center;
  gap: 12px;
}

.NFT_toggleLabel__9PAd9 {
  color: white;
  font-size: 16px;
  font-weight: 500;
}

.NFT_toggleSwitch__qIs2B {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.NFT_toggleSwitch__qIs2B input {
  opacity: 0;
  width: 0;
  height: 0;
}

.NFT_slider__mUpvt {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #4a4a4a;
  transition: 0.3s;
  border-radius: 26px;
}

.NFT_slider__mUpvt:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.NFT_toggleSwitch__qIs2B input:checked + .NFT_slider__mUpvt {
  background: linear-gradient(135deg, #efbe84 0%, #f4d03f 100%);
}

.NFT_toggleSwitch__qIs2B input:checked + .NFT_slider__mUpvt:before {
  transform: translateX(24px);
}



.NFT_nftContent__ClHvr {
  min-height: 200px;
}

/* NFT Collection Styles */
.NFT_nftCollection__ZGk4R {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 16px;
  gap: 16px;
}

.NFT_cardWrapper__nB6aJ{
  display: flex;
  flex-direction: column;
  align-items: space-between;
  justify-content: center;
  gap: 8px;
}

.NFT_nftCard__VsaFL {
  background: #1a1c1f;
  border: 1px solid #ddd;
  border-radius: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.NFT_nftCard__VsaFL:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* 右上角tag容器样式 */
.NFT_tagsContainer__BMxQX {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
  z-index: 10;
}

/* 倍率tag样式 */
.NFT_multiplierTag__M4R3f {
  background: #BF85EF;
  color: white;
  padding: 4px 8px;
  border-radius: 0 0 0 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  text-align: center;
}

/* 挖矿速率tag样式 */
.NFT_miningRate__mdZlX {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 4px 8px;
  border-radius: 0 0 4px 0;
  font-size: 0.75rem;
  font-weight: 400;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  text-align: center;
}

/* NFT图片容器样式 */
.NFT_nftImageContainer__8fisr {
  width: 100%;
  aspect-ratio: 270/345; /* 设置固定长宽比 */
  border-radius: 6px;
  overflow: hidden;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* 底部渐变蒙版 */
.NFT_nftImageGradient__z1VkJ {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, #040404 0%, transparent 100%);
  pointer-events: none;
  z-index: 5;
}

.NFT_nftImage__5N61u {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.NFT_nftImage__5N61u:hover {
  transform: scale(1.05);
}

.NFT_nftImagePlaceholder__wq8iZ {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #e9ecef;
  color: #6c757d;
}

.NFT_nftImagePlaceholder__wq8iZ span {
  font-size: 2.5rem;
  margin-bottom: 6px;
}

.NFT_nftImagePlaceholder__wq8iZ small {
  font-size: 0.8rem;
}

/* 图片加载状态样式 */
.NFT_imageLoading__an08w {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.NFT_imageLoaded__Kqm6\+ {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

/* 加载动画 */
.NFT_loadingSpinner__17P-C {
  width: 24px;
  height: 24px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #667eea;
  border-radius: 50%;
  margin-bottom: 8px;
  animation: NFT_spin__3PaFS 1s linear infinite;
}

/* NFT内容区域 */
.NFT_contentWrapper__iSpYR {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.NFT_cardsTitle__o9lOy {
  font-size: 24px;
  font-weight: 600;
  color: white;
  margin: 0 0 12px 0;
}

.NFT_nftInfo__tHbnq {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: space-between;
  width: 100%;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 10;
  padding: 12px;
}

.NFT_tierHeader__ojZDX {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.NFT_tierStars__cwVeg {
  display: flex;
  align-items: center;
  gap: 2px;
}

.NFT_tierStars__cwVeg .NFT_star__O7fPC {
  color: #FFD700;
  font-size: 14px;
  text-shadow: 0 0 4px rgba(255, 215, 0, 0.5);
}

.NFT_tierName__\+wi\+G {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

.NFT_tierCount__\+enYY {
  background: rgba(0, 0, 0, 0.1);
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
}

.NFT_nftIndex__gulRV {
  background: rgba(0, 0, 0, 0.1);
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #666;
}

.NFT_stakeButton__s8YUE {
  background: #fff;
  color: #000;
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.5px;
}

.NFT_stakeButton__s8YUE:hover {
  transform: scale(1.01);
}

.NFT_stakeButton__s8YUE:active {
  transform: translateY(0);
}

.NFT_stakeButton__s8YUE:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.NFT_unstakeButton__s4oZE {
  background: #fff;
  color: #000;
}

.NFT_unstakeButton__s4oZE:hover {
  transform: scale(1.01);
}

.NFT_stakingBadge__KO35T {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 0.6rem;
  font-weight: 600;
  margin-left: 8px;
}



/* NFT蒙版样式 */
.NFT_nftOverlay__uvkGd {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.NFT_overlayContent__1zHzg {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  height: 100%;
}

.NFT_stakingText__CQc-b {
  color: #ffd700;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}



/* 操作按钮样式 - 在nftContent中使用 */
.NFT_actionInfo__RBssd {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.NFT_claimBtn__WqNLF,
.NFT_composeBtn__iMeaj {
  background: #fff;
  color: #000;
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.5px;
  border-radius: 0.75rem;
}

.NFT_claimBtn__WqNLF:hover:not(:disabled) {
  transform: scale(1.01);
}

.NFT_composeBtn__iMeaj {
  background: #fff;
}

.NFT_composeBtn__iMeaj:hover:not(:disabled) {
  transform: scale(1.01);
}

.NFT_claimBtn__WqNLF:disabled,
.NFT_composeBtn__iMeaj:disabled,
.NFT_claimBtn__WqNLF.NFT_disabled__i-t7D,
.NFT_composeBtn__iMeaj.NFT_disabled__i-t7D {
  cursor: not-allowed;
  background: #666 !important;
  color: #999 !important;
  transform: none !important;
}

.NFT_claimBtn__WqNLF.NFT_disabled__i-t7D:hover,
.NFT_composeBtn__iMeaj.NFT_disabled__i-t7D:hover {
  background: #666 !important;
  transform: none !important;
}

.NFT_actionTip__NUW6m {
  color: #999;
  font-size: 0.8rem;
  text-align: center;
  line-height: 1.4;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

/* 空状态样式 */
.NFT_emptyState__xEqXN {
  text-align: center;
  padding: 60px 20px;
}

.NFT_emptyIcon__r5V2a {
  font-size: 4rem;
  margin-bottom: 16px;
}

.NFT_emptyState__xEqXN h3 {
  color: #666;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.NFT_emptyState__xEqXN p {
  color: #888;
  font-size: 0.9rem;
  margin: 0;
}

/* Loading样式 - 参考Referral组件的loading设计 */
.NFT_loading__TuZGi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  padding: 60px 20px;
}

.NFT_spinner__7135r {
  width: 16px;
  height: 16px;
  border: 2px solid #3b3c3e;
  border-top: 2px solid #667eea;
  border-radius: 50%;
  animation: NFT_spin__3PaFS 1s linear infinite;
}

@keyframes NFT_spin__3PaFS {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.NFT_totalNFTs__jVLkG {
  grid-column: 1 / -1;
  text-align: center;
  padding: 16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 8px;
  margin-top: 8px;
  font-size: 1rem;
}

.NFT_error__tuLUO {
  color: #dc3545;
  text-align: center;
  padding: 20px;
  background: #f8d7da;
  border-radius: 8px;
  border: 1px solid #f5c6cb;
}

.NFT_disconnected__dlMrM {
  text-align: center;
  padding: 40px 20px;
  background: #fff3cd;
  border-radius: 8px;
  border: 1px solid #ffeaa7;
}

.NFT_disconnected__dlMrM h3 {
  color: #856404;
  margin-bottom: 12px;
}

.NFT_disconnected__dlMrM p {
  color: #6c5700;
  font-size: 1rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .NFT_header__OM9f\+ {
    flex-direction: column;
    gap: 12px;
  }
  
  .NFT_nftCollection__ZGk4R {
    grid-template-columns: 1fr 1fr;
  }
  
  .NFT_tabButton__Un68N {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .NFT_container__m26jQ {
    padding: 0;
  }
  
  .NFT_header__OM9f\+ {
    padding: 12px 16px;
  }
  
  .NFT_header__OM9f\+ h2 {
    font-size: 1.2rem;
  }
  
  .NFT_nftTier__nhX2v {
    padding: 12px;
  }
  
  .NFT_tabButton__Un68N {
    padding: 8px 16px;
    font-size: 13px;
  }

  .NFT_emptyState__xEqXN {
    padding: 40px 16px;
  }

  .NFT_emptyIcon__r5V2a {
    font-size: 3rem;
  }
}

/* Shimmer/Glow Effect Styles */
.NFT_shimmerMask__EtCzs {
  position: relative;
  background: #2a2c2f;
  border-radius: 4px;
  overflow: hidden;
  display: inline-block;
}

.NFT_shimmerEffect__0SaFF {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 30%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.1) 70%,
    transparent 100%
  );
  animation: NFT_shimmer__KAXHe 2s infinite;
}

@keyframes NFT_shimmer__KAXHe {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
/* NFT Stats Panel */
.StatsPanel_nftStatsPanel__4YJK7 {
  margin-bottom: 16px;
}

.StatsPanel_statsCard__2ISEz {
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.StatsPanel_statsContent__kePxW {
  background: #1a1c1f;
  border: 1px solid #3b3c3e;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 16px;
}

.StatsPanel_summarySection__zmnKt {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
}

.StatsPanel_summaryHeader__q4v2- {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.StatsPanel_summaryItem__PeMYP {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1 1;
}

.StatsPanel_summaryItemRow__cBf-q {
  flex-direction: row !important;
  justify-content: space-between;
  align-items: center;
  gap: 1rem !important;
}

.StatsPanel_summaryLabel__hEaa3 {
  color: #929292;
  font-size: 12px;
  font-weight: 500;
}

.StatsPanel_summaryValue__hcM1B {
  color: white;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.StatsPanel_tokenLogo__XY0tG {
  width: 20px;
  height: 20px;
}

.StatsPanel_divider__RSFSn {
  width: 1px;
  height: 44px;
  background-color: #3b3c3e;
}

.StatsPanel_claimSection__lF2Qa {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #3b3c3e;
}

.StatsPanel_claimButton__oPMYl {
  background: linear-gradient(135deg, #efbe84 0%, #f4d03f 100%);
  color: #1a1c1f;
  border: none;
  border-radius: 0.75rem;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 80px;
}

.StatsPanel_claimButton__oPMYl:disabled {
  background: #4a4a4a;
  color: #929292;
  cursor: not-allowed;
  opacity: 0.6;
}

.StatsPanel_claimButton__oPMYl:not(:disabled):hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(239, 190, 132, 0.3);
}

/* Shimmer/Glow Effect Styles */
.StatsPanel_shimmerMask__oSKgS {
  position: relative;
  background: #2a2c2f;
  border-radius: 4px;
  overflow: hidden;
  display: inline-block;
}

.StatsPanel_shimmerEffect__1FQXZ {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 30%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.1) 70%,
    transparent 100%
  );
  animation: StatsPanel_shimmer__gfndm 2s infinite;
}

@keyframes StatsPanel_shimmer__gfndm {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* 同步指示器样式 */
.StatsPanel_syncIndicator__ILyGl {
  margin-left: 8px;
  font-size: 12px;
  animation: StatsPanel_rotate__LhrE\+ 1s linear infinite;
  display: inline-block;
  opacity: 0.7;
}

/* Odometer styles for StatsPanel */
.StatsPanel_odometerPendingRewards__dnNz8,
.StatsPanel_odometerTotalEarned__TP3Bi {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  text-align: right;
  min-width: 80px;
  display: inline-block;
}

.StatsPanel_odometerPendingRewards__dnNz8 {
  font-weight: 600;
  color: #ffffff;
}

.StatsPanel_odometerTotalEarned__TP3Bi {
  font-weight: 600;
  color: #ffffff;
}

/* Ensure odometer integrates well with token logo */
.StatsPanel_summaryValue__hcM1B .StatsPanel_odometerPendingRewards__dnNz8 {
  margin-left: 0.25rem;
}

.StatsPanel_summaryValue__hcM1B .StatsPanel_odometerTotalEarned__TP3Bi {
  margin-left: 0;
}

/* Ensure suffix spacing is preserved */
.StatsPanel_odometerTotalEarned__TP3Bi .StatsPanel_odometer-suffix__ak6DB {
  white-space: pre;
}

/* Improve odometer digit spacing */
.StatsPanel_odometerPendingRewards__dnNz8 .StatsPanel_odometer-digit__PNv21,
.StatsPanel_odometerTotalEarned__TP3Bi .StatsPanel_odometer-digit__PNv21 {
  margin-right: 1px;
}

/* Smooth transitions */
.StatsPanel_odometerPendingRewards__dnNz8 .StatsPanel_odometer-ribbon-inner__mVeax,
.StatsPanel_odometerTotalEarned__TP3Bi .StatsPanel_odometer-ribbon-inner__mVeax {
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes StatsPanel_rotate__LhrE\+ {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* 响应式设计 */
@media (max-width: 768px) {
  .StatsPanel_summaryValue__hcM1B {
    font-size: 16px;
  }
} 
.odometer.odometer-auto-theme, .odometer.odometer-theme-default {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  position: relative;
}
.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-default .odometer-digit {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  position: relative;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer, .odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  visibility: hidden;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner, .odometer.odometer-theme-default .odometer-digit .odometer-digit-inner {
  text-align: left;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon, .odometer.odometer-theme-default .odometer-digit .odometer-ribbon {
  display: block;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner, .odometer.odometer-theme-default .odometer-digit .odometer-ribbon-inner {
  display: block;
  -webkit-backface-visibility: hidden;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-value, .odometer.odometer-theme-default .odometer-digit .odometer-value {
  display: block;
  -webkit-transform: translateZ(0);
}
.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value, .odometer.odometer-theme-default .odometer-digit .odometer-value.odometer-last-value {
  position: absolute;
}
.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-up .odometer-ribbon-inner {
  transition: transform 2s;
}
.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-up.odometer-animating .odometer-ribbon-inner {
  transform: translateY(-100%);
}
.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-down .odometer-ribbon-inner {
  transform: translateY(-100%);
}
.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
  transition: transform 2s;
  transform: translateY(0);
}

.odometer.odometer-auto-theme, .odometer.odometer-theme-default {
  font-family: "Helvetica Neue", sans-serif;
  line-height: 1.1em;
}
.odometer.odometer-auto-theme .odometer-value, .odometer.odometer-theme-default .odometer-value {
  text-align: center;
}

.odometer-wrapper {
  display: inline-flex;
  align-items: center;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
}

.odometer-prefix,
.odometer-suffix {
  font-weight: inherit;
  color: inherit;
  white-space: pre;
}

.odometer {
  display: inline-block;
  vertical-align: middle;
  font-weight: inherit;
  color: inherit;
}

/* Custom odometer theme for better integration */
.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.odometer .odometer-digit {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.odometer .odometer-digit .odometer-digit-spacer {
  display: inline-block;
  vertical-align: middle;
  visibility: hidden;
}

.odometer .odometer-digit .odometer-digit-inner {
  text-align: left;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.odometer .odometer-digit .odometer-ribbon {
  display: block;
}

.odometer .odometer-digit .odometer-ribbon-inner {
  display: block;
  transition: transform 2s ease-in-out;
}

.odometer .odometer-digit .odometer-value {
  display: block;
  transform: translateZ(0);
}

.odometer .odometer-digit .odometer-value.odometer-last-value {
  position: absolute;
}

/* Animation improvements */
.odometer.odometer-animating-up .odometer-ribbon-inner {
  transition: transform 2s ease-in-out;
}

.odometer.odometer-animating-down .odometer-ribbon-inner {
  transition: transform 2s ease-in-out;
}

/* Ensure smooth rendering */
.odometer .odometer-digit,
.odometer .odometer-digit .odometer-digit-inner,
.odometer .odometer-digit .odometer-ribbon,
.odometer .odometer-digit .odometer-ribbon-inner,
.odometer .odometer-digit .odometer-value {
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Prevent layout shifts during animation */
.odometer-wrapper {
  min-width: fit-content;
}

/* Color and font inheritance */
.odometer,
.odometer .odometer-digit,
.odometer .odometer-digit .odometer-digit-inner,
.odometer .odometer-digit .odometer-ribbon,
.odometer .odometer-digit .odometer-ribbon-inner,
.odometer .odometer-digit .odometer-value {
  color: inherit !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
}


/* Vesting Card Styles */
.VestingCard_vestingCard__x5sxR {
  background: #1a1c1f;
  border: 1px solid #3b3c3e;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  margin-top: 1rem;
  margin-bottom: 16px;
}

.VestingCard_vestingCardContent__unM0q {
  padding: 16px;
}

.VestingCard_vestingTitle__PvU-c {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.VestingCard_claimableSection__PeF-d {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #3b3c3e;
}

.VestingCard_claimableStat__RL6sH {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1 1;
}

.VestingCard_vestingStats__J\+N5\+ {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1;
}

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

.VestingCard_vestingStatLabel__4SFsI {
  color: #929292;
  font-size: 12px;
  font-weight: 500;
}

.VestingCard_vestingStatValue__jVpMB {
  color: white;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.VestingCard_vestingTokenLogo__AiWvM {
  width: 16px;
  height: 16px;
}

.VestingCard_vestingClaimButton__TUmtQ {
  background: linear-gradient(135deg, #efbe84 0%, #f4d03f 100%);
  color: black;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  align-self: flex-end;
}

.VestingCard_vestingClaimButton__TUmtQ:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(239, 190, 132, 0.3);
}

.VestingCard_vestingClaimButton__TUmtQ:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: #3b3c3e;
  color: #666;
}

.VestingCard_vestingClaimButton__TUmtQ:disabled:hover {
  transform: none;
  box-shadow: none;
}

/* Shimmer/Glow Effect Styles */
.VestingCard_shimmerMask__mBtp0 {
  position: relative;
  background: #2a2c2f;
  border-radius: 4px;
  overflow: hidden;
  display: inline-block;
}

.VestingCard_shimmerEffect__X6ALE {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 30%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.1) 70%,
    transparent 100%
  );
  animation: VestingCard_shimmer__RURB3 2s infinite;
}

@keyframes VestingCard_shimmer__RURB3 {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
/* NFT Staking Rules Modal Styles */
.Rules_overlay__YS8jh {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 10px;
}

.Rules_modal__6CkyI {
  background: #1a1c1f;
  border: 1px solid #3b3c3e;
  border-radius: 1rem;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  animation: Rules_modalSlideIn__Chdzb 0.3s ease-out;
}

@keyframes Rules_modalSlideIn__Chdzb {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.Rules_header__NaSwd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #3b3c3e;
  background: #1a1c1f;
}

.Rules_headerLeft__loSoy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.Rules_title__A4\+iv {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  flex: 1 1;
}

.Rules_viewContractButton__fTsfW {
  background: white;
  border: none;
  border-radius: 0.5rem;
  color: #000000;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  text-decoration: none;
}

.Rules_viewContractButton__fTsfW:hover {
  transform: translateY(-1px);
}

.Rules_viewContractButton__fTsfW:active {
  transform: translateY(0);
}

.Rules_bscscanIcon__mtkwl {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.Rules_closeButton__URUiX {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  margin-left: 1rem;
}

.Rules_closeButton__URUiX:hover {
  background: #3b3c3e;
}

.Rules_closeButton__URUiX svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

.Rules_content__YRzuy {
  padding: 1.5rem;
  max-height: calc(90vh - 120px);
  overflow-y: auto;
  background: #1a1c1f;
}

/* Custom scrollbar */
.Rules_content__YRzuy::-webkit-scrollbar {
  width: 6px;
}

.Rules_content__YRzuy::-webkit-scrollbar-track {
  background: #2a2c2f;
  border-radius: 3px;
}

.Rules_content__YRzuy::-webkit-scrollbar-thumb {
  background: #3b3c3e;
  border-radius: 3px;
}

.Rules_content__YRzuy::-webkit-scrollbar-thumb:hover {
  background: #4a4c4f;
}

.Rules_section__6A8GL {
  margin-bottom: 2rem;
}

.Rules_section__6A8GL:last-child {
  margin-bottom: 0;
}

.Rules_sectionTitle__yH7b0 {
  color: #efbe84;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
}

.Rules_ruleItem__nWeKU {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1rem;
}

.Rules_ruleItem__nWeKU::before {
  content: '•';
  color: #efbe84;
  font-size: 16px;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.Rules_ruleItem__nWeKU:last-child {
  margin-bottom: 0;
}

.Rules_synthesisInfo__eHNlo {
  color: #ffffff;
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}


.Rules_rewardList__0YkIq {
  margin: 1rem 0;
}

.Rules_rewardItem__tb28D {
  margin-bottom: 0.5rem;
  position: relative;
}

.Rules_highlight__r8n2f {
  color: #efbe84;
  font-weight: 600;
  padding-left: 1rem;
}
.Rules_highlight__r8n2f::before {
  content: '•';
  color: #efbe84;
  font-size: 16px;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.Rules_acquisitionMethod__eDsHF {
  font-size: 14px;
  color: #ffffff;
  margin-top: 0.5rem;
}

.Rules_computingPower__Fb2B3 {
  font-size: 12px;
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 10px;
  background: #2a2c2f;
  font-weight: 400;
}

/* Responsive design */
@media (max-width: 768px) {
  .Rules_modal__6CkyI {
    max-height: 95vh;
  }
  
  .Rules_header__NaSwd {
    padding: 1rem;
    gap: 0.5rem;
  }
  
  .Rules_title__A4\+iv {
    font-size: 18px;
  }
  
  .Rules_viewContractButton__fTsfW {
    font-size: 13px;
    padding: 0.5rem 0.75rem;
  }
  
  .Rules_bscscanIcon__mtkwl {
    width: 16px;
    height: 16px;
  }
  
  .Rules_content__YRzuy {
    padding: 1rem;
    max-height: calc(95vh - 100px);
  }
  
  .Rules_sectionTitle__yH7b0 {
    font-size: 15px;
  }
  
  .Rules_ruleItem__nWeKU {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .Rules_header__NaSwd {
    padding: 0.75rem;
    gap: 0.75rem;
  }
  
  .Rules_title__A4\+iv {
    font-size: 16px;
  }
  
  .Rules_viewContractButton__fTsfW {
    font-size: 12px;
    padding: 0.4rem 0.6rem;
  }
  
  .Rules_sectionTitle__yH7b0 {
    font-size: 14px;
  }
  
  .Rules_ruleItem__nWeKU {
    font-size: 12px;
  }
  
}

/* Focus styles for accessibility */
.Rules_closeButton__URUiX:focus {
  outline: 2px solid #efbe84;
  outline-offset: 2px;
}

.Rules_viewContractButton__fTsfW:focus {
  outline: 2px solid #efbe84;
  outline-offset: 2px;
}

/* Dark theme variations */
@media (prefers-color-scheme: dark) {
  .Rules_modal__6CkyI {
    background: #1a1c1f;
    border-color: #3b3c3e;
  }
  
  .Rules_header__NaSwd {
    background: #1a1c1f;
    border-bottom-color: #3b3c3e;
  }
  
  .Rules_content__YRzuy {
    background: #1a1c1f;
  }
}
.HomePage_container__VbiWW {
  height: calc(100dvh - 80px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Background Video Styles */
.HomePage_backgroundVideo__PPfMW {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
}

.HomePage_overlay__8aiBb {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.HomePage_main__HLt-Q {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.HomePage_launchButton__aUU3j {
  background: #fff;
  color: #000;
  border: none;
  border-radius: 0.75rem;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: HomePage_fadeInUpDelayed__Wntwk 0.8s ease-out 2s forwards;
}

.HomePage_launchButton__aUU3j:hover {
  background: #efbe84;
  color: #1a1c1f;
  border: 1px solid #1a1c1f;
  cursor: pointer;
}

.HomePage_bridgeButton__BbgZy {
  background: none;
  color: #fff;
  border: none;
  border-radius: 0.75rem;
  padding: 14px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  animation: HomePage_fadeInUpDelayed__Wntwk 0.8s ease-out 2.5s forwards;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.HomePage_bridgeButton__BbgZy:hover {
  text-decoration-thickness: 2px;
}

.HomePage_bridgeButton__BbgZy svg {
  fill: #fff;
  transition: transform 0.3s ease;
} 

/* Responsive design */
@media (max-width: 768px) {
  .HomePage_main__HLt-Q {
    padding: 1rem;
  }
}

/* Animation effects */
@keyframes HomePage_fadeInUp__TnCP- {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.NodePage_container__Rou0e {
  min-height: 100vh;
  background: #040404;
  padding-bottom: 2rem;
}

.NodePage_main__7j4\+0 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.NodePage_loading__UjBPh {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
  color: #ffffff;
  font-size: 1.2rem;
}

.Hero_heroSection__E0WYy {
  text-align: center;
  padding: 60px 20px;
  color: white;
}

.Hero_heroContent__E0NmT {
  max-width: 600px;
  margin: 0 auto;
}

.Hero_heroTitle__gf0Uz {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #fff, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.Hero_heroSubtitle__nDiZF {
  font-size: 20px;
  font-weight: 300;
  opacity: 0.9;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .Hero_heroSection__E0WYy {
    padding: 40px 15px;
  }
  
  .Hero_heroTitle__gf0Uz {
    font-size: 36px;
  }
  
  .Hero_heroSubtitle__nDiZF {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .Hero_heroTitle__gf0Uz {
    font-size: 28px;
  }
  
  .Hero_heroSubtitle__nDiZF {
    font-size: 16px;
  }
}
/* Node Tiers Section */
.NodeTiers_tiersSection__CCSSH {
  margin-bottom: 3rem;
  min-height: 100dvh;
}

/* Node Cards Grid */
.NodeTiers_nodeCardsGrid__D2sbg {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3rem;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Individual Node Card */
.NodeTiers_nodeCard__0Dh\+O {
  padding: 0 8px 8px 8px;
  border-radius: 20px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Basic Node Card - Silver Gradient */
.NodeTiers_nodeCardBasic__gZ6XZ {
  background: linear-gradient(135deg, #c0c0c0 0%, #8e8e8e 100%);
  border: 2px solid #a8a8a8;
}

.NodeTiers_nodeCardBasic__gZ6XZ:hover {
  transform: translateY(-8px);
  border-color: #d4d4d4;
  box-shadow: 0 20px 40px rgba(192, 192, 192, 0.4);
}

/* Advanced Node Card - Gold Gradient */
.NodeTiers_nodeCardAdvanced__XxhfY {
  background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
  border: 2px solid #ffcd3c;
}

.NodeTiers_nodeCardAdvanced__XxhfY:hover {
  transform: translateY(-8px);
  border-color: #ffe066;
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
}

/* Node Card Header */
.NodeTiers_nodeHeader__mNJ8R {
  padding: 12px;
}

.NodeTiers_nodeType__87ZQn {
  font-size: 18px;
  font-weight: 700;
  color: #1a1c1f;
  line-height: 1;
}

.NodeTiers_nodePrice__Y3tkZ {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.NodeTiers_usdtIcon__PTvXc {
  width: 2rem;
  height: 2rem;
}

.NodeTiers_priceNumber__LWLFu {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
}

.NodeTiers_priceUnit__C9PUC {
  font-size: 1.5rem;
  font-weight: 600;
  color: #929292;
}

/* Node Content Container */
.NodeTiers_nodeContent__gtLox {
  background: #1a1c1f;
  padding: 12px;
  display: flex;
  border-radius: 1rem;
  flex-direction: column;
}

/* Benefits List */
.NodeTiers_benefitsList__HUzPU {
  margin: 0;
  padding: 1rem 0;
}

.NodeTiers_benefitItem__mSW-r {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
  font-size: 0.95rem;
}

.NodeTiers_benefitItem__mSW-r:last-child {
  margin-bottom: 0;
}

.NodeTiers_benefitItem__mSW-r svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  fill: #efbe84;
}

.NodeTiers_benefitItem__mSW-r span {
  line-height: 1.4;
}

/* Purchase Button */
.NodeTiers_purchaseButton__rNok3 {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #efbe84 0%, #f0c896 100%);
  color: #1a1c1f;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.NodeTiers_purchaseButton__rNok3:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(239, 190, 132, 0.4);
  background: linear-gradient(135deg, #f0c896 0%, #efbe84 100%);
}

.NodeTiers_purchaseButton__rNok3:disabled {
  background: #3b3c3e;
  color: #929292;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Status Badge */
.NodeTiers_statusBadge__30LFn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.NodeTiers_statusBadge__30LFn.NodeTiers_available__vGyPP {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.NodeTiers_statusBadge__30LFn.NodeTiers_soldOut__S8YJB {
  background: rgba(244, 67, 54, 0.2);
  color: #f44336;
  border: 1px solid rgba(244, 67, 54, 0.3);
}

/* 响应式设计 */
@media (max-width: 768px) {
  .NodeTiers_nodeCardsGrid__D2sbg {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 400px;
  }

  .NodeTiers_nodePrice__Y3tkZ {
    font-size: 2rem;
  }

  .NodeTiers_tiersTitle__OeFsB {
    font-size: 2rem;
  }
}
/* Hero Section Styles */
.Hero_hero__YTjjp {
  background: linear-gradient(135deg, #0a0b0d 0%, #1a1c1f 50%, #2a2c2f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 4rem;
  padding-top: 4rem;
}

.Hero_hero__YTjjp::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(239, 190, 132, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 70%, rgba(239, 190, 132, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.Hero_container__StZnp {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.Hero_content__y62hX {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 4rem;
  gap: 4rem;
  align-items: center;
}

.Hero_textContent__-GcZA {
  animation: Hero_fadeInUp__T1qDe 0.8s ease-out;
}

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

.Hero_title__OZ\+Aw {
  font-size: 4rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem 0;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, #efbe84 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.Hero_subtitle__MOMb4 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #efbe84;
  margin: 0 0 2rem 0;
  line-height: 1.3;
}

.Hero_description__fqsnN {
  font-size: 1.125rem;
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 500px;
}

.Hero_actionSection__EFwor {
  margin-top: 2rem;
}

.Hero_whitepaperButton__jT854 {
  background: none;
  color: #fff;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.Hero_whitepaperButton__jT854:hover {
  transform: translateY(-2px);
}


@keyframes Hero_float__67ffG {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.Hero_protocolBadge__O84IZ {
  position: absolute;
  top: 20%;
  right: 10%;
  background: linear-gradient(135deg, #ffffff 0%, #efbe84 100%);
  color: #1a1c1f;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(239, 190, 132, 0.3);
  animation: Hero_pulse__HmruI 2s ease-in-out infinite;
}

@keyframes Hero_pulse__HmruI {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(239, 190, 132, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(239, 190, 132, 0.5);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .Hero_container__StZnp {
    padding: 0 1rem;
  }
  
  .Hero_content__y62hX {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .Hero_title__OZ\+Aw {
    font-size: 2.5rem;
  }
  
  .Hero_subtitle__MOMb4 {
    font-size: 1.25rem;
  }
  
  .Hero_description__fqsnN {
    font-size: 1rem;
    max-width: none;
  }

}
/* What Section Styles */
.What_what__6hmtO {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.What_what__6hmtO::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(239, 190, 132, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.What_container__weB7O {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.What_header__p2xht {
  text-align: left;
  margin-bottom: 5rem;
  animation: What_fadeInUp__0L-Z7 0.8s ease-out;
}

@keyframes What_fadeInUp__0L-Z7 {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.What_title__-N4-n {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.What_description__TYi8U {
  font-size: 1.125rem;
  color: #b0b0b0;
  line-height: 1.6;
}

.What_featuresGrid__BGDpj {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-gap: 2.5rem;
  gap: 2.5rem;
  margin-top: 3rem;
}

.What_featureCard__bBbzt {
  background: linear-gradient(135deg, rgba(26, 28, 31, 0.8) 0%, rgba(42, 44, 47, 0.6) 100%);
  border: 1px solid rgba(239, 190, 132, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  overflow: hidden;
  animation: What_fadeInUp__0L-Z7 0.8s ease-out;
}

.What_featureCard__bBbzt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(239, 190, 132, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.What_featureCard__bBbzt:hover::before {
  opacity: 1;
}

.What_featureCard__bBbzt:hover {
  transform: translateY(-8px);
  border-color: rgba(239, 190, 132, 0.4);
  box-shadow: 0 20px 40px rgba(239, 190, 132, 0.1);
}

.What_featureCard__bBbzt:nth-child(2) {
  animation-delay: 0.2s;
}

.What_featureCard__bBbzt:nth-child(3) {
  animation-delay: 0.4s;
}

.What_featureIcon__haWnH {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  filter: drop-shadow(0 0 10px rgba(239, 190, 132, 0.3));
}

.What_featureContent__CZycs {
  position: relative;
  z-index: 1;
}

.What_featureTitle__\+\+skp {
  font-size: 1.5rem;
  font-weight: 600;
  color: #efbe84;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.What_featureDescription__AgpmL {
  font-size: 1.125rem;
  color: #b0b0b0;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .What_what__6hmtO {
    padding: 4rem 0;
  }
  
  .What_container__weB7O {
    padding: 0 1rem;
  }
  
  .What_header__p2xht {
    margin-bottom: 3rem;
  }
  
  .What_title__-N4-n {
    font-size: 2rem;
  }
  
  .What_featuresGrid__BGDpj {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .What_featureCard__bBbzt {
    padding: 2rem;
  }
  
  .What_featureIcon__haWnH {
    font-size: 2.5rem;
  }
  
  .What_featureTitle__\+\+skp {
    font-size: 1.25rem;
  }
  
  .What_featureDescription__AgpmL {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .What_title__-N4-n {
    font-size: 1.75rem;
  }
  
  .What_featureCard__bBbzt {
    padding: 1.5rem;
  }
}
/* Why Section Styles */
.Why_why__0Znkj {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.Why_container__4ElUx {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.Why_header__Uen\+n {
  margin-bottom: 5rem;
  animation: Why_fadeInUp__iOXtd 0.8s ease-out;
}

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

.Why_title__jO0Fe {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.Why_benefitsGrid__SNsyU {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-gap: 3rem;
  gap: 3rem;
  margin-top: 3rem;
}

.Why_benefitCard__z8FTY {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(42, 44, 47, 0.9) 0%, rgba(26, 28, 31, 0.7) 100%);
  border: 1px solid rgba(239, 190, 132, 0.15);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  position: relative;
  transition: all 0.4s ease;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  overflow: hidden;
  animation: Why_fadeInUp__iOXtd 0.8s ease-out;
}

.Why_benefitCard__z8FTY::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(239, 190, 132, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.Why_benefitCard__z8FTY::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(239, 190, 132, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  animation: Why_rotate__Deozr 8s linear infinite;
}

@keyframes Why_rotate__Deozr {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.Why_benefitCard__z8FTY:hover::before {
  opacity: 1;
}

.Why_benefitCard__z8FTY:hover::after {
  opacity: 1;
}

.Why_benefitCard__z8FTY:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(239, 190, 132, 0.3);
  box-shadow: 0 25px 50px rgba(239, 190, 132, 0.15);
}

.Why_benefitCard__z8FTY:nth-child(2) {
  animation-delay: 0.2s;
}

.Why_benefitCard__z8FTY:nth-child(3) {
  animation-delay: 0.4s;
}

.Why_benefitIcon__oeQN4 {
  font-size: 4rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  filter: drop-shadow(0 0 20px rgba(239, 190, 132, 0.4));
  animation: Why_float__6rQvH 4s ease-in-out infinite;
}

@keyframes Why_float__6rQvH {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.Why_benefitCard__z8FTY:nth-child(2) .Why_benefitIcon__oeQN4 {
  animation-delay: -1.3s;
}

.Why_benefitCard__z8FTY:nth-child(3) .Why_benefitIcon__oeQN4 {
  animation-delay: -2.6s;
}

.Why_benefitContent__cNQ-Y {
  position: relative;
  z-index: 2;
}

.Why_benefitTitle__1ZoyW {
  font-size: 1.625rem;
  font-weight: 600;
  color: #efbe84;
  margin: 0 0 1.5rem 0;
  line-height: 1.3;
}

.Why_benefitDescription__9ePvC {
  font-size: 1.125rem;
  color: #b0b0b0;
  line-height: 1.7;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .Why_why__0Znkj {
    padding: 4rem 0;
  }
  
  .Why_container__4ElUx {
    padding: 0 1rem;
  }
  
  .Why_header__Uen\+n {
    margin-bottom: 3rem;
  }
  
  .Why_title__jO0Fe {
    font-size: 2rem;
  }
  
  .Why_benefitsGrid__SNsyU {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .Why_benefitCard__z8FTY {
    padding: 2rem 1.5rem;
  }

  .Why_benefitIcon__oeQN4 {
    font-size: 3rem;
  }
  
  .Why_benefitTitle__1ZoyW {
    font-size: 1.375rem;
  }
  
  .Why_benefitDescription__9ePvC {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .Why_title__jO0Fe {
    font-size: 1.75rem;
  }
  
  .Why_benefitCard__z8FTY {
    padding: 1.5rem;
  }
   
}
/* How Section Styles */
.How_how__8a4gO {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.How_container__Xo0N8 {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.How_header__L25CO {
  text-align: center;
  margin-bottom: 5rem;
  animation: How_fadeInUp__lDgYE 0.8s ease-out;
}

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

.How_title__XNczy {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.How_timeline__liMah {
  position: relative;
}

.How_phaseCard__UHqZv {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 4rem;
  animation: How_fadeInUp__lDgYE 0.8s ease-out;
  position: relative;
}

.How_phaseCard__UHqZv:nth-child(2) {
  animation-delay: 0.2s;
}

.How_phaseCard__UHqZv:nth-child(3) {
  animation-delay: 0.4s;
}

.How_phaseCard__UHqZv:last-child {
  margin-bottom: 0;
}

.How_phaseIndicator__BZ6u\+ {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.How_phaseIcon__Lwuj6 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--phase-color), rgba(255, 255, 255, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 0 30px rgba(239, 190, 132, 0.3);
  position: relative;
  z-index: 2;
  animation: How_pulse__W\+-Oq 3s ease-in-out infinite;
}

@keyframes How_pulse__W\+-Oq {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 30px rgba(239, 190, 132, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(239, 190, 132, 0.5);
  }
}

.How_phaseCard__UHqZv:nth-child(2) .How_phaseIcon__Lwuj6 {
  animation-delay: -1s;
  box-shadow: 0 0 30px rgba(132, 197, 239, 0.3);
}

.How_phaseCard__UHqZv:nth-child(2) .How_phaseIcon__Lwuj6:hover {
  box-shadow: 0 0 40px rgba(132, 197, 239, 0.5);
}

.How_phaseCard__UHqZv:nth-child(3) .How_phaseIcon__Lwuj6 {
  animation-delay: -2s;
  box-shadow: 0 0 30px rgba(132, 239, 132, 0.3);
}

.How_phaseCard__UHqZv:nth-child(3) .How_phaseIcon__Lwuj6:hover {
  box-shadow: 0 0 40px rgba(132, 239, 132, 0.5);
}

.How_connectLine__ayGjj {
  width: 2px;
  height: 120px;
  background: linear-gradient(180deg, var(--phase-color), rgba(255, 255, 255, 0.1));
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
}

.How_connectLine__ayGjj::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--phase-color), transparent);
  animation: How_flow__3FkZU 2s ease-in-out infinite;
}

@keyframes How_flow__3FkZU {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

.How_phaseContent__2TL\+u {
  flex: 1 1;
  background: linear-gradient(135deg, rgba(26, 28, 31, 0.8) 0%, rgba(42, 44, 47, 0.6) 100%);
  border: 1px solid rgba(239, 190, 132, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.How_phaseContent__2TL\+u::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(239, 190, 132, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.How_phaseContent__2TL\+u:hover::before {
  opacity: 1;
}

.How_phaseContent__2TL\+u:hover {
  transform: translateY(-5px);
  border-color: rgba(239, 190, 132, 0.4);
  box-shadow: 0 15px 30px rgba(239, 190, 132, 0.1);
}

.How_phaseLabel__uThvE {
  display: inline-block;
  background: linear-gradient(135deg, #efbe84, #d4a26a);
  color: #1a1c1f;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.How_phaseTitle__8b3bE {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.How_phaseDescription__LLfLJ {
  font-size: 1.125rem;
  color: #b0b0b0;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .How_how__8a4gO {
    padding: 4rem 0;
  }
  
  .How_container__Xo0N8 {
    padding: 0 1rem;
  }
  
  .How_header__L25CO {
    margin-bottom: 3rem;
  }
  
  .How_title__XNczy {
    font-size: 2rem;
  }
  
  .How_phaseCard__UHqZv {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
    align-items: center;
    text-align: center;
  }
  
  .How_phaseIndicator__BZ6u\+ {
    flex-direction: row;
    gap: 1rem;
  }
  
  .How_phaseIcon__Lwuj6 {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .How_connectLine__ayGjj {
    width: 80px;
    height: 2px;
    margin-top: 0;
  }
  
  .How_connectLine__ayGjj::before {
    background: linear-gradient(90deg, transparent, var(--phase-color), transparent);
    animation: How_flowHorizontal__eNVkL 2s ease-in-out infinite;
  }
  
  @keyframes How_flowHorizontal__eNVkL {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(100%);
    }
  }
  
  .How_phaseCard__UHqZv:last-child .How_connectLine__ayGjj {
    display: none;
  }
  
  .How_phaseContent__2TL\+u {
    padding: 2rem 1.5rem;
  }
  
  .How_phaseTitle__8b3bE {
    font-size: 1.25rem;
  }
  
  .How_phaseDescription__LLfLJ {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .How_title__XNczy {
    font-size: 1.75rem;
  }
  
  .How_phaseContent__2TL\+u {
    padding: 1.5rem;
  }
  
  .How_phaseIcon__Lwuj6 {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}
/* About Page Styles */
.AboutPage_aboutPage__qyicn {
  min-height: 100vh;
  background: #040404;
  color: #ffffff;
}

/* Global styles for all sections */
.AboutPage_aboutPage__qyicn section {
  width: 100%;
}
.TermsPage_container__USpbf {
  min-height: 100vh;
  background: #040404;
  color: white;
  padding-top: 56px;
}

.TermsPage_content__4okX9 {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
  line-height: 1.6;
}

.TermsPage_header__xyEQp {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
}

.TermsPage_title__JlrOI {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: #EAB97E;
}

.TermsPage_lastUpdated__gFqzk {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.TermsPage_section__zsevp {
  margin-bottom: 2.5rem;
}

.TermsPage_sectionTitle__y1tD6 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #EAB97E;
  margin: 0 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.TermsPage_subsection__pKva2 {
  margin: 1.5rem 0;
  padding-left: 1rem;
}

.TermsPage_subsectionTitle__WhjSf {
  font-size: 1.2rem;
  font-weight: 500;
  color: #EAB97E;
  margin: 0 0 0.5rem 0;
}

.TermsPage_text__-PzAf {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1rem 0;
  line-height: 1.7;
}

.TermsPage_list__mAHPm {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.TermsPage_list__mAHPm li {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.TermsPage_riskList__ohxXj {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.TermsPage_riskList__ohxXj li {
  margin-bottom: 0.8rem;
  color: #ff6b6b;
  font-weight: 500;
}

.TermsPage_warningBox__lD6j2 {
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.TermsPage_warningTitle__T9h2H {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ff6b6b;
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.TermsPage_footer__NYbsQ {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.TermsPage_footerText__kkosI {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .TermsPage_content__4okX9 {
    padding: 1.5rem 1rem;
  }
  
  .TermsPage_title__JlrOI {
    font-size: 2rem;
  }
  
  .TermsPage_sectionTitle__y1tD6 {
    font-size: 1.3rem;
  }
  
  .TermsPage_subsectionTitle__WhjSf {
    font-size: 1.1rem;
  }
  
  .TermsPage_text__-PzAf {
    font-size: 0.95rem;
  }
  
  .TermsPage_warningBox__lD6j2 {
    padding: 1rem;
  }
  
  .TermsPage_subsection__pKva2 {
    padding-left: 0.5rem;
  }
}

@media (max-width: 480px) {
  .TermsPage_content__4okX9 {
    padding: 1rem 0.75rem;
  }
  
  .TermsPage_title__JlrOI {
    font-size: 1.75rem;
  }
  
  .TermsPage_header__xyEQp {
    margin-bottom: 2rem;
  }
  
  .TermsPage_section__zsevp {
    margin-bottom: 2rem;
  }
  
  .TermsPage_list__mAHPm, .TermsPage_riskList__ohxXj {
    padding-left: 1rem;
  }
}

/* Smooth scrolling and focus states */
.TermsPage_container__USpbf {
  scroll-behavior: smooth;
}

.TermsPage_sectionTitle__y1tD6:target {
  animation: TermsPage_highlight__jUrco 2s ease-in-out;
}

@keyframes TermsPage_highlight__jUrco {
  0% { background-color: rgba(0, 212, 255, 0.2); }
  100% { background-color: transparent; }
}

/* Print styles */
@media print {
  .TermsPage_container__USpbf {
    background: white;
    color: black;
  }
  
  .TermsPage_title__JlrOI {
    -webkit-text-fill-color: black;
    color: black;
  }
  
  .TermsPage_sectionTitle__y1tD6 {
    color: black;
  }
  
  .TermsPage_subsectionTitle__WhjSf {
    color: black;
  }
  
  .TermsPage_text__-PzAf {
    color: black;
  }
  
  .TermsPage_warningBox__lD6j2 {
    background: #f0f0f0;
    border: 1px solid #ccc;
  }
}
.Chatbot_chatbotContainer__T-Rpd {
  position: fixed;
  bottom: 24px;
  right: 16px;
  z-index: 1000;
}

/* 浮动按钮 */
.Chatbot_floatingButton__6l1-C {
  position: relative;
  width: 60px;
  height: 60px;
  background: #1a1c1f;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid #3b3c3e;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.Chatbot_floatingButton__6l1-C:hover {
  transform: translateY(-2px);
}

.Chatbot_floatingButton__6l1-C:active {
  transform: translateY(0);
}

.Chatbot_chatIcon__d-S6N {
  width: 32px;
  height: 32px;
  z-index: 2;
  transition: fill 0.3s ease;
}

.Chatbot_floatingButton__6l1-C:hover .Chatbot_chatIcon__d-S6N {
  fill: #1a1c1f;
}

.Chatbot_pulseRing__3ZuUO {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #efbe84;
  border-radius: 50%;
  animation: Chatbot_pulse__FcYR\+ 2s ease-out infinite;
}

@keyframes Chatbot_pulse__FcYR\+ {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* 聊天窗口 */
.Chatbot_chatWindow__LJ0rZ {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 380px;
  height: 500px;
  background: #fff;
  border: 1px solid #3b3c3e;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: Chatbot_slideUp__Bv47Z 0.3s ease-out;
}



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

/* 聊天头部 */
.Chatbot_chatHeader__Ue2TB {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #1a1c1f;
  border-bottom: 1px solid #e0e0e0;
  color: #fff;
  min-height: 60px;
  box-sizing: border-box;
}

.Chatbot_headerLeft__M7244 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.Chatbot_avatar__fDyjf {
  font-size: 20px;
  width: 35px;
  height: 35px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Chatbot_chatTitle__oUlJF {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.Chatbot_onlineIndicator__u1K\+t {
  width: 8px;
  height: 8px;
  background: #efbe84;
  border-radius: 50%;
  animation: Chatbot_blink__CwhQR 2s infinite;
}

@keyframes Chatbot_blink__CwhQR {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.Chatbot_headerRight__PnVu7 {
  display: flex;
  gap: 5px;
}

.Chatbot_headerButton__MvbhQ {
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.Chatbot_headerButton__MvbhQ:hover {
  background: #fff;
  color: #1a1c1f;
}

.Chatbot_chatBody__VCa31 {
  padding: 2px;
  background: #fff;
}

/* 消息容器 */
.Chatbot_messagesContainer__q-6Dt {
  flex: 1 1;
  padding: 20px;
  overflow-y: auto;
  background: #fff;
  scroll-behavior: smooth;
}

.Chatbot_messagesContainer__q-6Dt::-webkit-scrollbar {
  width: 6px;
}

.Chatbot_messagesContainer__q-6Dt::-webkit-scrollbar-thumb {
  background: #9c9c9c;
  border-radius: 3px;
}

.Chatbot_messagesContainer__q-6Dt::-webkit-scrollbar-thumb:hover {
  background: #efbe84;
}

/* 消息样式 */
.Chatbot_message__P2PX0 {
  margin-bottom: 16px;
  display: flex;
  animation: Chatbot_fadeInMessage__tvVpp 0.3s ease-out;
}

.Chatbot_message__P2PX0.Chatbot_user__lOUXH {
  justify-content: flex-end;
}

.Chatbot_message__P2PX0.Chatbot_ai__-jL34 {
  justify-content: flex-start;
}

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

.Chatbot_messageContent__4dPp3 {
  max-width: 280px;
  position: relative;
}

.Chatbot_message__P2PX0.Chatbot_user__lOUXH .Chatbot_messageContent__4dPp3 {
  background: #efbe84;
  color: #1a1c1f;
  border-radius: 18px 18px 4px 18px;
  padding: 12px 16px;
}

.Chatbot_message__P2PX0.Chatbot_ai__-jL34 .Chatbot_messageContent__4dPp3 {
  background: #fff;
  color: #000;
  border-radius: 18px 18px 18px 4px;
  padding: 12px 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.Chatbot_messageText__IfCEF {
  font-size: 14px;
  line-height: 1.4;
  word-wrap: break-word;
}

.Chatbot_messageTime__WRdrO {
  font-size: 11px;
  opacity: 0.7;
  margin-top: 4px;
  text-align: right;
}

.Chatbot_message__P2PX0.Chatbot_ai__-jL34 .Chatbot_messageTime__WRdrO {
  text-align: left;
}

.Chatbot_errorMessage__Sr3eh .Chatbot_messageContent__4dPp3 {
  background: rgba(239, 83, 80, 0.1);
  color: #ef5350;
  border: 1px solid rgba(239, 83, 80, 0.3);
}


/* 输入容器 */
.Chatbot_inputContainer__qKuNj {
  display: flex;
  align-items: flex-end;
  padding: 15px 20px;
  background: #fff;
  border-top: 1px solid #e0e0e0;
  gap: 10px;
  /* 移动设备优化 */
  position: sticky;
  bottom: 0;
}

.Chatbot_messageInput__9y7q5 {
  flex: 1 1;
  border: none;
  border-radius: 20px;
  padding: 12px 16px;
  font-size: 16px; /* 修改为16px防止iOS自动缩放 */
  font-family: inherit;
  resize: none;
  outline: none;
  min-height: 20px;
  max-height: 100px;
  overflow-y: auto;
  transition: border-color 0.2s ease;
  background: #f3f3f3;
  color: #000;
  /* 防止移动设备上的缩放和样式异常 */
  -webkit-appearance: none;
  -webkit-border-radius: 20px;
  transform: translateZ(0); /* 启用硬件加速 */
}

/* 隐藏输入框滚动条 */
.Chatbot_messageInput__9y7q5::-webkit-scrollbar {
  display: none;
}

.Chatbot_messageInput__9y7q5 {
  -ms-overflow-style: none;  /* IE和Edge */
  scrollbar-width: none;  /* Firefox */
}

.Chatbot_messageInput__9y7q5::placeholder {
  color: #929292;
}

.Chatbot_messageInput__9y7q5:focus {
  border-color: #efbe84;
}

.Chatbot_messageInput__9y7q5:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.Chatbot_sendButton__7l1GP {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(90, 111, 216, 1) 0%, rgba(106, 65, 144, 1) 100%);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.Chatbot_sendButton__7l1GP:hover:not(:disabled) {
  transform: scale(1.05);
  background: #f3f3f3;
}

.Chatbot_sendButton__7l1GP:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  background: #e0e0e0;
}

.Chatbot_sendButton__7l1GP:disabled .Chatbot_sendIcon__p\+gIX {
  color: #929292;
}

.Chatbot_sendIcon__p\+gIX {
  width: 18px;
  height: 18px;
  color: #1a1c1f;
}

/* 移除重复的媒体查询 - 已在下方的优化版本中包含 */

/* 移动设备专用样式优化 */
@media screen and (max-width: 480px) {

  .Chatbot_chatWindow__LJ0rZ {
    width: calc(100vw - 40px);
    max-width: 350px;
    right: 0;
    /* 防止内容溢出 */
    max-height: calc(100vh - 140px);
    /* 移动端键盘适配 */
  }

  .Chatbot_messagesContainer__q-6Dt {
    padding: 16px;
    /* 为键盘留出空间 */
    padding-bottom: 20px;
  }

  .Chatbot_inputContainer__qKuNj {
    padding: 12px 16px;
    /* 确保输入区域始终可见 */
    position: sticky;
    bottom: 0;
    z-index: 100;
  }
  
  /* 确保输入框在移动设备上正确显示 */
  .Chatbot_messageInput__9y7q5 {
    font-size: 16px !important; /* !important 确保覆盖其他样式 */
    line-height: 1.4;
    /* iOS 专用样式 */
    -webkit-text-size-adjust: 100%;
    appearance: none;
    /* 防止iOS Safari的输入框样式异常 */
    background-clip: padding-box;
  }

  /* 防止键盘弹出时的布局移位 */
  .Chatbot_messageInput__9y7q5:focus {
    border-color: #efbe84;
    outline: none;
    /* 防止iOS的焦点样式 */
    -webkit-tap-highlight-color: transparent;
  }

  .Chatbot_chatHeader__Ue2TB {
    padding: 12px 16px;
    /* 确保头部在键盘弹出时仍然可见 */
    position: sticky;
    top: 0;
    z-index: 101;
  }

  .Chatbot_messageContent__4dPp3 {
    max-width: 240px;
  }
}

/* 超小屏幕设备 */
@media screen and (max-width: 360px) {
  .Chatbot_chatWindow__LJ0rZ {
    width: calc(100vw - 20px);
    right: -10px;
    /* 进一步限制高度 */
    max-height: calc(100vh - 120px);
  }

  .Chatbot_messageContent__4dPp3 {
    max-width: 200px;
  }

  .Chatbot_inputContainer__qKuNj {
    padding: 10px 12px;
  }

  .Chatbot_messageInput__9y7q5 {
    padding: 10px 14px;
    font-size: 16px !important;
  }
}

/* 消息来源标签 */
.Chatbot_sourceBadge__dMwfe {
  display: inline-block;
  font-size: 8px;
  padding: 2px 6px;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  margin-left: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* 置信度指示器 */
.Chatbot_confidenceIndicator__Y3VZI {
  font-size: 9px;
  font-weight: bold;
  margin-left: 4px;
}

/* 消息底部信息 */
.Chatbot_messageFooter__oIiUD {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.Chatbot_message__P2PX0.Chatbot_user__lOUXH .Chatbot_messageFooter__oIiUD {
  justify-content: flex-end;
}

.Chatbot_message__P2PX0.Chatbot_ai__-jL34 .Chatbot_messageFooter__oIiUD {
  justify-content: flex-start;
}

/* 快捷问题样式 */
.Chatbot_quickQuestionsContainer__rcCKd {
  margin: 16px 0;
  animation: Chatbot_fadeInMessage__tvVpp 0.3s ease-out;
}

.Chatbot_quickQuestionsTitle__oUbhs {
  font-size: 13px;
  color: #000;
  font-weight: 600;
  margin-bottom: 12px;
}

.Chatbot_quickQuestionsGrid__az\+\+0 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 8px;
  gap: 8px;
}

.Chatbot_quickQuestionButton__3vgvG {
  background: #f3f3f3;
  border-radius: 8px;
  border: none;
  padding: 12px 16px;
  font-size: 14px;
  color: #000;
  cursor: pointer;
  text-align: center;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 移动设备快捷问题优化 */
@media screen and (max-width: 480px) {
  .Chatbot_quickQuestionsContainer__rcCKd {
    margin: 12px 0;
  }

  .Chatbot_quickQuestionsGrid__az\+\+0 {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .Chatbot_quickQuestionButton__3vgvG {
    padding: 10px 12px;
    font-size: 13px;
    min-height: 36px;
  }
}

/* 思考指示器（三个点动画） */
.Chatbot_typingIndicator__-A4NG {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
}

.Chatbot_typingIndicator__-A4NG span {
  width: 8px;
  height: 8px;
  background: #efbe84;
  border-radius: 50%;
  animation: Chatbot_typingDots__ehz72 1.4s infinite;
}

.Chatbot_typingIndicator__-A4NG span:nth-child(1) {
  animation-delay: 0s;
}

.Chatbot_typingIndicator__-A4NG span:nth-child(2) {
  animation-delay: 0.2s;
}

.Chatbot_typingIndicator__-A4NG span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes Chatbot_typingDots__ehz72 {
  0%, 60%, 100% {
    transform: scale(1);
    opacity: 0.4;
  }
  30% {
    transform: scale(1.2);
    opacity: 1;
  }
}

/* 打字光标样式 */
.Chatbot_typingCursor__JkLXn {
  display: inline-block;
  color: #efbe84;
  font-weight: bold;
  animation: Chatbot_blinkCursor__RGYuz 1s infinite;
  margin-left: 2px;
}

@keyframes Chatbot_blinkCursor__RGYuz {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* iOS Safari 特殊处理 */
@supports (-webkit-appearance: none) {
  @media screen and (max-width: 480px) {
    .Chatbot_messageInput__9y7q5 {
      /* iOS Safari 输入框优化 */
      -webkit-appearance: none;
      border-radius: 20px;
      font-size: 16px !important;
      /* 防止iOS的自动缩放 */
      transform: translateZ(0);
      -webkit-user-select: text;
    }

    .Chatbot_chatWindow__LJ0rZ {
      /* iOS Safari 滚动优化 */
      -webkit-overflow-scrolling: touch;
    }

    .Chatbot_messagesContainer__q-6Dt {
      /* iOS Safari 滚动优化 */
      -webkit-overflow-scrolling: touch;
    }
  }
}

