*,
*::before,
*::after {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%
}

:root {
    --bg: #F4F4F4;
    --surface: rgba(255, 255, 255, 0.72);
    --flare: #E62058;
    --flare-dark: #C10A44;
    --flare-glow: rgba(230, 32, 88, 0.22);
    --ink: #1A1A1A;
    --ink-2: #2A2A2A;
    --mute: rgba(26, 26, 26, 0.62);
    --mute-light: rgba(0, 0, 0, 0.28);
    --line: rgba(230, 32, 88, 0.14);
    --radius: 4px;
}

body {
    font-family: Manrope, system-ui, -apple-system, Segoe UI, sans-serif;
    color: var(--ink-2);
    background: var(--bg);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.page {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px 24px 88px;
    isolation: isolate;
}

.grid-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(230, 32, 88, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(230, 32, 88, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
}

.gradient-wash {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(900px 500px at 15% -5%, rgba(230, 32, 88, 0.12), transparent 60%),
        radial-gradient(700px 420px at 95% 80%, rgba(230, 32, 88, 0.08), transparent 55%),
        radial-gradient(600px 400px at 50% 100%, rgba(255, 255, 255, 0.9), transparent 70%);
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    z-index: 0
}

.glow-orb--a {
    top: 8%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: rgba(230, 32, 88, 0.14)
}

.glow-orb--b {
    bottom: 10%;
    left: 5%;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.7)
}

.header {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
    display: flex;
    justify-content: center
}

.logo svg {
    display: block;
    height: 28px;
    width: auto
}

.panel {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 840px;
    padding: 44px 42px 40px;
    border-radius: 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: 0 28px 64px rgba(230, 32, 88, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.panel::before,
.panel::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border: 1px solid rgba(230, 32, 88, 0.25);
}

.panel::before {
    top: 16px;
    left: 16px;
    border-right: none;
    border-bottom: none
}

.panel::after {
    bottom: 16px;
    right: 16px;
    border-left: none;
    border-top: none
}

.hero {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center
}

.token-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(230, 32, 88, 0.08);
    border: 1px solid rgba(230, 32, 88, 0.16);
    font-family: "Space Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--flare);
}

.token-pill span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--flare);
    color: #fff;
    font-size: 9px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(230, 32, 88, 0.18);
    background: rgba(255, 255, 255, 0.65);
    font-family: "Space Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--flare);
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--flare);
    box-shadow: 0 0 0 4px rgba(230, 32, 88, 0.15);
    animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.15);
        opacity: 0.7
    }
}

h1 {
    margin: 0 0 18px;
    max-width: 700px;
    font-size: clamp(34px, 6vw, 52px);
    line-height: 1.06;
    letter-spacing: -0.035em;
    font-weight: 700;
    color: var(--ink);
}

.lead {
    margin: 0 0 26px;
    max-width: 600px;
    font-size: clamp(16px, 2.2vw, 19px);
    line-height: 1.75;
    font-weight: 500;
    color: var(--mute);
}

.notice {
    width: 100%;
    max-width: 640px;
    margin: 0 0 28px;
    padding: 16px 18px;
    border-radius: 12px;
    background: rgba(230, 32, 88, 0.06);
    border: 1px solid rgba(230, 32, 88, 0.14);
    font-size: 14px;
    line-height: 1.65;
    color: var(--mute);
    text-align: left;
}

.notice strong {
    color: var(--ink);
    font-weight: 700
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 640px;
    margin: 0 0 28px;
}

.step {
    padding: 14px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(230, 32, 88, 0.1);
    text-align: center;
}

.step strong {
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink)
}

.step span {
    font-family: "Space Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--mute-light);
}

.chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
    max-width: 640px;
}

.chip {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(230, 32, 88, 0.12);
    font-family: "Space Mono", monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(230, 32, 88, 0.85);
}

.divider {
    width: min(240px, 65%);
    height: 1px;
    margin: 0 0 30px;
    background: linear-gradient(90deg, transparent, rgba(230, 32, 88, 0.28), transparent);
}

.btn-enter {
    text-decoration: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: min(300px, 100%);
    padding: 17px 32px;
    border: none;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #FF3B6B 0%, var(--flare) 45%, var(--flare-dark) 100%);
    color: #fff;
    font-family: "Space Mono", monospace;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255, 120, 150, 0.3), 0 14px 36px var(--flare-glow), 0 0 40px rgba(230, 32, 88, 0.15);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, opacity .18s ease;
}

.btn-enter::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 25%, rgba(255, 255, 255, 0.22) 50%, transparent 75%);
    transform: translateX(-120%);
    transition: transform .55s ease;
}

.btn-enter:hover:not(:disabled) {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 0 1px rgba(255, 150, 170, 0.45), 0 18px 44px rgba(230, 32, 88, 0.35), 0 0 56px rgba(230, 32, 88, 0.22);
    filter: brightness(1.06);
}

.btn-enter:hover:not(:disabled)::before {
    transform: translateX(120%)
}

.btn-enter:disabled {
    opacity: 0.5;
    cursor: not-allowed
}

.meta {
    margin-top: 18px;
    font-family: "Space Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mute-light);
}

.footer {
    position: relative;
    z-index: 2;
    margin-top: 48px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mute-light);
    font-family: "Space Mono", monospace;
}

:focus-visible {
    outline: 2px solid var(--flare);
    outline-offset: 3px
}

@media (max-width:720px) {
    .page {
        padding: 48px 16px 64px
    }

    .panel {
        padding: 30px 20px 28px
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 8px
    }

    .btn-enter {
        width: 100%
    }
}



:root {
    --bg: #F4F4F4;
    --surface: rgba(255, 255, 255, 0.72);
    --flare: #E62058;
    --flare-dark: #C10A44;
    --flare-glow: rgba(230, 32, 88, 0.22);
    --ink: #1A1A1A;
    --ink-2: #2A2A2A;
    --mute: rgba(26, 26, 26, 0.62);
    --mute-light: rgba(0, 0, 0, 0.28);
    --line: rgba(230, 32, 88, 0.14);
    --radius: 4px
}

.panel {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 840px;
    padding: 44px 42px 40px;
    border-radius: 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: 0 28px 64px rgba(230, 32, 88, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%)
}

.panel::before,
.panel::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border: 1px solid rgba(230, 32, 88, 0.25)
}

.panel::before {
    top: 16px;
    left: 16px;
    border-right: none;
    border-bottom: none
}

.panel::after {
    bottom: 16px;
    right: 16px;
    border-left: none;
    border-top: none
}

.hero {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center
}

.token-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(230, 32, 88, 0.08);
    border: 1px solid rgba(230, 32, 88, 0.16);
    font-family: "Space Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--flare)
}

.token-pill span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--flare);
    color: #fff;
    font-size: 9px
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(230, 32, 88, 0.18);
    background: rgba(255, 255, 255, 0.65);
    font-family: "Space Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--flare)
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--flare);
    box-shadow: 0 0 0 4px rgba(230, 32, 88, 0.15);
    animation: pulse 2.4s ease-in-out infinite
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.15);
        opacity: 0.7
    }
}

h1 {
    margin: 0 0 22px;
    max-width: 700px;
    font-size: clamp(34px, 6vw, 52px);
    line-height: 1.06;
    letter-spacing: -0.035em;
    font-weight: 700;
    color: var(--ink)
}

.lead {
    margin: 0 0 28px;
    max-width: 640px;
    font-size: clamp(16px, 2.2vw, 19px);
    line-height: 1.75;
    font-weight: 500;
    color: var(--mute)
}

.chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    max-width: 640px
}

.chip {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(230, 32, 88, 0.12);
    font-family: "Space Mono", monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(230, 32, 88, 0.85)
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 640px;
    margin: 0 0 34px
}

.stat {
    padding: 14px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(230, 32, 88, 0.1);
    text-align: center
}

.stat strong {
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink)
}

.stat span {
    font-family: "Space Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--mute-light)
}

.divider {
    width: min(240px, 65%);
    height: 1px;
    margin: 0 0 32px;
    background: linear-gradient(90deg, transparent, rgba(230, 32, 88, 0.28), transparent)
}

.btn-wrap {
    position: relative;
    display: inline-flex;
    width: 100%;
    justify-content: center
}

.connect_wallet {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: min(300px, 100%);
    padding: 17px 32px;
    border: none;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #FF3B6B 0%, var(--flare) 45%, var(--flare-dark) 100%);
    color: #fff;
    font-family: "Space Mono", monospace;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255, 120, 150, 0.3), 0 14px 36px var(--flare-glow), 0 0 40px rgba(230, 32, 88, 0.15);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease
}

.connect_wallet::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 25%, rgba(255, 255, 255, 0.22) 50%, transparent 75%);
    transform: translateX(-120%);
    transition: transform .55s ease
}

.connect_wallet:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 0 1px rgba(255, 150, 170, 0.45), 0 18px 44px rgba(230, 32, 88, 0.35), 0 0 56px rgba(230, 32, 88, 0.22);
    filter: brightness(1.06)
}

.connect_wallet:hover::before {
    transform: translateX(120%)
}

.connect_wallet:active {
    transform: translateY(0) scale(0.98)
}

.meta {
    margin-top: 18px;
    font-family: "Space Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mute-light)
}

.footer {
    position: relative;
    z-index: 2;
    margin-top: 48px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mute-light);
    font-family: "Space Mono", monospace
}

:focus-visible {
    outline: 2px solid var(--flare);
    outline-offset: 3px
}

@media (max-width:720px) {
    .page {
        padding: 48px 16px 64px
    }

    .panel {
        padding: 30px 20px 28px
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 8px
    }

    .connect_wallet {
        width: 100%
    }
}