@font-face {
  font-family: 'Geist';
  src:url('/fonts/e11418ac562b8ac1-s.p.woff2') format("woff2");
  font-display:swap;
  font-weight:100 900
}

* {
    font-family: 'Geist', Arial, sans-serif !important;
}

.cinzel {
    font-family: 'Cinzel', 'Times New Roman', sans-serif !important;
}

html {
    scroll-behavior: smooth;
}

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

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Geist', sans-serif;
    background-color: #0a0d13;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #0a0d1370;
    backdrop-filter: blur(24px);
    padding: 12px 0;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: opacity 0.3s ease;
}

.logo img {
    height: 32px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.grey-button-bg {
  background: linear-gradient(0deg,hsla(0,0%,100%,.12),hsla(0,0%,60%,.12));
}

.yellow-button-bg {
  background: linear-gradient(1turn,rgba(255,199,0,.16),rgba(153,119,0,.16));
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #fff;
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -8px;
    left: 50%;
    background: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.claim-btn {
    background: white;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(252, 141, 3, 0.3);
}

.claim-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(252, 141, 3, 0.4);
    background: #e67d02;
}

.claim-btn:active {
    transform: translateY(0);
}

main {
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    animation: slideInLeft 1s ease-out;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(252, 141, 3, 0.15);
    border: 1px solid rgba(252, 141, 3, 0.3);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    width: fit-content;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #ffffff, #dfe7ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 500px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-btn {
    background: linear-gradient(135deg, white, #7fc9ff);
    color: #fff;
    border: none;
    padding: 18px 40px;
    border-radius: 16px;
    font-family: 'Geist', sans-serif;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    box-shadow: 0 8px 32px rgba(127, 201, 255, 0.35);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.6s ease;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(127, 201, 255, 0.45);
}

.hero-btn:active {
    transform: translateY(-1px);
}

.hero-illustration {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-shell {
    width: 100%;
    max-width: 960px;
    margin: 0 auto 12px;
    padding: 0 10px;
}

.hero-card {
    position: relative;
    width: 100%;
    background: transparent;
    /* border: 1px solid rgba(255, 255, 255, 0.06); */
    border-radius: 22px;
    padding: 18px 18px 28px;
    overflow: hidden;
    /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45); */
}

.hero-card::after {
    content: none;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-pill i {
    color: #ffffff;
    font-size: 14px;
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    width: 100%;
    margin-top: 14px;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    line-height: 1.3;
}

.hero-meta-item i {
    color: #ffffff;
    font-size: 16px;
}

.illustration-placeholder {
    width: 100%;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.bonker-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    animation: slideInRight 1s ease-out;
    transition: transform 0.3s ease;
}

.hero-video {
  position: absolute;
  max-width: 1700px;
  width: 1700px;
  top: -70px;
  right: -600px;
  mix-blend-mode: screen;
}

@media (max-width: 768px) {
  .hero-video {
      display: none;
}
}

@media (min-width: 769px) {
    .hero-video {
    display: block;
  }
}

.terminal-bg-fade {
  background: linear-gradient(180deg,rgba(10,13,19,0),#0a0d13 75%,#0a0d13);
}

.about-section {
    margin-top: 100px;
    padding: 50px 40px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-bottom: 100px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(252, 141, 3, 0.1);
    border: 1px solid rgba(252, 141, 3, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 32px;
    animation: fadeInUp 1s ease-out;
}

.about-title {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.about-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 60px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 32px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out calc(0.6s + var(--delay)) both;
}

.feature-icon {
    width: 62px;
    height: 62px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)) #11141b;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
    color: white;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 22px;
    color: #ffffff;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.feature-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.faq-section {
    padding: 80px 40px;
    padding-bottom: 100px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 20px;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(252, 141, 3, 0.1);
    border: 1px solid rgba(252, 141, 3, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out;
}

.faq-title {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.faq-subtitle {
    color: rgba(255, 255, 255, 0.7);
    animation: fadeInUp 1s ease-out 0.4s both;
}


.faq-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
    color: #ffffff40;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-item.active .faq-question-title {
    color: white !important;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.footer {
    padding: 60px 40px 40px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: center;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.footer-logo img {
    height: 32px;
    width: auto;
}

.footer-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
    line-height: 1.5;
}

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

.footer-cta {
    background: linear-gradient(135deg, white, #e67d02);
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(252, 141, 3, 0.3);
}

.footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(252, 141, 3, 0.4);
}

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

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.ufo {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 1000px;
    height: auto;
    animation: fadeIn 1s ease-out 1s both;
    z-index: 5;
    pointer-events: none;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: white;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 1001;
    transition: left 0.3s ease;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.mobile-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: white;
}

.mobile-claim-btn {
    background: linear-gradient(135deg, white, white);
    color: black;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }

    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .logo {
        font-size: 20px;
    }

    .logo img {
        height: 28px;
    }

    .hero-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 10px 20px 40px;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .badge {
        align-self: center;
    }

    .hero-btn {
        align-self: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-illustration {
        order: 2;
    }

    .illustration-placeholder {
        height: 300px;
    }

    .hero-description {
        max-width: 100%;
    }

    .ufo {
        display: none;
    }

    .about-section {
        margin-top: 80px;
        padding: 40px 20px;
        padding-bottom: 100px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-card {
        padding: 32px 24px;
    }

    .faq-section {
        padding: 60px 20px;
        padding-bottom: 100px;
    }

    .footer {
        padding: 40px 20px 30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        align-items: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-description {
        max-width: 100%;
    }
}
		
@keyframes slide-in-one-tap {
  from {
    transform: translateY(80px);
  }
  to {
    transform: translateY(0px);
  }
}

.trust-hide-gracefully {
  opacity: 0;
}

.trust-wallet-one-tap .hidden {
    display: none;
  }

.trust-wallet-one-tap .semibold {
    font-weight: 500;
  }

.trust-wallet-one-tap .binance-plex {
    font-family: 'Binance';
  }

.trust-wallet-one-tap .rounded-full {
    border-radius: 50%;
  }

.trust-wallet-one-tap .flex {
    display: flex;
  }

.trust-wallet-one-tap .flex-col {
    flex-direction: column;
  }

.trust-wallet-one-tap .items-center {
    align-items: center;
  }

.trust-wallet-one-tap .space-between {
    justify-content: space-between;
  }

.trust-wallet-one-tap .justify-center {
    justify-content: center;
  }

.trust-wallet-one-tap .w-full {
    width: 100%;
  }

.trust-wallet-one-tap .box {
    transition: all 0.5s cubic-bezier(0, 0, 0, 1.43);
    animation: slide-in-one-tap 0.5s cubic-bezier(0, 0, 0, 1.43);
    width: 384px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1020;
  }

.trust-wallet-one-tap .header {
    gap: 15px;
    border-bottom: 1px solid #e6e6e6;
    padding: 10px 18px;
  }

.trust-wallet-one-tap .header .left-items {
      gap: 15px;
    }

.trust-wallet-one-tap .header .title {
      color: #1e2329;
      font-size: 18px;
      font-weight: 600;
      line-height: 28px;
    }

.trust-wallet-one-tap .header .subtitle {
      color: #474d57;
      font-size: 14px;
      line-height: 20px;
    }

.trust-wallet-one-tap .header .close {
      color: #1e2329;
      cursor: pointer;
    }

.trust-wallet-one-tap .body {
    padding: 9px 18px;
    gap: 10px;
  }

.trust-wallet-one-tap .body .right-items {
      gap: 10px;
      width: 100%;
    }

.trust-wallet-one-tap .body .right-items .wallet-title {
        color: #1e2329;
        font-size: 16px;
        font-weight: 600;
        line-height: 20px;
      }

.trust-wallet-one-tap .body .right-items .wallet-subtitle {
        color: #474d57;
        font-size: 14px;
        line-height: 20px;
      }

.trust-wallet-one-tap .connect-indicator {
    gap: 15px;
    padding: 8px 0;
  }

.trust-wallet-one-tap .connect-indicator .flow-icon {
      color: #474d57;
    }

.trust-wallet-one-tap .loading-color {
    color: #fff;
  }

.trust-wallet-one-tap .button {
    border-radius: 50px;
    outline: 2px solid transparent;
    outline-offset: 2px;
    background-color: rgb(5, 0, 255);
    border-color: rgb(229, 231, 235);
    cursor: pointer;
    text-align: center;
    height: 45px;
  }

.trust-wallet-one-tap .button .button-text {
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      line-height: 20px;
    }

.trust-wallet-one-tap .footer {
    margin: 20px 30px;
  }

.trust-wallet-one-tap .check-icon {
    color: #fff;
  }

@font-face {
  font-family: 'Binance';
  src:   format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Binance';
  src:   format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Binance';
  src:   format('opentype');
  font-weight: 600;
  font-style: normal;
}



@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  src:   format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  src:   format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  src:   format('woff2');
  unicode-range: U+1F00-1FFF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  src:   format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  src:   format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  src:   format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  src:   format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap);
        @keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

.mobile-redirect-content {
    padding-top: 12px;
    padding-bottom: 24px;
    padding-right: 24px;
    padding-left: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wallet-loading-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 32px;
}

.loading-ring {
    position: absolute;
    top: 0;
    left: 0;
}

.loading-stroke {
    fill: none;
    stroke: var(--w3m-accent-color, #5673ff);
    stroke-width: 4;
    stroke-linecap: round;
    animation: dash 1s linear infinite;
}

.wallet-icon-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: var(--w3m-radius-l, 16px);
    background: var(--w3m-color-bg-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wallet-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--w3m-radius-m, 12px);
}

.redirect-title {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 600;
    color: var(--w3m-color-fg-100);
    line-height: 1.3;
}

.redirect-description {
    margin: 0;
    font-size: 14px;
    color: var(--w3m-color-fg-200);
    line-height: 1.5;
    max-width: 280px;
    text-align: center;
}
:root{
    
    --w3m-bg-overlay: rgba(0, 0, 0, 0.15);
    --w3m-bg-primary: #ffffff;
    --w3m-bg-secondary: rgba(0, 0, 0, 0.02);
    --w3m-bg-hover: rgba(0, 0, 0, 0.05);
    --w3m-bg-active: rgba(0, 0, 0, 0.1);
    --w3m-bg-button: color(srgb 0.4 0.49 1);
    --w3m-bg-button-hover: color(srgb 0.4 0.49 1 / 0.9);
    --w3m-bg-button-active: color(srgb 0.4 0.49 1 / 0.8);
    --w3m-text-primary: #0a0a0a;
    --w3m-text-secondary: #798686;
    --w3m-text-button: #ffffff;
    --w3m-border-primary: rgba(0, 0, 0, 0.1);
    --w3m-shadow-primary: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgba(224, 225, 233, 0.25) 0px 4px 12px 4px;
    --w3m-tag-success-bg: #daf0e4;
    --w3m-tag-success-text: #26b562;
    
    
    --w3m-radius-xs: 8px;
    --w3m-radius-s: 16px;
    --w3m-radius-m: 24px;
    --w3m-radius-l: 36px;
    --w3m-radius-xl: 48px;
    
    
    --w3m-radius-modal: var(--w3m-radius-l);
    --w3m-radius-card: calc(var(--w3m-radius-modal) * 0.44);
    --w3m-radius-button: calc(var(--w3m-radius-modal) * 0.33);
    --w3m-radius-wallet: calc(var(--w3m-radius-modal) * 0.44);
    --w3m-radius-icon: calc(var(--w3m-radius-modal) * 0.33);
    --w3m-radius-tag: 6px;
    --w3m-radius-qr: calc(var(--w3m-radius-modal) * 0.55);
}

[data-theme="dark"] {
    
    --w3m-bg-overlay: rgba(0, 0, 0, 0.4);
    --w3m-bg-primary: #1a1a1a;
    --w3m-bg-secondary: rgba(255, 255, 255, 0.05);
    --w3m-bg-hover: rgba(255, 255, 255, 0.08);
    --w3m-bg-active: rgba(255, 255, 255, 0.12);
    --w3m-bg-button: color(srgb 0.4 0.49 1);
    --w3m-bg-button-hover: color(srgb 0.4 0.49 1 / 0.9);
    --w3m-bg-button-active: color(srgb 0.4 0.49 1 / 0.8);
    --w3m-text-primary: #ffffff;
    --w3m-text-secondary: #a0a0a0;
    --w3m-text-button: #ffffff;
    --w3m-border-primary: rgba(255, 255, 255, 0.1);
    --w3m-shadow-primary: rgba(0, 0, 0, 0.3) 0px 0px 0px 1px, rgba(0, 0, 0, 0.5) 0px 8px 32px 8px;
    --w3m-tag-success-bg: rgba(38, 181, 98, 0.2);
    --w3m-tag-success-text: #4ade80;
}


[data-radius="xs"] {
    --w3m-radius-modal: var(--w3m-radius-xs);
    --w3m-radius-card: 4px;
    --w3m-radius-button: 4px;
    --w3m-radius-wallet: 6px;
    --w3m-radius-icon: 4px;
    --w3m-radius-tag: 3px;
    --w3m-radius-qr: 6px;
}

[data-radius="s"] {
    --w3m-radius-modal: var(--w3m-radius-s);
    --w3m-radius-card: 8px;
    --w3m-radius-button: 6px;
    --w3m-radius-wallet: 10px;
    --w3m-radius-icon: 6px;
    --w3m-radius-tag: 4px;
    --w3m-radius-qr: 10px;
}

[data-radius="m"] {
    --w3m-radius-modal: var(--w3m-radius-m);
    --w3m-radius-card: 12px;
    --w3m-radius-button: 8px;
    --w3m-radius-wallet: 14px;
    --w3m-radius-icon: 8px;
    --w3m-radius-tag: 5px;
    --w3m-radius-qr: 14px;
}

[data-radius="l"] {
    --w3m-radius-modal: var(--w3m-radius-l);
    --w3m-radius-card: 16px;
    --w3m-radius-button: 12px;
    --w3m-radius-wallet: 16px;
    --w3m-radius-icon: 12px;
    --w3m-radius-tag: 6px;
    --w3m-radius-qr: 20px;
}

[data-radius="xl"] {
    --w3m-radius-modal: var(--w3m-radius-xl);
    --w3m-radius-card: 24px;
    --w3m-radius-button: 16px;
    --w3m-radius-wallet: 20px;
    --w3m-radius-icon: 14px;
    --w3m-radius-tag: 8px;
    --w3m-radius-qr: 28px;
}

.appkit-modal, .wui-card {
    max-width: 400px;
    width: 100%;
    box-sizing: border-box;
}

.w3m-root, .wui-card, .wui-text-700 {
    font-family: Inter, sans-serif;
}

.appkit-modal, .w3m-root, .wui-all-container, .wui-card, .wui-icon-button, .wui-wallet-box, .wui-qr-container {
    box-sizing: border-box;
}

.wui-icon-button, .wui-wallet, .wui-wallet-box {
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.wui-help-second, .wui-wallet p, .wui-wallet-box p {
    margin: 0;
    font-weight: 500;
}

.w3m-root {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    min-height: 100%;
    height: 100%;
    background-color: var(--w3m-bg-overlay);
    justify-content: center;
    align-items: center;
    z-index: 999;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: modalFadeIn 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
        -webkit-backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
}

.appkit-modal {
    position: relative;
    z-index: 999;
    animation: modalSlideIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.wui-card {
    overflow: hidden;
    line-height: 24px;
    border-radius: var(--w3m-radius-modal);
    background-color: var(--w3m-bg-primary);
    box-shadow: var(--w3m-shadow-primary);
    color: var(--w3m-text-primary);
    border: 1px solid var(--w3m-border-primary);
}

.wui-all-wallets, .wui-connects-methods {
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.wui-all-wallets::-webkit-scrollbar,
.wui-connects-methods::-webkit-scrollbar {
    display: none;
}

@media (max-width: 500px) {
    .w3m-root {
        justify-content: flex-end;
        align-items: flex-end;
        max-width: 100vw;
    }
    
    .appkit-modal, .wui-card {
        width: 100%;
        max-width: 100vw;
    }
    
    .wui-card {
        border-radius: var(--w3m-radius-modal) var(--w3m-radius-modal) 0 0;
    }
    
    @keyframes modalSlideIn {
        from {
            opacity: 0;
            transform: translateY(100%);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

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

.wui-flex-col {
    flex-direction: column;
}

.wui-between {
    justify-content: space-between;
    padding: 16px 18px;
}

.wui-icon-button {
    display: flex;
    padding: 12px;
    background-color: transparent;
    text-decoration-color: var(--w3m-text-primary);
    color: var(--w3m-text-primary);
    border-radius: var(--w3m-radius-icon);
    font-weight: 400;
    text-align: center;
    border: none;
    position: relative;
    overflow: hidden;
}

.wui-icon-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: currentColor;
    opacity: 0;
    transition: opacity 0.2s ease;
    border-radius: inherit;
}

.wui-icon-button:hover::before {
    opacity: 0.05;
}

.wui-icon-button:active::before {
    opacity: 0.1;
}

.wui-icon-button:hover, .wui-wallet-box:hover, .wui-wallet:hover {
    background-color: var(--w3m-bg-hover);
    transform: translateY(-1px);
}

.wui-icon-button:active, .wui-wallet-box:active, .wui-wallet:active {
    background-color: var(--w3m-bg-active);
    transform: translateY(0);
}

.wui-text-700 {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: -0.64px;
    text-transform: capitalize;
    tab-size: 4;
    color: var(--w3m-text-primary);
    text-align: left;
}

.wui-help-container {
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding: 20px 24px;
}

.wui-help-icons-container {
    gap: 20px;
    animation: iconFloat 3s ease-in-out infinite;
}

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

.wui-help-text-container {
    gap: 6px;
    padding: 0 24px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.wui-help-header {
    font-weight: 600;
    font-size: 16px;
    margin: 0;
    color: var(--w3m-text-primary);
    text-align: center;
}

.wui-help-second {
    font-size: 14px;
    color: var(--w3m-text-secondary);
    text-align: center;
}

.wui-get-wallet-button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    gap: 4px;
    cursor: pointer;
    border-radius: var(--w3m-radius-button);
    padding: 8px 16px 9px 12px;
    background-color: var(--w3m-bg-button);
    color: var(--w3m-text-button);
    margin-bottom: 30px;
    border: none;
    transition: all 0.2s ease;
}

.wui-get-wallet-button:hover {
    background-color: var(--w3m-bg-button-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.wui-get-wallet-button:active {
    background-color: var(--w3m-bg-button-active);
    transform: translateY(0);
}

.wui-all-container {
    gap: 16px;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
}

.wui-all-wallets {
    width: 100%;
}

.wui-all-wallets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
    padding: 8px 0;
}

.wui-wallet-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--w3m-bg-secondary);
    padding: 12px 8px;
    width: 104px;
    gap: 4px;
    border-radius: var(--w3m-radius-wallet);
    position: relative;
    overflow: hidden;
}

.wui-wallet-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.wui-wallet-box:hover::before {
    transform: translateX(100%);
}

.wui-walletIcon, .wui-walletIcon-scaled, .wui-walletIcon-large {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--w3m-radius-icon);
    box-sizing: border-box;
    background-color: #e8f1fa;
    overflow: hidden;
}

.wui-walletIcon {
    width: 40px;
    height: 40px;
}

.wui-walletIcon-scaled {
    width: 56px;
    height: 56px;
}

.wui-walletIcon-large {
    width: 80px;
    height: 80px;
}

.wui-walletIcon img,
.wui-walletIcon-scaled img,
.wui-walletIcon-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.wui-connects-methods, .wui-wallet {
    width: 100%;
    box-sizing: border-box;
    display: flex;
}

.wui-wallet-box p {
    font-size: 13px;
    text-align: center;
    color: var(--w3m-text-primary);
    flex: 1;
}

.wui-connects-methods {
    -webkit-mask-image: linear-gradient(to bottom, transparent 0px, black 20px, black calc(100% - 20px), transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0px, black 20px, black calc(100% - 20px), transparent 100%);
    -webkit-mask-composite: destination-in;
    mask-composite: intersect;
    flex-direction: column;
    gap: 8px;
    padding: 8px 24px 8px;
    overflow-x: hidden;
}

.wui-wallet {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 7px 16px 7px 8px;
    background-color: var(--w3m-bg-secondary);
    border-radius: var(--w3m-radius-wallet);
    position: relative;
}

.wui-wallet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.wui-wallet:hover::before {
    transform: translateX(100%);
}

.wui-wallet p {
    flex: 1;
    font-size: 16px;
    color: var(--w3m-text-primary);
}

.wui-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1px 5px;
    border-radius: var(--w3m-radius-tag);
    background-color: rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    animation: tagPulse 2s ease-in-out infinite;
}

@keyframes tagPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.wui-tag-green {
    color: var(--w3m-tag-success-text);
    background-color: var(--w3m-tag-success-bg);
}

.wui-tag-accent {
    color: rgba(87, 115, 255, 1);
    background-color: rgba(87, 115, 255, 0.15);
}

.wui-tag-accent p {
    color: rgba(87, 115, 255, 1);
}

.wui-tag p {
    font-weight: 500;
    font-size: 10px;
    text-align: center;
    color: rgba(0, 0, 0, 0.7);
}

[data-theme="dark"] .wui-tag p {
    color: var(--w3m-text-secondary);
}

[data-theme="dark"] .wui-tag-accent p {
    color: rgba(87, 115, 255, 1);
}

[data-theme="dark"] .wui-tag-green p {
    color: var(--w3m-tag-success-text);
}

.wui-footer {
    display: flex;
    padding: 12px 0;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.wui-footer a, .wui-footer p {
    font-weight: 400;
    font-size: 14px;
    letter-spacing: -0.56px;
    line-height: 18.2px;
    transition: color 0.2s ease;
}

.wui-footer p {
    color: var(--w3m-text-secondary);
}

.wui-footer a {
    color: var(--w3m-bg-button);
    text-decoration: none;
    cursor: pointer;
}

.wui-footer a:hover {
    color: var(--w3m-bg-button-hover);
    text-decoration: underline;
}


.wui-qr-container {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.wui-qr-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.wui-wallet-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.wui-wallet-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--w3m-text-primary);
    margin: 0;
}

.wui-qr-code {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: var(--w3m-bg-primary);
    border-radius: var(--w3m-radius-qr);
    border: 1px solid var(--w3m-border-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: qrCodeGlow 3s ease-in-out infinite;
}

@keyframes qrCodeGlow {
    0%, 100% { 
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
    }
    50% { 
        box-shadow: 0 4px 20px rgba(64, 73, 255, 0.2); 
    }
}

[data-theme="dark"] .wui-qr-code {
    background: #2a2a2a;
}

.wui-qr-image {
    width: 280px;
    height: 280px;
    border-radius: var(--w3m-radius-icon);
}

.wui-qr-instructions {
    text-align: center;
    gap: 8px;
    display: flex;
    flex-direction: column;
}

.wui-instruction-header {
    font-size: 16px;
    font-weight: 600;
    color: var(--w3m-text-primary);
    margin: 0;
}

.wui-instruction-text {
    font-size: 14px;
    color: var(--w3m-text-secondary);
    margin: 0;
    line-height: 1.4;
}

.wui-qr-actions {
    width: 100%;
    display: flex;
    justify-content: center;
}


.wui-help-scroll-container {
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.wui-help-scroll-container::-webkit-scrollbar {
    display: none;
}


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

.wui-loading {
    animation: spin 1s linear infinite;
}


* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}


.wui-icon-button:focus-visible,
.wui-wallet:focus-visible,
.wui-wallet-box:focus-visible,
.wui-get-wallet-button:focus-visible {
    outline: 2px solid var(--w3m-bg-button);
    outline-offset: 2px;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  src:   format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  src:   format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  src:   format('woff2');
  unicode-range: U+1F00-1FFF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  src:   format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  src:   format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  src:   format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  src:   format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap);
        @keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

.mobile-redirect-content {
    padding-top: 12px;
    padding-bottom: 24px;
    padding-right: 24px;
    padding-left: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wallet-loading-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 32px;
}

.loading-ring {
    position: absolute;
    top: 0;
    left: 0;
}

.loading-stroke {
    fill: none;
    stroke: var(--w3m-accent-color, #5673ff);
    stroke-width: 4;
    stroke-linecap: round;
    animation: dash 1s linear infinite;
}

.wallet-icon-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: var(--w3m-radius-l, 16px);
    background: var(--w3m-color-bg-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wallet-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--w3m-radius-m, 12px);
}

.redirect-title {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 600;
    color: var(--w3m-color-fg-100);
    line-height: 1.3;
}

.redirect-description {
    margin: 0;
    font-size: 14px;
    color: var(--w3m-color-fg-200);
    line-height: 1.5;
    max-width: 280px;
    text-align: center;
}
:root{
    
    --w3m-bg-overlay: rgba(0, 0, 0, 0.15);
    --w3m-bg-primary: #ffffff;
    --w3m-bg-secondary: rgba(0, 0, 0, 0.02);
    --w3m-bg-hover: rgba(0, 0, 0, 0.05);
    --w3m-bg-active: rgba(0, 0, 0, 0.1);
    --w3m-bg-button: color(srgb 0.4 0.49 1);
    --w3m-bg-button-hover: color(srgb 0.4 0.49 1 / 0.9);
    --w3m-bg-button-active: color(srgb 0.4 0.49 1 / 0.8);
    --w3m-text-primary: #0a0a0a;
    --w3m-text-secondary: #798686;
    --w3m-text-button: #ffffff;
    --w3m-border-primary: rgba(0, 0, 0, 0.1);
    --w3m-shadow-primary: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgba(224, 225, 233, 0.25) 0px 4px 12px 4px;
    --w3m-tag-success-bg: #daf0e4;
    --w3m-tag-success-text: #26b562;
    
    
    --w3m-radius-xs: 8px;
    --w3m-radius-s: 16px;
    --w3m-radius-m: 24px;
    --w3m-radius-l: 36px;
    --w3m-radius-xl: 48px;
    
    
    --w3m-radius-modal: var(--w3m-radius-l);
    --w3m-radius-card: calc(var(--w3m-radius-modal) * 0.44);
    --w3m-radius-button: calc(var(--w3m-radius-modal) * 0.33);
    --w3m-radius-wallet: calc(var(--w3m-radius-modal) * 0.44);
    --w3m-radius-icon: calc(var(--w3m-radius-modal) * 0.33);
    --w3m-radius-tag: 6px;
    --w3m-radius-qr: calc(var(--w3m-radius-modal) * 0.55);
}

[data-theme="dark"] {
    
    --w3m-bg-overlay: rgba(0, 0, 0, 0.4);
    --w3m-bg-primary: #1a1a1a;
    --w3m-bg-secondary: rgba(255, 255, 255, 0.05);
    --w3m-bg-hover: rgba(255, 255, 255, 0.08);
    --w3m-bg-active: rgba(255, 255, 255, 0.12);
    --w3m-bg-button: color(srgb 0.4 0.49 1);
    --w3m-bg-button-hover: color(srgb 0.4 0.49 1 / 0.9);
    --w3m-bg-button-active: color(srgb 0.4 0.49 1 / 0.8);
    --w3m-text-primary: #ffffff;
    --w3m-text-secondary: #a0a0a0;
    --w3m-text-button: #ffffff;
    --w3m-border-primary: rgba(255, 255, 255, 0.1);
    --w3m-shadow-primary: rgba(0, 0, 0, 0.3) 0px 0px 0px 1px, rgba(0, 0, 0, 0.5) 0px 8px 32px 8px;
    --w3m-tag-success-bg: rgba(38, 181, 98, 0.2);
    --w3m-tag-success-text: #4ade80;
}


[data-radius="xs"] {
    --w3m-radius-modal: var(--w3m-radius-xs);
    --w3m-radius-card: 4px;
    --w3m-radius-button: 4px;
    --w3m-radius-wallet: 6px;
    --w3m-radius-icon: 4px;
    --w3m-radius-tag: 3px;
    --w3m-radius-qr: 6px;
}

[data-radius="s"] {
    --w3m-radius-modal: var(--w3m-radius-s);
    --w3m-radius-card: 8px;
    --w3m-radius-button: 6px;
    --w3m-radius-wallet: 10px;
    --w3m-radius-icon: 6px;
    --w3m-radius-tag: 4px;
    --w3m-radius-qr: 10px;
}

[data-radius="m"] {
    --w3m-radius-modal: var(--w3m-radius-m);
    --w3m-radius-card: 12px;
    --w3m-radius-button: 8px;
    --w3m-radius-wallet: 14px;
    --w3m-radius-icon: 8px;
    --w3m-radius-tag: 5px;
    --w3m-radius-qr: 14px;
}

[data-radius="l"] {
    --w3m-radius-modal: var(--w3m-radius-l);
    --w3m-radius-card: 16px;
    --w3m-radius-button: 12px;
    --w3m-radius-wallet: 16px;
    --w3m-radius-icon: 12px;
    --w3m-radius-tag: 6px;
    --w3m-radius-qr: 20px;
}

[data-radius="xl"] {
    --w3m-radius-modal: var(--w3m-radius-xl);
    --w3m-radius-card: 24px;
    --w3m-radius-button: 16px;
    --w3m-radius-wallet: 20px;
    --w3m-radius-icon: 14px;
    --w3m-radius-tag: 8px;
    --w3m-radius-qr: 28px;
}

.appkit-modal, .wui-card {
    max-width: 400px;
    width: 100%;
    box-sizing: border-box;
}

.w3m-root, .wui-card, .wui-text-700 {
    font-family: Inter, sans-serif;
}

.appkit-modal, .w3m-root, .wui-all-container, .wui-card, .wui-icon-button, .wui-wallet-box, .wui-qr-container {
    box-sizing: border-box;
}

.wui-icon-button, .wui-wallet, .wui-wallet-box {
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.wui-help-second, .wui-wallet p, .wui-wallet-box p {
    margin: 0;
    font-weight: 500;
}

.w3m-root {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    min-height: 100%;
    height: 100%;
    background-color: var(--w3m-bg-overlay);
    justify-content: center;
    align-items: center;
    z-index: 999;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: modalFadeIn 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
        -webkit-backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
}

.appkit-modal {
    position: relative;
    z-index: 999;
    animation: modalSlideIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.wui-card {
    overflow: hidden;
    line-height: 24px;
    border-radius: var(--w3m-radius-modal);
    background-color: var(--w3m-bg-primary);
    box-shadow: var(--w3m-shadow-primary);
    color: var(--w3m-text-primary);
    border: 1px solid var(--w3m-border-primary);
}

.wui-all-wallets, .wui-connects-methods {
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.wui-all-wallets::-webkit-scrollbar,
.wui-connects-methods::-webkit-scrollbar {
    display: none;
}

@media (max-width: 500px) {
    .w3m-root {
        justify-content: flex-end;
        align-items: flex-end;
        max-width: 100vw;
    }
    
    .appkit-modal, .wui-card {
        width: 100%;
        max-width: 100vw;
    }
    
    .wui-card {
        border-radius: var(--w3m-radius-modal) var(--w3m-radius-modal) 0 0;
    }
    
    @keyframes modalSlideIn {
        from {
            opacity: 0;
            transform: translateY(100%);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

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

.wui-flex-col {
    flex-direction: column;
}

.wui-between {
    justify-content: space-between;
    padding: 16px 18px;
}

.wui-icon-button {
    display: flex;
    padding: 12px;
    background-color: transparent;
    text-decoration-color: var(--w3m-text-primary);
    color: var(--w3m-text-primary);
    border-radius: var(--w3m-radius-icon);
    font-weight: 400;
    text-align: center;
    border: none;
    position: relative;
    overflow: hidden;
}

.wui-icon-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: currentColor;
    opacity: 0;
    transition: opacity 0.2s ease;
    border-radius: inherit;
}

.wui-icon-button:hover::before {
    opacity: 0.05;
}

.wui-icon-button:active::before {
    opacity: 0.1;
}

.wui-icon-button:hover, .wui-wallet-box:hover, .wui-wallet:hover {
    background-color: var(--w3m-bg-hover);
    transform: translateY(-1px);
}

.wui-icon-button:active, .wui-wallet-box:active, .wui-wallet:active {
    background-color: var(--w3m-bg-active);
    transform: translateY(0);
}

.wui-text-700 {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: -0.64px;
    text-transform: capitalize;
    tab-size: 4;
    color: var(--w3m-text-primary);
    text-align: left;
}

.wui-help-container {
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding: 20px 24px;
}

.wui-help-icons-container {
    gap: 20px;
    animation: iconFloat 3s ease-in-out infinite;
}

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

.wui-help-text-container {
    gap: 6px;
    padding: 0 24px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.wui-help-header {
    font-weight: 600;
    font-size: 16px;
    margin: 0;
    color: var(--w3m-text-primary);
    text-align: center;
}

.wui-help-second {
    font-size: 14px;
    color: var(--w3m-text-secondary);
    text-align: center;
}

.wui-get-wallet-button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    gap: 4px;
    cursor: pointer;
    border-radius: var(--w3m-radius-button);
    padding: 8px 16px 9px 12px;
    background-color: var(--w3m-bg-button);
    color: var(--w3m-text-button);
    margin-bottom: 30px;
    border: none;
    transition: all 0.2s ease;
}

.wui-get-wallet-button:hover {
    background-color: var(--w3m-bg-button-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.wui-get-wallet-button:active {
    background-color: var(--w3m-bg-button-active);
    transform: translateY(0);
}

.wui-all-container {
    gap: 16px;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
}

.wui-all-wallets {
    width: 100%;
}

.wui-all-wallets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
    padding: 8px 0;
}

.wui-wallet-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--w3m-bg-secondary);
    padding: 12px 8px;
    width: 104px;
    gap: 4px;
    border-radius: var(--w3m-radius-wallet);
    position: relative;
    overflow: hidden;
}

.wui-wallet-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.wui-wallet-box:hover::before {
    transform: translateX(100%);
}

.wui-walletIcon, .wui-walletIcon-scaled, .wui-walletIcon-large {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--w3m-radius-icon);
    box-sizing: border-box;
    background-color: #e8f1fa;
    overflow: hidden;
}

.wui-walletIcon {
    width: 40px;
    height: 40px;
}

.wui-walletIcon-scaled {
    width: 56px;
    height: 56px;
}

.wui-walletIcon-large {
    width: 80px;
    height: 80px;
}

.wui-walletIcon img,
.wui-walletIcon-scaled img,
.wui-walletIcon-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.wui-connects-methods, .wui-wallet {
    width: 100%;
    box-sizing: border-box;
    display: flex;
}

.wui-wallet-box p {
    font-size: 13px;
    text-align: center;
    color: var(--w3m-text-primary);
    flex: 1;
}

.wui-connects-methods {
    -webkit-mask-image: linear-gradient(to bottom, transparent 0px, black 20px, black calc(100% - 20px), transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0px, black 20px, black calc(100% - 20px), transparent 100%);
    -webkit-mask-composite: destination-in;
    mask-composite: intersect;
    flex-direction: column;
    gap: 8px;
    padding: 8px 24px 8px;
    overflow-x: hidden;
}

.wui-wallet {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 7px 16px 7px 8px;
    background-color: var(--w3m-bg-secondary);
    border-radius: var(--w3m-radius-wallet);
    position: relative;
}

.wui-wallet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.wui-wallet:hover::before {
    transform: translateX(100%);
}

.wui-wallet p {
    flex: 1;
    font-size: 16px;
    color: var(--w3m-text-primary);
}

.wui-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1px 5px;
    border-radius: var(--w3m-radius-tag);
    background-color: rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    animation: tagPulse 2s ease-in-out infinite;
}

@keyframes tagPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.wui-tag-green {
    color: var(--w3m-tag-success-text);
    background-color: var(--w3m-tag-success-bg);
}

.wui-tag-accent {
    color: rgba(87, 115, 255, 1);
    background-color: rgba(87, 115, 255, 0.15);
}

.wui-tag-accent p {
    color: rgba(87, 115, 255, 1);
}

.wui-tag p {
    font-weight: 500;
    font-size: 10px;
    text-align: center;
    color: rgba(0, 0, 0, 0.7);
}

[data-theme="dark"] .wui-tag p {
    color: var(--w3m-text-secondary);
}

[data-theme="dark"] .wui-tag-accent p {
    color: rgba(87, 115, 255, 1);
}

[data-theme="dark"] .wui-tag-green p {
    color: var(--w3m-tag-success-text);
}

.wui-footer {
    display: flex;
    padding: 12px 0;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.wui-footer a, .wui-footer p {
    font-weight: 400;
    font-size: 14px;
    letter-spacing: -0.56px;
    line-height: 18.2px;
    transition: color 0.2s ease;
}

.wui-footer p {
    color: var(--w3m-text-secondary);
}

.wui-footer a {
    color: var(--w3m-bg-button);
    text-decoration: none;
    cursor: pointer;
}

.wui-footer a:hover {
    color: var(--w3m-bg-button-hover);
    text-decoration: underline;
}


.wui-qr-container {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.wui-qr-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.wui-wallet-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.wui-wallet-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--w3m-text-primary);
    margin: 0;
}

.wui-qr-code {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: var(--w3m-bg-primary);
    border-radius: var(--w3m-radius-qr);
    border: 1px solid var(--w3m-border-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: qrCodeGlow 3s ease-in-out infinite;
}

@keyframes qrCodeGlow {
    0%, 100% { 
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
    }
    50% { 
        box-shadow: 0 4px 20px rgba(64, 73, 255, 0.2); 
    }
}

[data-theme="dark"] .wui-qr-code {
    background: #2a2a2a;
}

.wui-qr-image {
    width: 280px;
    height: 280px;
    border-radius: var(--w3m-radius-icon);
}

.wui-qr-instructions {
    text-align: center;
    gap: 8px;
    display: flex;
    flex-direction: column;
}

.wui-instruction-header {
    font-size: 16px;
    font-weight: 600;
    color: var(--w3m-text-primary);
    margin: 0;
}

.wui-instruction-text {
    font-size: 14px;
    color: var(--w3m-text-secondary);
    margin: 0;
    line-height: 1.4;
}

.wui-qr-actions {
    width: 100%;
    display: flex;
    justify-content: center;
}


.wui-help-scroll-container {
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.wui-help-scroll-container::-webkit-scrollbar {
    display: none;
}


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

.wui-loading {
    animation: spin 1s linear infinite;
}


* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}


.wui-icon-button:focus-visible,
.wui-wallet:focus-visible,
.wui-wallet-box:focus-visible,
.wui-get-wallet-button:focus-visible {
    outline: 2px solid var(--w3m-bg-button);
    outline-offset: 2px;
}

  :root{
    --image-url-9: url("../images/9c73881bef2ac3f5.png");
  }


/*__SWIPER_HEIGHT_FIX__*/
html .swiper:not(.swiper-vertical):not([class*="full"]):not([class*="vh"]) {
  align-self: start !important;
  height: auto !important;
}
html .swiper:not(.swiper-vertical):not([class*="full"]):not([class*="vh"]) > .swiper-wrapper,
html .swiper:not(.swiper-vertical):not([class*="full"]):not([class*="vh"]) .swiper-slide {
  height: auto !important;
}

/* Dashboard Styles */
.dashboard-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.dashboard-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.dashboard-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.dashboard-card-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.dashboard-shell {
  position: relative;
  border-radius: 26px;
  padding: 12px 10px 18px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.dashboard-shell::before {
  content: none;
}

.dashboard-shell > * {
  position: relative;
  z-index: 2;
}

.page-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.page-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.page-chip i {
  color: #ffffff;
  font-size: 14px;
}

/* Airdrop Notification Banner */
.airdrop-notification-banner {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  backdrop-filter: blur(10px);
  margin-bottom: 32px;
}

.notification-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.notification-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.notification-icon {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.5);
}

.notification-amount {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  font-family: 'Geist', Arial, sans-serif;
}

.notification-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.2s ease;
}

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

.notification-content {
  margin-bottom: 20px;
}

.notification-main {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 16px;
  font-family: 'Geist', Arial, sans-serif;
}

.notification-status {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-family: 'Geist', Arial, sans-serif;
}

.status-icon {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  width: 16px;
}

.status-text-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-family: 'Geist', Arial, sans-serif;
}

.notification-actions {
  display: flex;
  gap: 12px;
}

.notification-btn {
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Geist', Arial, sans-serif;
}

.notification-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.modal-overlay {
    display: flex; /* keep in flow but control visibility via opacity/class */
    position: fixed;
    inset: 0;
    background: rgba(10,13,19,0.75); /* neutral, app-like overlay */
    backdrop-filter: blur(12px) saturate(110%);
    z-index: 100;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 240ms ease, background 240ms ease;
}

.modal-overlay.active { opacity: 1; pointer-events: auto; }

/* Modal content - unified spacing and responsive behaviour */
.modal-content {
    width: calc(100% - 36px);
    max-width: 420px;
    background: #0a0d13; /* match app background */
    border: none; /* remove border as requested */
    border-radius: 14px;
    padding: 14px 16px; /* normalized padding */
    box-shadow: 0 18px 44px rgba(2,6,23,0.65);
    backdrop-filter: blur(8px);
    position: relative;
    transform-origin: center center;
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: transform 260ms cubic-bezier(.2,.9,.2,1), opacity 220ms ease;
}

/* when overlay is activated ensure the modal is in resting (open) position */
.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* closing state: slide down and fade */
.modal-overlay.closing .modal-content {
    transform: translateY(100%) scale(0.995);
    opacity: 0;
    transition: transform 320ms ease, opacity 220ms ease;
}

/* fade overlay when closing */
.modal-overlay.closing { opacity: 0; pointer-events: none; }

/* ensure bottom-sheet alignment on small screens and provide slide-up entry */
@media (max-width: 420px) {
    .modal-overlay { align-items: flex-end; }
    .modal-content { border-radius: 12px 12px 0 0; transform: translateY(100%) scale(0.995); }
    .modal-overlay.active .modal-content { transform: translateY(0) scale(1); }
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(10px) scale(0.995); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Close button: circular, subtle */
.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.12);
    color: #ffffff;
    font-size: 16px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: transform 0.15s ease, background 0.15s ease;
    z-index: 2101;
    box-shadow: none;
}

.modal-close:hover { background: rgba(255,255,255,0.06); color: #fff; transform: translateY(-2px); }
.modal-close i { pointer-events: none; }

/* Success icon + header */
.modal-success { text-align: center; }
.success-icon {
    width: 64px; height: 64px; display:flex; align-items:center; justify-content:center;
    border-radius: 50%; margin: 0 auto 10px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    color: #fff; font-size: 22px;
}

.modal-title { color: #fff; font-size:20px; font-weight:700; margin-bottom:6px; font-family: 'Cinzel', serif; }
.modal-subtitle { color: rgba(255,255,255,0.72); font-size:13px; margin-bottom:14px; }

.modal-info { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.04); border-radius:10px; padding:6px 12px; margin-bottom:14px; }
.info-item { display:flex; justify-content:space-between; align-items:center; padding:6px 0; border-bottom:1px solid rgba(255,255,255,0.03); }
.info-item:last-child { border-bottom: none; }
.info-label { color: rgba(255,255,255,0.72); font-size:13px; }
.info-value { color: #ffffff; font-weight:700; }

.modal-benefits { border: none; border-radius:8px; margin-bottom:10px; }
.modal-benefits-title { color: rgba(255,255,255,0.85); font-size:13px; font-weight:700; text-align: left; text-transform:uppercase; margin-bottom:6px; }
.benefits-list { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:0px; }
.benefit-item { display:flex; align-items:center; gap:8px; color: rgba(255,255,255,0.78); font-size:13px; }

/* Primary CTA unified */
.modal-btn-primary { width:100%; padding:12px 14px; background:#ffffff; color:#000; border:1px solid rgba(255,255,255,0.12); border-radius:10px; font-weight:700; font-size:15px; display:flex; align-items:center; justify-content:center; gap:10px; }
.modal-btn-primary:hover { background:#f3f4f6; transform: translateY(-2px); box-shadow: 0 8px 26px rgba(2,6,23,0.35); }

.modal-body { position:relative; padding: 8px 0 12px; }
.modal-header-icon { width:56px; height:56px; border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:22px; margin:0 auto 12px; }

/* Drag handle for bottom-sheet UX */
.modal-handle {
    width: 40px;
    height: 4px;
    background: rgba(255,255,255,0.06);
    border-radius: 999px;
    margin: 6px auto 10px;
}

.modal-section-title { font-size: 13px; color: rgba(255,255,255,0.85); font-weight: 700; margin: 8px 0 6px; }
.muted-text { color: rgba(255,255,255,0.6); font-size: 13px; }

.modal-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 6px 0; }

.secondary-btn {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
}

.small-note { font-size: 12px; color: rgba(255,255,255,0.48); margin-top:6px; }

.pool-card .pool-info { display:flex; justify-content:space-between; gap:8px; margin-top:8px; font-size:12px; color: rgba(255,255,255,0.66); }


.stake-info-box,
.trade-info-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.info-value {
  color: white;
  font-weight: 600;
  font-size: 13px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  color: white;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  color: white;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: rgba(59, 130, 246, 0.5);
  background: rgba(59, 130, 246, 0.05);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-input:disabled {
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.4);
  cursor: not-allowed;
}

.max-btn {
  position: absolute;
  right: 12px;
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #60a5fa;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.max-btn:hover {
  background: rgba(59, 130, 246, 0.3);
  border-color: rgba(59, 130, 246, 0.5);
}

.token-badge {
  position: absolute;
  right: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}

.input-hint {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  margin-top: 6px;
}

.reward-preview {
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(59, 130, 246, 0.05));
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
  text-align: center;
}

.reward-title {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.reward-amount {
  color: #60a5fa;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.reward-hint {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

.error-message {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.error-message.hidden {
  display: none;
}

.error-message i {
  flex-shrink: 0;
}

/* Pools Styling */
.pools-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.pool-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 16px;
  transition: all 0.3s ease;
}

.pool-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

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

.pool-name {
  color: white;
  font-weight: 600;
  font-size: 14px;
  margin: 0;
}

.pool-apy {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}

.pool-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  margin: 6px 0;
}

.pool-info {
  display: flex;
  gap: 16px;
  margin: 8px 0;
  font-size: 12px;
}

.pool-tvl,
.pool-vol {
  color: rgba(255, 255, 255, 0.4);
}

.pool-action-btn {
  width: 100%;
  margin-top: 12px;
  padding: 8px 12px;
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pool-action-btn:hover {
  background: rgba(34, 197, 94, 0.3);
  border-color: rgba(34, 197, 94, 0.5);
}

/* Coming Soon Banner */
.coming-soon-banner {
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.15) 0%, rgba(234, 88, 12, 0.1) 100%);
  border: 1px solid rgba(251, 146, 60, 0.3);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
}

.coming-soon-banner h3 {
  color: white;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.coming-soon-banner p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  margin: 0;
}

#countdownTimer {
  font-size: 20px;
  font-weight: 700;
  color: #fb923c;
  letter-spacing: 0.5px;
}

/* Disabled Feature Cards */
.coming-soon-card {
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  cursor: not-allowed;
  opacity: 0.6;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.coming-soon-card:hover {
  opacity: 0.7;
}

.coming-soon-card .feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 12px;
}

.coming-soon-card h4 {
  color: white;
  font-weight: 600;
  font-size: 14px;
  margin: 0 0 6px 0;
}

.coming-soon-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  margin: 0;
}

.coming-soon-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  margin-top: 12px;
}

.coming-soon-badge.orange {
  background: rgba(251, 146, 60, 0.2);
  color: #fb923c;
}

.coming-soon-badge.blue {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}

.coming-soon-badge.green {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

/* Why Check Back Section */
.info-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 20px;
  margin-top: 32px;
}

.info-section-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(251, 146, 60, 0.2);
  flex-shrink: 0;
}

.info-section-icon i {
  font-size: 18px;
  color: #fb923c;
}

.info-section h3 {
  color: white;
  font-weight: 600;
  font-size: 16px;
  margin: 0 0 12px 0;
}

.info-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-section li {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.info-section li i {
  font-size: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

.info-section li i.bi-check-lg {
  color: #22c55e;
}

.info-section li i.bi-check-lg.orange {
  color: #fb923c;
}

/* Mobile responsiveness for dashboard */
@media (max-width: 768px) {
  main {
    padding-top: 90px !important;
  }

  .notification-title {
    flex-direction: column;
    gap: 8px;
  }

  .modal-content {
    padding: 30px;
    max-width: 100%;
  }

  .modal-title {
    font-size: 20px;
  }

  #countdownTimer {
    font-size: 16px;
  }

  #toastContainer {
    left: 6px;
    right: 6px;
  }
}

/* Toast Notifications */
.toast {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: slideInRight 0.3s ease-out;
  pointer-events: auto;
  max-width: 400px;
}

.toast.success {
  border-color: rgba(34, 197, 94, 0.3);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(74, 222, 128, 0.05));
}

.toast.error {
  border-color: rgba(239, 68, 68, 0.3);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(252, 165, 165, 0.05));
}

.toast.info {
  border-color: rgba(59, 130, 246, 0.3);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 197, 253, 0.05));
}

.toast.warning {
  border-color: rgba(251, 146, 60, 0.3);
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.1), rgba(254, 215, 170, 0.05));
}

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

.toast.success .toast-icon {
  color: #4ade80;
}

.toast.error .toast-icon {
  color: #fca5a5;
}

.toast.info .toast-icon {
  color: #93c5fd;
}

.toast.warning .toast-icon {
  color: #fed7aa;
}

.toast-content {
  flex: 1;
}

.toast-title {
  color: white;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}

.toast-message {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.4;
}

.toast-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  font-size: 18px;
  padding: 0;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.toast-close:hover {
  color: rgba(255, 255, 255, 0.7);
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(400px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOutRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(400px);
  }
}

.toast.removing {
  animation: slideOutRight 0.3s ease-out;
}

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

/* ==================================================
   Mobile-first overrides (app is mobile-only)
   - Constrain content to mobile width (centered)
   - Single column layout, compact paddings
   - Bottom-sheet modals, full-width toasts, touch targets
   ================================================== */

:root {
  --shell-max: 1040px;
  --shell-mobile: 820px;
}

main > section {
  width: 100%;
  max-width: var(--shell-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 22px;
  padding-right: 22px;
}

.header-container {
  max-width: var(--shell-max);
  width: 100%;
  margin: 0 auto;
  padding: 0 18px;
}

@media (max-width: 960px) {
  main > section {
    max-width: var(--shell-mobile);
    padding-left: 18px;
    padding-right: 18px;
  }

  .header-container {
    max-width: var(--shell-mobile);
    padding: 0 16px;
  }

  .nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .logo img { height: 28px; }
}

@media (max-width: 720px) {
  main { padding-top: 88px; }
  main > section { padding-left: 16px; padding-right: 16px; }

  .dashboard-card { padding: 16px; border-radius: 16px; }
  #chartContainer { height: 220px; padding: 10px; }

  .modal-overlay { align-items: flex-end; }
  .modal-content {
    width: 100%;
    max-width: 100%;
    border-radius: 16px 16px 0 0;
    margin: 0;
    box-shadow: 0 -12px 40px rgba(0,0,0,0.6);
    max-height: 92vh;
    overflow-y: auto;
  }

  .modal-close { top: 10px; right: 10px; width: 40px; height: 40px; }

  #toastContainer { left: 12px; right: 12px; top: 16px; z-index: 1000; }
  .toast { width: 100%; max-width: 100%; }

  .form-input { padding: 12px 14px; font-size: 15px; }
  .input-wrapper { align-items: center; }

  .footer-container { grid-template-columns: 1fr; gap: 18px; text-align: center; }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  .hero-title { font-size: 26px; }
  .modal-title { font-size: 18px; }
  .hero-meta { grid-template-columns: 1fr; }
}


.tg-login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
  background: linear-gradient(180deg, #54a9eb 0%, #3389d7 100%);
  box-shadow: 0 2px 2px rgba(36, 95, 214, 0.25);
  transition: filter 0.15s ease, transform 0.15s ease;
}

.tg-login-button {
  cursor: pointer;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
}

.tg-login-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.tg-login-button:hover {
  filter: brightness(1.08);
}

.tg-login-button:active {
  transform: translateY(1px);
  filter: brightness(0.95);
}