:root {
    color-scheme: dark;

    --bg: #030712;
    --bg-2: #071429;
    --card: rgba(9, 18, 38, 0.82);
    --card-2: rgba(13, 27, 58, 0.9);
    --text: #f8fbff;
    --muted: #91a4ca;
    --soft: rgba(255, 255, 255, 0.065);
    --line: rgba(255, 255, 255, 0.12);
    --primary: #00b7ff;
    --primary-2: #006eff;
    --violet: #7c3cff;
    --success: #67ffc4;
    --danger: #ff6b8a;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);

    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: 1180px;
}

/* RESET */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 8%, rgba(0, 183, 255, 0.22), transparent 30%),
        radial-gradient(circle at 86% 14%, rgba(124, 60, 255, 0.22), transparent 32%),
        linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 48%, #020617 100%);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 78%);
}

img {
    display: block;
    max-width: 100%;
}

a,
button {
    -webkit-tap-highlight-color: transparent;
}

/* BACKGROUND */
.bg-orb {
    position: fixed;
    z-index: -1;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(28px);
}

.orb-1 {
    width: 440px;
    height: 440px;
    top: -180px;
    right: -150px;
    background: rgba(0, 183, 255, 0.28);
}

.orb-2 {
    width: 360px;
    height: 360px;
    left: -160px;
    bottom: 12%;
    background: rgba(124, 60, 255, 0.2);
}

/* REUSABLE LAYOUT */
.container,
.topbar,
.hero,
.section,
.footer-container,
.footer-bottom {
    width: min(var(--container), calc(100% - 32px));
    margin-inline: auto;
}

.section {
    padding: 18px 0 58px;
}

.grid {
    display: grid;
    gap: 16px;
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* REUSABLE CARD */
.panel-card,
.mini-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028)),
        var(--card);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.panel-card {
    padding: 24px;
    border-radius: var(--radius-xl);
}

.mini-card {
    padding: 22px;
    border-radius: var(--radius-lg);
}

.soft-card {
    padding: 16px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.085);
}

/* REUSABLE TEXT */
.kicker,
.card-label,
.section-heading span,
.panel-header span {
    display: block;
    color: var(--primary);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-heading {
    margin-bottom: 22px;
}

.section-heading span {
    margin-bottom: 9px;
}

.section-heading h2 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-heading p,
.text-muted {
    color: var(--muted);
    line-height: 1.7;
    font-size: 15px;
}

.section-heading p {
    max-width: 730px;
    margin: 0;
}

/* BUTTONS */
.btn {
    appearance: none;
    border: 0;
    outline: 0;
    cursor: pointer;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 999px;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: 0.22s ease;
}

.btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
    filter: none;
}

.btn-primary,
.btn-small {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    box-shadow: 0 14px 36px rgba(0, 183, 255, 0.24);
}

.btn-small {
    min-height: 40px;
    padding: 10px 15px;
    font-size: 13px;
}

.btn-claim {
    width: 100%;
    min-height: 60px;
    margin-top: 18px;
    overflow: hidden;
    position: relative;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary), var(--violet));
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 18px 50px rgba(0, 183, 255, 0.3);
    animation: claimPulse 2.4s ease-in-out infinite;
}

/* TOPBAR */
.topbar {
    padding: 22px 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;
}

.brand img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 14px;
    filter: drop-shadow(0 0 18px rgba(0, 183, 255, 0.38));
}

/* HERO */
.hero {
    padding: 30px 0 52px;
    display: grid;
    grid-template-columns: 1.06fr 0.94fr;
    gap: 38px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-logo {
    width: min(360px, 100%);
    margin-bottom: 18px;
    animation: floatLogo 3.4s ease-in-out infinite;
}

.hero-logo img {
    filter: drop-shadow(0 24px 52px rgba(0, 183, 255, 0.28));
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 9px 14px;
    border-radius: 999px;
    color: var(--primary);
    background: rgba(0, 183, 255, 0.1);
    border: 1px solid rgba(0, 183, 255, 0.22);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-content h1 {
    max-width: 680px;
    margin: 0 0 18px;
    font-size: clamp(42px, 5.8vw, 72px);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.hero-content h1 span {
    color: var(--primary);
    text-shadow: 0 0 30px rgba(0, 183, 255, 0.38);
}

/* SOCIAL */
.social-links,
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-links {
    margin-top: 20px;
}

.social-links a,
.footer-links a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 850;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: 0.22s ease;
}

.social-links a:hover,
.footer-links a:hover {
    transform: translateY(-2px);
    color: #fff;
    background: rgba(0, 183, 255, 0.12);
    border-color: rgba(0, 183, 255, 0.42);
}

/* CLAIM PANEL */
.claim-panel {
    position: relative;
    overflow: hidden;
}

.claim-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at top right, rgba(0, 183, 255, 0.16), transparent 42%);
}

.claim-panel>* {
    position: relative;
}

.panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 20px;
}

.panel-header h2 {
    margin: 7px 0 0;
    color: var(--text);
    font-size: 25px;
}

.wallet-pill {
    white-space: nowrap;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
}

.wallet-pill.connected {
    color: #062719;
    background: var(--success);
}

.wallet-pill.disconnected {
    color: #ffdce4;
    background: rgba(255, 107, 138, 0.16);
    border: 1px solid rgba(255, 107, 138, 0.24);
}

.status-list {
    display: grid;
}

.status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
    color: var(--muted);
    font-size: 14px;
}

.status-row strong {
    color: var(--text);
    text-align: right;
}

.wallet-box {
    margin-top: 18px;
}

.wallet-box p {
    margin: 8px 0 0;
    color: var(--text);
    font-size: 14px;
    font-weight: 750;
    line-height: 1.55;
    word-break: break-all;
}

.message {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
    text-align: center;
}

/* EXCHANGE / LOGO GRID */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.logo-item {
    min-height: 92px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 8px;
    border-radius: var(--radius-md);
    color: var(--text);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.095);
    transition: 0.22s ease;
}

.logo-item:hover {
    transform: translateY(-3px);
    background: rgba(0, 183, 255, 0.1);
    border-color: rgba(0, 183, 255, 0.42);
}

.logo-item img {
    width: auto;
    max-width: 36px;
    height: 34px;
    object-fit: contain;
}

.logo-item small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
    text-align: center;
}

/* TOKENOMICS */
.tokenomics-list {
    display: grid;
    gap: 10px;
}

.tokenomics-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.tokenomics-row span {
    color: var(--muted);
    font-size: 14px;
}

.tokenomics-row strong {
    color: var(--text);
    font-size: 14px;
    text-align: right;
}

.tokenomics-row .accent {
    color: var(--primary);
}

.percent-bar {
    height: 9px;
    margin-top: 12px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
}

.percent-bar i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--primary), var(--violet));
}

/* REFERRAL */
.referral-link {
    min-height: 52px;
    display: block;
    margin-bottom: 16px;
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.55;
    word-break: break-all;
}

.referral-link:hover {
    color: var(--primary);
}

.referral-list {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.68;
}

.referral-list li+li {
    margin-top: 8px;
}

.stat-number {
    margin: 0 0 10px;
    color: var(--success);
    font-size: 34px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.bonus-tier-list {
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

.bonus-tier-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 750;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.075);
}

.bonus-tier-item strong {
    color: var(--success);
}

/* ROADMAP */
.roadmap-card {
    position: relative;
    overflow: hidden;
}

.roadmap-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 22px;
    right: 22px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--violet));
}

.roadmap-card strong {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.roadmap-card h3,
.mini-card h3 {
    margin: 0 0 9px;
    color: var(--text);
    font-size: 17px;
    line-height: 1.25;
}

.roadmap-card p,
.mini-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

/* FOOTER */
.footer {
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.18));
    backdrop-filter: blur(18px);
}

.footer-container {
    padding: 50px 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    filter: drop-shadow(0 0 18px rgba(0, 183, 255, 0.35));
}

.footer-brand h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
}

.footer-brand p {
    margin: 0;
    max-width: 420px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 14px;
}

.footer-bottom {
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    color: var(--muted);
    font-size: 13px;
}

.footer-bottom span:last-child {
    color: var(--primary);
}

/* ANIMATION */
@keyframes floatLogo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

@keyframes claimPulse {

    0%,
    100% {
        box-shadow: 0 18px 50px rgba(0, 183, 255, 0.26);
    }

    50% {
        box-shadow: 0 24px 62px rgba(124, 60, 255, 0.38);
    }
}

/* RESPONSIVE */
@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-content {
        align-items: center;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {

    .container,
    .topbar,
    .hero,
    .section,
    .footer-container,
    .footer-bottom {
        width: min(100% - 24px, var(--container));
    }

    .topbar {
        padding-top: 16px;
        padding-bottom: 6px;
    }

    .brand span {
        display: none;
    }

    .brand img {
        width: 40px;
        height: 40px;
    }

    .btn {
        min-height: 42px;
        padding: 10px 15px;
        font-size: 12px;
    }

    .hero {
        padding-top: 24px;
        padding-bottom: 36px;
    }

    .hero-logo {
        width: min(290px, 100%);
        margin-bottom: 14px;
    }

    .hero-content h1 {
        font-size: 39px;
    }

    .panel-card {
        padding: 18px;
        border-radius: 24px;
    }

    .panel-header {
        flex-direction: column;
        gap: 12px;
    }

    .logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .mini-card {
        padding: 18px;
        border-radius: 22px;
    }

    .footer-container,
    .footer-brand,
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 380px) {
    .hero-content h1 {
        font-size: 34px;
    }

    .logo-grid {
        grid-template-columns: 1fr;
    }
}

.tokenomics-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 24px;
    align-items: start;
}

.token-main {
    text-align: center;
}

.token-logo {
    width: 120px;
    height: 120px;
    margin: 28px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
    background: rgba(0, 183, 255, .08);
    border: 1px solid rgba(0, 183, 255, .18);
}

.token-logo img {
    width: 72px;
}

.token-main h3 {
    margin: 0;
    font-size: 32px;
}

.token-main p {
    margin: 8px 0 24px;
}

.token-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.token-stats div {
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .05);
}

.token-stats small {
    display: block;
    color: var(--muted);
    margin-bottom: 6px;
}

.token-stats strong {
    color: #fff;
}

.tokenomics-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.tokenomics-row {
    display: grid;
    grid-template-columns: 1fr 70px;
    gap: 18px;
    align-items: center;
}

.tokenomics-row span {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
}

.percent-bar {
    height: 10px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, .08);
}

.percent-bar i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--primary), var(--violet));
}

.tokenomics-row strong {
    text-align: right;
    font-size: 18px;
}

@media(max-width:900px) {

    .tokenomics-layout {
        grid-template-columns: 1fr;
    }

}