.surface_surface__F_kRg {
    padding: var(--surface-padding, var(--size-6));
    background: var(--surface-bg, var(--light-3));
    box-shadow: var(--surface-shadow-outer, var(--surface-base-shadow-outer, 0 0 0)), var(--surface-shadow-inner, var(--surface-base-shadow-inner, 0 0 0))
}

.surface_surface__F_kRg:not(.surface_shadowInner__8U_v9) {
    box-shadow: var(--surface-shadow-outer, var(--surface-base-shadow-outer, 0 0 0))
}

.surface_surface__F_kRg:not(.surface_shadowOuter__hUbZ_) {
    box-shadow: var(--surface-shadow-inner, var(--surface-base-shadow-inner, 0 0 0))
}

.surface_surface__F_kRg.surface_shadowInner__8U_v9 {
    box-shadow: 0 0 0 1px var(--light-3) inset
}

.surface_surface__F_kRg.surface_shadowOuter__hUbZ_ {
    box-shadow: 0 16px 40px rgba(0, 0, 0, .25), 0 0 0 1px rgba(0, 0, 0, .25)
}

.surface_surface__F_kRg.surface_shadowInner__8U_v9.surface_shadowOuter__hUbZ_ {
    box-shadow: 0 16px 40px rgba(0, 0, 0, .25), 0 0 0 1px rgba(0, 0, 0, .25), 0 0 0 1px var(--light-3) inset
}

.surface_surface__F_kRg.surface_borderGradient__7uH5Y {
    position: relative
}

.surface_surface__F_kRg.surface_borderGradient__7uH5Y:after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(0, 0, 0, 0);
    background: var(--gradient-1) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    border-radius: inherit;
    z-index: 0;
    pointer-events: none;
    background-size: 200% 100%;
    background-position: 0 0;
    background-repeat: no-repeat;
    animation: surface_gradient__dG9Vq 3s linear infinite
}

@keyframes surface_gradient__dG9Vq {
    0% {
        background-position: 0 0
    }

    to {
        background-position: 100% 0
    }
}

body.apple .surface_surface__F_kRg {
    position: relative
}

body.apple .surface_surface__F_kRg:after {
    animation: none !important
}

.surface_flex__1xnEh {
    display: flex;
    flex-direction: column;
    gap: var(--surface-gap, calc(var(--surface-padding, var(--size-6)) / 1.5))
}

.surface_default__KHCS9 {
    border-radius: var(--surface-radius, var(--radius-1))
}

.surface_rounded__JLPJx {
    border-radius: var(--surface-radius, var(--radius-rounded))
}

.card_cell__8R3FX {
    width: var(--card-width);
    min-width: var(--card-width);
    padding: calc(var(--main-gap)/2)
}

.card_cell__8R3FX[data-size="100"] {
    --card-width: 100%
}

.card_cell__8R3FX[data-size="50"] {
    --card-width: 50%
}

.card_cell__8R3FX[data-size="25"] {
    --card-width: 25%
}

.card_cell__8R3FX[data-size="33"] {
    --card-width: 33.3333%
}

.card_cell__8R3FX[data-size="66"] {
    --card-width: 66.6666%
}

.card_cell__8R3FX[data-size=auto] {
    --card-width: auto;
    flex: 1 1 auto
}

.card_card__zENhz {
    --surface-padding: var(--card-padding, calc(32px + 4 * (100vw - 320px) / 1080));
    width: 100%;
    min-height: 100%
}

.card_heading__Hc3sB {
    --btn-size: var(--size-3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    font-size: var(--size-3-5);
    color: var(--light-secondary);
    font-weight: 500
}

.card_heading__Hc3sB [data-icon-only] {
    --btn-size: var(--size-10)
}

.card_right__nvv5g {
    margin: -.5em 0;
    display: flex;
    align-items: center;
    gap: var(--size-1)
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (max-width: 768px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}

.surface_button {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #fc9208, #f5576c);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
}

.wallet-connect-fixed {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9998; /* ensure modal under the wallet connect button */
}

.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  max-width: 320px;
  width: 90%;
  z-index: 9999;
}

button {
  background-color: var(--color-accent);
  color: #fff;
  padding: 10px 18px;
    border-radius: inherit;
    border: solid rgba(0, 0, 0, 0);
    border-width: 0 0 1px;
    background-size: 200% 100%;
    background-position: 0 0;
    background-repeat: no-repeat;
    animation: button_gradient__hiLE9 3s linear infinite
}
