@font-face {
  font-family: 'Geist';
  src:url("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: 1000;
    background: #0a0d1370;
    backdrop-filter: blur(24px);
    padding: 16px 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, white, #ffb347);
    -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, #e67d02);
    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(252, 141, 3, 0.4);
    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(252, 141, 3, 0.5);
}

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

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

.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;
}

.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: 60px;
    height: 60px;
    background: #1f2127;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
}

.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 {
    margin-top: 100px;
    padding: 80px 40px;
    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 {
    margin-top: 100px;
    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;
    }

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

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

    .faq-section {
        margin-top: 80px;
        padding: 60px 20px;
    }

    .footer {
        margin-top: 80px;
        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("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;
}
