@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

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

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: Poppins, sans-serif;
    color: #fff;
    background-color: #0a0e27;
    font-size: 16px;
    line-height: 1;
    min-height: 100vh;
    overflow-x: hidden;
}

#root {
    display: flex;
    flex-direction: column;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 20px;
}

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

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    *, *:before, *:after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.scroll-lock {
    overflow: hidden;
}

.app {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(360deg, #1784c7 0%, #000000 100%);
    position: relative;
}

.background-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: transparent;
}

/* Keep background continuous for sections outside .background-wrapper */
.app::before { content: none; }

.app > * {
    position: relative;
    z-index: 1;
}

@media (max-width: 1366px) {
    .background-wrapper {
        background: transparent;
    }

    .app::before {
        content: none;
    }
}

@media (max-width: 600px) {
    .background-wrapper {
        background-repeat: repeat;
        background-size: cover;
    }

    .app::before {
        background-repeat: repeat;
        background-size: cover;
    }
}

.main-content {
    flex: 1;
}

@media (max-width: 900px) {
    .main-content { overflow: hidden; }
}

/* ===== HEADER ===== */
._header_1tak2_1 {
    padding: 40px 0;
    position: relative;
    z-index: 100;
}

@media (max-width: 1200px) {
    ._header_1tak2_1 { padding: 20px 0; }
}

._container_1tak2_13 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

._mobileHeader_1tak2_26 { display: none; }

@media (max-width: 1200px) {
    ._mobileHeader_1tak2_26 { display: block; }
}

._mobileNav_1tak2_36 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

._menuButton_1tak2_42 {
    background: transparent;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.15s ease, transform 0.1s ease;
    min-width: 44px;
    min-height: 44px;
}

._menuButton_1tak2_42:hover { background-color: rgba(255,255,255,0.1); }
._menuButton_1tak2_42:active { transform: scale(0.95); background-color: rgba(255,255,255,0.15); }

._desktopHeader_1tak2_64 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1200px) {
    ._desktopHeader_1tak2_64 { display: none; }
}

._logo_1tak2_76 {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

._logo_1tak2_76 img { display: block; }

._nav_1tak2_86 {
    flex: 1;
    display: flex;
    justify-content: center;
}

._navLinks_1tak2_92 {
    display: flex;
    align-items: center;
    gap: 40px;
}

._navLinks_1tak2_92 li a {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

._navLinks_1tak2_92 li a:hover { opacity: 0.8; }

._headerRight_1tak2_110 {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

._langButton_1tak2_117 {
    display: flex;
    gap: 6px;
    align-items: center;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    padding: 8px 4px;
}

._langButton_1tak2_117 svg { transition: transform 0.3s ease; }
._langButton_1tak2_117:hover svg { transform: translateY(2px); }

._socialLinks_1tak2_136 {
    display: flex;
    gap: 16px;
    align-items: center;
}

._socialLinks_1tak2_136 a {
    display: flex;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

._socialLinks_1tak2_136 a:hover { opacity: 0.8; transform: scale(1.05); }

._mobileMenu_1tak2_153 {
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, #0a0a1a, #1a1a3a);
    z-index: 1200;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

._mobileMenu_1tak2_153._open_1tak2_165 {
    transform: translateX(0);
}

._mobileMenuContent_1tak2_169 {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

._mobileMenuHeader_1tak2_176 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

._closeButton_1tak2_183 {
    background: transparent;
    color: #fff;
    font-size: 36px;
    padding: 8px;
    line-height: 1;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.1s ease;
}

._closeButton_1tak2_183:active { transform: scale(0.95); }

._mobileNavLinks_1tak2_201 {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

._mobileNavLinks_1tak2_201 li a {
    font-size: 24px;
    font-weight: 600;
    display: flex;
    padding: 16px 0;
    min-height: 44px;
    align-items: center;
    transition: opacity 0.2s ease, transform 0.1s ease;
}

._mobileNavLinks_1tak2_201 li a:active {
    transform: translateX(5px);
    opacity: 0.7;
}

._mobileActions_1tak2_223 {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

/* ===== HERO ===== */
._hero_lnl06_1 {
    position: relative;
    min-height: auto;
    overflow: hidden;
    padding-bottom: 60px;
}

._container_lnl06_8 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

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

._floatingElements_lnl06_23 {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

._floatingElement_lnl06_23 {
    position: absolute;
    animation: _float_lnl06 6s ease-in-out infinite;
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    ._floatingElement_lnl06_23 { animation: none; }
}

._element1_lnl06_45 { top: -12%; left: -5%; width: 280px; animation-delay: 0s; opacity: 0.9; }
._element2_lnl06_53 { top: 59%; left: -5%; width: 300px; animation-delay: 1s; opacity: 0.8; }
._element3_lnl06_61 { top: 5%; right: -5%; width: 320px; animation-delay: 2s; opacity: 0.85; }

@media (max-width: 1200px) {
    ._element1_lnl06_45, ._element2_lnl06_53, ._element3_lnl06_61 { width: 180px; }
}

@media (max-width: 768px) {
    ._element1_lnl06_45, ._element2_lnl06_53 { display: none; }
    ._element3_lnl06_61 { width: 120px; opacity: 0.5; }
}

._heroContent_lnl06_94 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    padding-top: 20px;
}

@media (max-width: 1100px) {
    ._heroContent_lnl06_94 { flex-direction: column; align-items: center; gap: 40px; }
}

._heroLeft_lnl06_111 {
    flex: 1;
    max-width: 600px;
    position: relative;
}

@media (max-width: 1100px) {
    ._heroLeft_lnl06_111 { max-width: 100%; text-align: center; }
}

._textContent_lnl06_124 { position: relative; }

._textContent_lnl06_124:before {
    content: "";
    position: absolute;
    top: -50px;
    left: -100px;
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(100,80,160,0.35) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

._textContent_lnl06_124:after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(90,70,150,0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

._heroTitle_lnl06_154 { display: flex; flex-direction: column; }

._heroTitle_lnl06_154 span {
    font-weight: 900;
    color: rgba(240,238,250,0.95);
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: -0.02em;
}

._line1_lnl06_167 { font-size: 170px; }
._line2_lnl06_171 { font-size: 170px; margin-left: -50px; }
._line3_lnl06_176 { font-size: 120px; margin-top: 60px; }
._line4_lnl06_181 { font-size: 140px; margin-left: 80px; }

@media (max-width: 1200px) {
    ._line1_lnl06_167 { font-size: 100px; }
    ._line2_lnl06_171 { font-size: 100px; margin-left: -30px; }
    ._line3_lnl06_176 { font-size: 72px; margin-top: 50px; }
    ._line4_lnl06_181 { font-size: 90px; margin-left: 60px; }
}

@media (max-width: 768px) {
    ._line1_lnl06_167 { margin-left: -80px; font-size: 74px; }
    ._line2_lnl06_171 { font-size: 74px; margin-left: -260px; font-weight: 900; }
    ._line3_lnl06_176 { font-size: 64px; margin-top: 30px; margin-left: 0; }
    ._line4_lnl06_181 { font-size: 54px; margin-left: -100px; font-weight: 1000; }
}

._coinSection_lnl06_246 {
    position: absolute;
    top: 38%;
    right: -5%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
    margin: 0;
    line-height: 0;
}

@media (max-width: 1200px) {
    ._coinSection_lnl06_246 { right: 0%; top: 40%; }
}

@media (max-width: 768px) {
    ._coinSection_lnl06_246 { right: 18%; top: 38%; }
}

._coinVideo_lnl06_276 {
    display: block;
    width: 420px;
    height: auto;
}

@media (max-width: 1200px) { ._coinVideo_lnl06_276 { width: 350px; } }
@media (max-width: 768px) { ._coinVideo_lnl06_276 { width: 160px; } }

._bracket_lnl06_300 {
    position: absolute;
    top: 50px;
    right: -60px;
    opacity: 0.8;
}

@media (max-width: 1200px) {
    ._bracket_lnl06_300 { top: 40px; right: -40px; }
    ._bracket_lnl06_300 svg { width: 30px; height: 160px; }
}

@media (max-width: 768px) {
    ._bracket_lnl06_300 { display: block; top: 80px; right: 50px; opacity: 1; }
    ._bracket_lnl06_300 svg { width: 20px; height: 50px; }
}

._heroRight_lnl06_334 {
    flex-shrink: 0;
    z-index: 10;
    width: 480px;
}

@media (max-width: 1100px) {
    ._heroRight_lnl06_334 { width: 100%; max-width: 480px; }
}

@keyframes _float_lnl06 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

@keyframes _coinFloat_lnl06 {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateY(10deg); }
}

/* ===== BUY WIDGET ===== */
._widget_l1psz_1 {
    background: rgba(255,255,255,0);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 32px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 520px) {
    ._widget_l1psz_1 { padding: 24px 20px; border-radius: 20px; }
}

._title_l1psz_20 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 24px;
}

@media (max-width: 520px) { ._title_l1psz_20 { font-size: 28px; } }

._countdown_l1psz_35 {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

@media (max-width: 520px) { ._countdown_l1psz_35 { gap: 20px; } }

._countdownItem_l1psz_48 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

._countdownNumber_l1psz_54 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

@media (max-width: 520px) { ._countdownNumber_l1psz_54 { font-size: 36px; } }

._countdownLabel_l1psz_67 {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}

@media (max-width: 520px) { ._countdownLabel_l1psz_67 { font-size: 14px; } }

._statsRow_l1psz_80 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

._raised_l1psz_87, ._price_l1psz_93 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

._progressBar_l1psz_100 {
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 100px;
    margin-bottom: 24px;
    overflow: hidden;
}

._progressFill_l1psz_108 {
    height: 100%;
    background: linear-gradient(90deg, #49b7fa, #6dd5fa);
    border-radius: 100px;
    transition: width 0.3s ease;
}

._divider_l1psz_116 {
    position: relative;
    text-align: center;
    margin: 24px 0;
}

._divider_l1psz_116:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255,255,255,0.2);
}

._divider_l1psz_116 span {
    position: relative;
    background: transparent;
    padding: 0 16px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
}

._paymentMethods_l1psz_142 { flex-wrap: wrap; flex-wrap: wrap;
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
}

@media (max-width: 520px) { ._paymentMethods_l1psz_142 { flex-wrap: wrap; flex-wrap: wrap; flex-wrap: wrap; } ._methodButton_l1psz_154 { flex: 1 1 28% !important; min-width: 28%; } }

._methodButton_l1psz_154 {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 10px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 100px;
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    white-space: nowrap;
    min-height: 44px;
}

._methodButton_l1psz_154:hover { border-color: #49b7fa; background: rgba(73,183,250,0.1); }
._methodButton_l1psz_154:active { transform: scale(0.97); }

._methodButton_l1psz_154._active_l1psz_181 {
    border-color: #49b7fa;
    background: rgba(73,183,250,0.15);
    color: #49b7fa;
}

._methodIcon_l1psz_187 { width: 20px; height: 20px; }

._inputsRow_l1psz_193 {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

@media (max-width: 520px) { ._inputsRow_l1psz_193 { flex-direction: column; gap: 12px; } }

._inputGroup_l1psz_206 { flex: 1; }

._inputLabel_l1psz_210 {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
}

._inputWrapper_l1psz_218 { position: relative; }

._input_l1psz_193 {
    width: 100%;
    padding: 14px 48px 14px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background: transparent;
    outline: none;
    transition: border-color 0.2s ease;
    -webkit-appearance: none;
    -moz-appearance: textfield;
}

._input_l1psz_193:focus { border-color: #49b7fa; }
._input_l1psz_193::placeholder { color: rgba(255,255,255,0.5); }
._input_l1psz_193::-webkit-outer-spin-button,
._input_l1psz_193::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

._inputIcon_l1psz_252 {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

._inputIcon_l1psz_252 img { width: 24px; height: 24px; }

._buttonsRow_l1psz_270 {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

@media (max-width: 520px) { ._buttonsRow_l1psz_270 { flex-direction: row; gap: 10px; } }

._connectButton_l1psz_284 {
    padding: 18px 32px;
    background: linear-gradient(135deg, #49b7fa, #3a8ef5);
    color: #fff;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.2s ease;
    min-height: 56px;
    border: none;
    cursor: pointer;
    width: 100%;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(73,183,250,0.3);
    white-space: nowrap;
}

._connectButton_l1psz_284:hover { background: #3aa8eb; }
._connectButton_l1psz_284:active { transform: scale(0.97); background: #2a98db; }

@media (max-width: 520px) {
    ._connectButton_l1psz_284 { padding: 12px 10px; font-size: 14px; min-height: 36px; }
}

._chainButton_l1psz_315 {
    padding: 16px 24px;
    background: transparent;
    color: #49b7fa;
    border: 2px solid #49B7FA;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s ease;
    min-height: 44px;
    cursor: pointer;
    white-space: nowrap;
}

._chainButton_l1psz_315:hover { background: rgba(73,183,250,0.1); }
._chainButton_l1psz_315:active { transform: scale(0.97); background: rgba(73,183,250,0.15); }

@media (max-width: 520px) {
    ._chainButton_l1psz_315 { padding: 10px; font-size: 14px; min-height: 36px; border-width: 1.5px; }
}

/* ===== COMPANIES MARQUEE ===== */
._companiesSection_1opl1_2 {
    padding: 30px 0;
    overflow: hidden;
}

._marqueeWrapper_1opl1_7 {
    width: 100%;
    overflow: hidden;
}

._marquee_1opl1_7 {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

._companyLogo_1opl1_29 {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    flex-shrink: 0;
}

/* Some source SVGs contain embedded raster blocks; global invert makes them appear as white boxes */
._companyLogo_1opl1_29[src*="coinpedia.svg"],
._companyLogo_1opl1_29[src*="coin-gape.svg"],
._companyLogo_1opl1_29[src*="techopedia.svg"] {
    filter: none;
    opacity: 1;
}

@media (max-width: 768px) {
    ._companiesSection_1opl1_2 { padding: 40px 0; }
    ._marquee_1opl1_7 { gap: 50px; }
    ._companyLogo_1opl1_29 { height: 30px; }
}

/* ===== ABOUT ===== */
._about_1opl1_52 {
    padding: 20px 0 75px;
    position: relative;
}

@media (max-width: 1200px) { ._about_1opl1_52 { padding: 20px 0 40px; } }

._container_1opl1_63 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

._chip_1opl1_75 {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #fff;
    letter-spacing: 0.05em;
}

._content_1opl1_88 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

@media (max-width: 1024px) { ._content_1opl1_88 { flex-direction: column; gap: 32px; } }

._leftContent_1opl1_102 { flex: 1; max-width: 700px; }
@media (max-width: 1024px) { ._leftContent_1opl1_102 { max-width: 100%; } }

._heading_1opl1_113 {
    font-size: 64px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

@media (max-width: 1200px) { ._heading_1opl1_113 { font-size: 48px; } }
@media (max-width: 768px) { ._heading_1opl1_113 { font-size: 36px; } }
@media (max-width: 480px) { ._heading_1opl1_113 { font-size: 28px; } }

._rightContent_1opl1_141 { flex: 1; max-width: 450px; padding-top: 20px; }
@media (max-width: 1024px) { ._rightContent_1opl1_141 { max-width: 100%; padding-top: 0; } }

._description_1opl1_154 {
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

@media (max-width: 768px) { ._description_1opl1_154 { font-size: 16px; } }

/* ===== ROADMAP ===== */
._roadmap_1mj8j_1 {
    padding: 130px 0;
    margin-top: 140px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 1366px) { ._roadmap_1mj8j_1 { padding: 25px 0; } }
@media (max-width: 768px) { ._roadmap_1mj8j_1 { padding-top: 20px; padding-bottom: 30px; margin-top: 0; } }
@media (max-width: 480px) { ._roadmap_1mj8j_1 { padding-bottom: 20px; } }

._headerSection_1mj8j_43 {
    position: relative;
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 0 40px;
    min-height: 600px;
}

@media (max-width: 1200px) { ._headerSection_1mj8j_43 { min-height: 500px; } }
@media (max-width: 768px) { ._headerSection_1mj8j_43 { padding: 0 20px; min-height: 350px; } }

._headerLeft_1mj8j_66 {
    position: absolute;
    left: 29px;
    top: 4%;
    transform: translateY(-50%);
    z-index: 5;
}

@media (max-width: 768px) {
    ._headerLeft_1mj8j_66 {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        text-align: center;
        width: 100%;
        margin-bottom: 10px;
    }
}

._heading_1mj8j_86 {
    font-size: 64px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: #fff;
}

@media (max-width: 1200px) { ._heading_1mj8j_86 { font-size: 48px; } }
@media (max-width: 768px) { ._heading_1mj8j_86 { font-size: 36px; margin-bottom: 22px; } }

._hoverButton_1mj8j_110 {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid #49B7FA;
    border-radius: 100px;
    background: transparent;
    color: #49b7fa;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

._hoverButton_1mj8j_110:hover { background: rgba(73,183,250,0.1); }

@media (max-width: 768px) {
    ._hoverButton_1mj8j_110 { padding: 10px 20px; font-size: 12px; margin-bottom: 12px; }
}

._circleRight_1mj8j_136 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    ._circleRight_1mj8j_136 {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        width: 100%;
        min-height: 350px;
    }
}

._saturnImage_1mj8j_157 {
    position: absolute;
    top: 31%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: auto;
    z-index: 3;
    cursor: pointer;
    transition: transform 0.3s ease;
}

._saturnImage_1mj8j_157:hover { transform: translate(-50%, -50%) scale(1.05); }

@media (max-width: 1200px) { ._saturnImage_1mj8j_157 { width: 150px; } }
@media (max-width: 768px) { ._saturnImage_1mj8j_157 { width: 140px; top: 34%; } }
@media (max-width: 480px) { ._saturnImage_1mj8j_157 { width: 110px; } }

._earthImage_1mj8j_192 {
    position: absolute;
    bottom: 45px;
    left: -22%;
    width: 300px;
    height: auto;
    z-index: 2;
    cursor: pointer;
    transition: transform 0.3s ease;
}

._earthImage_1mj8j_192:hover { transform: scale(1.05); }

@media (max-width: 1200px) { ._earthImage_1mj8j_192 { width: 175px; bottom: 75px; left: -8%; } }
@media (max-width: 768px) { ._earthImage_1mj8j_192 { width: 100px; bottom: 20px; left: 5%; } }
@media (max-width: 480px) { ._earthImage_1mj8j_192 { width: 100px; bottom: 64px; left: 22px; } }

._moonImage_1mj8j_207 {
    position: absolute;
    bottom: 102px;
    right: -13%;
    width: 250px;
    height: auto;
    z-index: 2;
    cursor: pointer;
    transition: transform 0.3s ease;
}

._moonImage_1mj8j_207:hover { transform: scale(1.05); }

@media (max-width: 1200px) { ._moonImage_1mj8j_207 { width: 175px; bottom: 75px; right: -8%; } }
@media (max-width: 768px) { ._moonImage_1mj8j_207 { width: 100px; bottom: 20px; right: 5%; } }
@media (max-width: 480px) { ._moonImage_1mj8j_207 { width: 100px; bottom: 58px; right: 27px; } }

/* Roadmap Info Boxes */
._infoBox_1mj8j_459 {
    position: absolute;
    padding: 20px 24px;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(70,50,100,0.9), rgba(50,35,75,0.95), rgba(60,45,85,0.9));
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(120,100,160,0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px rgba(255,255,255,0.08), inset 0 -1px rgba(0,0,0,0.2);
    z-index: 10;
    max-width: 280px;
    transition: all 0.3s ease;
    pointer-events: none;
}

._infoBoxEarth_1mj8j_479 { bottom: 10%; left: 19%; }
._infoBoxSaturn_1mj8j_485 { top: 42%; left: 50%; transform: translateX(-50%); }
._infoBoxMoon_1mj8j_492 { bottom: 10%; right: 22%; }

._infoContent_1mj8j_497 { display: flex; align-items: flex-start; gap: 16px; }
._infoNumber_1mj8j_503 { font-size: 28px; font-weight: 700; color: #49b7fa; line-height: 1; flex-shrink: 0; }
._infoText_1mj8j_511 { flex: 1; }
._infoTitle_1mj8j_515 { font-size: 16px; line-height: 1.3; font-weight: 600; margin-bottom: 8px; color: #fff; }

._infoItems_1mj8j_523 {
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255,255,255,0.7);
    margin: 0;
    padding: 0;
    list-style: none;
}

._infoItems_1mj8j_523 li { position: relative; padding-left: 12px; margin-bottom: 4px; }
._infoItems_1mj8j_523 li:before { content: "•"; position: absolute; left: 0; color: #49b7fa; }

@media (max-width: 1200px) {
    ._infoBox_1mj8j_459 { padding: 16px 20px; max-width: 240px; }
    ._infoBoxEarth_1mj8j_479 { bottom: 15%; left: -10%; }
    ._infoBoxSaturn_1mj8j_485 { top: 5%; left: 50%; transform: translateX(-50%); }
    ._infoBoxMoon_1mj8j_492 { bottom: 15%; right: -10%; }
    ._infoNumber_1mj8j_503 { font-size: 24px; }
    ._infoTitle_1mj8j_515 { font-size: 14px; }
    ._infoItems_1mj8j_523 { font-size: 11px; }
    ._infoItems_1mj8j_523 li { padding-left: 10px; margin-bottom: 3px; }
}

@media (max-width: 768px) {
    ._infoBox_1mj8j_459 { padding: 14px 18px; max-width: 180px; }
    ._infoBoxEarth_1mj8j_479 { bottom: 25%; left: 15%; }
    ._infoBoxSaturn_1mj8j_485 { top: 5%; left: 50%; transform: translateX(-50%); }
    ._infoBoxMoon_1mj8j_492 { bottom: 25%; right: 15%; }
    ._infoContent_1mj8j_497 { gap: 10px; }
    ._infoNumber_1mj8j_503 { font-size: 22px; }
    ._infoTitle_1mj8j_515 { font-size: 13px; margin-bottom: 6px; }
    ._infoItems_1mj8j_523 { font-size: 10px; line-height: 1.4; }
    ._infoItems_1mj8j_523 li { padding-left: 8px; margin-bottom: 2px; }
}

@media (max-width: 480px) {
    ._infoBox_1mj8j_459 { padding: 10px 12px; max-width: 149px; }
    ._infoBoxEarth_1mj8j_479, ._infoBoxSaturn_1mj8j_485, ._infoBoxMoon_1mj8j_492 {
        inset: auto auto 31% 121px;
        transform: none;
    }
    ._infoContent_1mj8j_497 { gap: 6px; }
    ._infoNumber_1mj8j_503 { font-size: 16px; }
    ._infoTitle_1mj8j_515 { font-size: 10px; margin-bottom: 4px; }
    ._infoItems_1mj8j_523 { font-size: 8px; line-height: 1.3; }
    ._infoItems_1mj8j_523 li { padding-left: 6px; margin-bottom: 1px; }
}

._dashedCircle_1mj8j_270 { max-width: 109%; height: auto; opacity: 0.5; }

@media (max-width: 1200px) { ._dashedCircle_1mj8j_270 { width: 550px; } }
@media (max-width: 768px) { ._dashedCircle_1mj8j_270 { width: 320px; } }
@media (max-width: 480px) { ._dashedCircle_1mj8j_270 { width: 280px; } }

/* ===== ROCKET ===== */
._rocketSection_17vye_1 {
    position: relative;
    height: 500px;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 150px;
}

._rocketWrapper_17vye_12 {
    position: relative;
    z-index: 10;
    will-change: transform;
    transition: transform 0.1s linear;
}

._rocket_17vye_1 {
    width: 620px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

@media (max-width: 1200px) {
    ._rocketSection_17vye_1 { height: 400px; }
    ._rocket_17vye_1 { width: 320px; }
}

@media (max-width: 768px) {
    ._rocketSection_17vye_1 { height: 180px; margin-top: 80px; margin-bottom: -10px; align-items: flex-end; }
    ._rocket_17vye_1 { width: 200px; }
}

@media (max-width: 480px) {
    ._rocketSection_17vye_1 { height: 150px; margin-top: 60px; margin-bottom: -20px; }
    ._rocket_17vye_1 { width: 160px; }
}

/* ===== HOW TO BUY ===== */
._howToBuy_1pibd_1 {
    padding: 130px 0;
    position: relative;
    overflow: hidden;
    margin-top: 50px;
    margin-bottom: 0;
    scroll-margin-top: 120px;
}

@media (max-width: 1200px) { ._howToBuy_1pibd_1 { padding: 60px 0; margin-top: 60px; } }
@media (max-width: 768px) { ._howToBuy_1pibd_1 { padding: 40px 0; margin-top: 40px; } }
@media (max-width: 480px) { ._howToBuy_1pibd_1 { padding: 30px 0; margin-top: 20px; } }
@media (max-width: 320px) { ._howToBuy_1pibd_1 { padding: 20px 0; margin-top: 10px; } }

._container_1pibd_71 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) { ._container_1pibd_71 { padding: 0 20px; } }
@media (max-width: 480px) { ._container_1pibd_71 { padding: 0 15px; } }

._header_1pibd_93 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    ._header_1pibd_93 { flex-direction: column; gap: 20px; text-align: center; margin-bottom: 20px; }
}

@media (max-width: 480px) { ._header_1pibd_93 { gap: 16px; margin-bottom: 10px; } }

._heading_1pibd_118 {
    font-size: 64px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

@media (max-width: 1200px) { ._heading_1pibd_118 { font-size: 48px; } }
@media (max-width: 768px) { ._heading_1pibd_118 { font-size: 36px; } }
@media (max-width: 480px) { ._heading_1pibd_118 { font-size: 28px; } }
@media (max-width: 320px) { ._heading_1pibd_118 { font-size: 24px; } }

._headerRight_1pibd_151 { display: flex; align-items: center; gap: 16px; }

._buyButton_1pibd_157 {
    background: #49b7fa;
    color: #101828;
    border-radius: 100px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.25s ease;
}

._buyButton_1pibd_157:hover { background: #3aa8eb; }

._navButtons_1pibd_171 { display: flex; gap: 6px; }

._navButton_1pibd_171 {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    padding: 0;
}

._navButton_1pibd_171:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

@media (max-width: 768px) {
    ._buyButton_1pibd_157 { padding: 12px 24px; font-size: 14px; }
    ._navButton_1pibd_171 { width: 38px; height: 38px; }
    ._navButton_1pibd_171 svg { width: 16px; height: 16px; }
}

@media (max-width: 480px) {
    ._buyButton_1pibd_157 { padding: 10px 20px; font-size: 13px; }
    ._navButton_1pibd_171 { width: 34px; height: 34px; }
    ._navButton_1pibd_171 svg { width: 14px; height: 14px; }
}

._content_1pibd_228 {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 512px;
    gap: 0;
}

@media (max-width: 1400px) { ._content_1pibd_228 { min-height: 470px; padding-top: 48px; } }
@media (max-width: 1200px) { ._content_1pibd_228 { min-height: 425px; padding-top: 38px; } }
@media (max-width: 900px) { ._content_1pibd_228 { flex-direction: column; min-height: auto; align-items: center; } }
@media (max-width: 768px) { ._content_1pibd_228 { min-height: auto; padding-top: 20px; } }
@media (max-width: 480px) { ._content_1pibd_228 { min-height: auto; padding-top: 10px; } }

._leftIcons_1pibd_275 {
    flex: 0 0 375px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    margin-right: -120px;
    position: relative;
    z-index: 3;
    align-self: flex-end;
    padding-bottom: 170px;
}

._floatingIcon1_1pibd_288 {
    width: 590px;
    height: auto;
    animation: _floatUpDown 4s ease-in-out infinite;
    transition: opacity 0.3s ease;
}

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

@media (max-width: 1400px) {
    ._leftIcons_1pibd_275 { flex: 0 0 325px; margin-right: -190px; padding-bottom: 95px; }
    ._floatingIcon1_1pibd_288 { width: 500px; }
}

@media (max-width: 1200px) {
    ._leftIcons_1pibd_275 { flex: 0 0 265px; margin-right: -150px; padding-bottom: 75px; }
    ._floatingIcon1_1pibd_288 { width: 425px; }
}

@media (max-width: 900px) { ._leftIcons_1pibd_275 { display: none; } }

._monitorSection_1pibd_333 {
    position: relative;
    flex: 0 0 auto;
    margin-top: 40px;
    margin-left: -328px;
}

@media (max-width: 900px) { ._monitorSection_1pibd_333 { margin-left: 0; margin-top: 20px; } }
@media (max-width: 480px) { ._monitorSection_1pibd_333 { margin-top: 10px; } }

._monitorWrapper_1pibd_412 { position: relative; z-index: 2; }

._monitor_1pibd_333 { width: 875px; height: auto; display: block; }

@media (max-width: 1400px) { ._monitor_1pibd_333 { width: 700px; } }
@media (max-width: 1200px) { ._monitor_1pibd_333 { width: 560px; } }
@media (max-width: 768px) { ._monitor_1pibd_333 { width: 100%; max-width: 420px; } }
@media (max-width: 480px) { ._monitor_1pibd_333 { width: 100%; max-width: 320px; } }
@media (max-width: 320px) { ._monitor_1pibd_333 { max-width: 280px; } }

._screenCard_1pibd_456 {
    position: absolute;
    top: 22%;
    left: 50%;
    transform: translateX(-50%);
    background: #f8f9fa;
    border-radius: 12px;
    padding: 38px 48px;
    text-align: center;
    width: 64%;
    height: 39%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
    transition: all 0.3s ease;
}

@media (max-width: 1400px) { ._screenCard_1pibd_456 { padding: 32px 38px; } }
@media (max-width: 1200px) { ._screenCard_1pibd_456 { padding: 26px 30px; } }
@media (max-width: 768px) { ._screenCard_1pibd_456 { padding: 18px 22px; } }
@media (max-width: 480px) { ._screenCard_1pibd_456 { padding: 10px 12px; border-radius: 6px; } }

._rightCard_1pibd_501 {
    display: flex;
    align-items: flex-start;
    margin-left: -38px;
    padding-top: 75px;
    z-index: 1;
}

._previewCard_1pibd_509 {
    background: #fff;
    border-radius: 10px;
    padding: 25px 62px;
    text-align: center;
    width: 524px;
    height: 348px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: absolute;
    top: 26%;
}

._previewCard_1pibd_509:hover { transform: translateY(-5px); box-shadow: 0 15px 50px rgba(0,0,0,0.15); }

@media (max-width: 1400px) {
    ._rightCard_1pibd_501 { margin-left: -28px; padding-top: 65px; }
    ._previewCard_1pibd_509 { padding: 20px 50px; width: 438px; height: 225px; }
}

@media (max-width: 1200px) {
    ._rightCard_1pibd_501 { margin-left: -19px; padding-top: 56px; }
    ._previewCard_1pibd_509 { padding: 18px 38px; width: 350px; height: 188px; }
}

@media (max-width: 900px) { ._rightCard_1pibd_501 { display: none; } }

._stepNumber_1pibd_561 {
    display: block;
    font-size: 52px;
    font-weight: 700;
    color: #49b7fa;
    margin-bottom: 15px;
}

@media (max-width: 1400px) { ._stepNumber_1pibd_561 { font-size: 45px; } }
@media (max-width: 1200px) { ._stepNumber_1pibd_561 { font-size: 38px; } }
@media (max-width: 768px) { ._stepNumber_1pibd_561 { font-size: 25px; margin-bottom: 8px; } }
@media (max-width: 480px) { ._stepNumber_1pibd_561 { font-size: 18px; margin-bottom: 4px; } }

._cardTitle_1pibd_595 {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;
    color: #101828;
    margin-bottom: 18px;
}

@media (max-width: 1400px) { ._cardTitle_1pibd_595 { font-size: 26px; } }
@media (max-width: 1200px) { ._cardTitle_1pibd_595 { font-size: 15px; } }
@media (max-width: 768px) { ._cardTitle_1pibd_595 { font-size: 17px; margin-bottom: 10px; } }
@media (max-width: 480px) { ._cardTitle_1pibd_595 { font-size: 12px; margin-bottom: 6px; } }

._cardDescription_1pibd_629 {
    font-size: 15px;
    line-height: 1.6;
    color: #667085;
    max-width: 85%;
}

@media (max-width: 1400px) { ._cardDescription_1pibd_629 { font-size: 13px; } }
@media (max-width: 1200px) { ._cardDescription_1pibd_629 { font-size: 11px; } }
@media (max-width: 768px) { ._cardDescription_1pibd_629 { font-size: 12px; line-height: 1.4; } }
@media (max-width: 480px) { ._cardDescription_1pibd_629 { font-size: 9px; line-height: 1.3; max-width: 95%; } }

._disabled_1pibd_664 { opacity: 0.4; cursor: not-allowed; pointer-events: none; }

._dashedArrow_1pibd_671 {
    position: absolute;
    bottom: 212px;
    left: 71%;
    transform: translateX(100px);
    z-index: 1;
    width: 200px;
    height: 65px;
}

@media (max-width: 1200px) { ._dashedArrow_1pibd_671 { width: 160px; height: 80px; bottom: 180px; } }
@media (max-width: 900px) { ._dashedArrow_1pibd_671 { display: none; } }

/* ===== TOKENOMICS ===== */
._tokenomics_8hkg6_1 {
    padding: 130px 0;
    position: relative;
    overflow: hidden;
}

._tokenomics_8hkg6_1:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, transparent 49.5%, rgba(255,255,255,0.1) 49.5%, rgba(255,255,255,0.1) 50.5%, transparent 50.5%),
        linear-gradient(45deg, transparent 49.5%, rgba(255,255,255,0.1) 49.5%, rgba(255,255,255,0.1) 50.5%, transparent 50.5%);
    background-size: 120px 120px, 120px 120px;
    pointer-events: none;
    z-index: 0;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 35%, black 65%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 35%, black 65%, transparent 100%);
}

@media (max-width: 1366px) { ._tokenomics_8hkg6_1 { padding: 25px 0; } }

@media (max-width: 768px) {
    ._tokenomics_8hkg6_1 { padding: 60px 0; margin-top: 200px; }
    ._tokenomics_8hkg6_1:before { display: none; }
}

@media (max-width: 480px) { ._tokenomics_8hkg6_1 { padding: 50px 0; margin-top: 280px; } }
@media (max-width: 360px) { ._tokenomics_8hkg6_1 { padding: 40px 0; margin-top: 250px; } }

._container_8hkg6_55 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

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

._header_8hkg6_69 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

@media (max-width: 1366px) { ._header_8hkg6_69 { margin-bottom: 40px; } }
@media (max-width: 768px) { ._header_8hkg6_69 { flex-direction: column; gap: 30px; } }

._heading_8hkg6_89 {
    font-size: 64px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

@media (max-width: 1200px) { ._heading_8hkg6_89 { font-size: 48px; } }
@media (max-width: 768px) { ._heading_8hkg6_89 { font-size: 36px; } }

._tokenInfo_8hkg6_111 { display: flex; gap: 50px; }
@media (max-width: 768px) { ._tokenInfo_8hkg6_111 { gap: 30px; } }

._tokenInfoItem_8hkg6_122 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

._tokenInfoLabel_8hkg6_129 {
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.02em;
}

._tokenInfoLine_8hkg6_136 { width: 60px; height: 1px; background: #fff; margin: 4px 0; }

._tokenInfoValue_8hkg6_143 { font-size: 28px; font-weight: 700; color: #fff; }

@media (max-width: 768px) {
    ._tokenInfoLabel_8hkg6_129 { font-size: 14px; }
    ._tokenInfoValue_8hkg6_143 { font-size: 20px; }
    ._tokenInfoLine_8hkg6_136 { width: 40px; }
}

._contentWrapper_8hkg6_162 { position: relative; padding: 40px 0; }

._content_8hkg6_162 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1200px) { ._content_8hkg6_162 { gap: 40px; } }
@media (max-width: 900px) { ._content_8hkg6_162 { flex-direction: column; gap: 40px; } }

._chartWrapper_8hkg6_192 {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

._pieChartImage_8hkg6_199 {
    width: 720px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

@media (max-width: 1200px) { ._pieChartImage_8hkg6_199 { width: 400px; } }
@media (max-width: 768px) { ._pieChartImage_8hkg6_199 { width: 300px; } }
@media (max-width: 480px) { ._pieChartImage_8hkg6_199 { width: 311px; } }

._leftLegend_8hkg6_224, ._rightLegend_8hkg6_225 {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (max-width: 900px) {
    ._leftLegend_8hkg6_224, ._rightLegend_8hkg6_225 {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

._legendItem_8hkg6_241 { display: flex; align-items: center; gap: 16px; }

._legendColor_8hkg6_247 { width: 20px; height: 20px; border-radius: 6px; flex-shrink: 0; }

._legendText_8hkg6_254 { display: flex; flex-direction: column; gap: 2px; }

._legendPercentage_8hkg6_260 { font-size: 28px; font-weight: 700; color: #fff; line-height: 1; }

@media (max-width: 1200px) { ._legendPercentage_8hkg6_260 { font-size: 24px; } }
@media (max-width: 768px) { ._legendPercentage_8hkg6_260 { font-size: 20px; } }

._legendLabel_8hkg6_279 { font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.7); }
@media (max-width: 768px) { ._legendLabel_8hkg6_279 { font-size: 14px; } }

/* ===== FAQs ===== */
._faq_ew65z_1 {
    margin-top: -30px !important;
    padding-top: 0 !important;
    position: relative;
}

@media (max-width: 1366px) { ._faq_ew65z_1 { padding: 0 0 30px; margin-top: -10px; } }
@media (max-width: 768px) { ._faq_ew65z_1 { padding: 0 0 20px; margin-top: 0; } }

._container_ew65z_22 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

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

._header_ew65z_33 {
    text-align: center;
    margin-top: 0 !important;
    padding-top: 0 !important;
    margin-bottom: 20px;
}

@media (max-width: 1366px) { ._header_ew65z_33 { margin-bottom: 20px; } }
@media (max-width: 768px) { ._header_ew65z_33 { margin-bottom: 10px; } }

._heading_ew65z_52 {
    font-size: 64px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
    margin-top: 0;
}

@media (max-width: 1200px) { ._heading_ew65z_52 { font-size: 48px; } }
@media (max-width: 768px) { ._heading_ew65z_52 { font-size: 36px; margin-bottom: 8px; } }
@media (max-width: 480px) { ._heading_ew65z_52 { font-size: 28px; } }

._subtitle_ew65z_95 {
    font-size: 32px;
    font-weight: 600;
    color: #49b7fa;
    margin-bottom: 8px;
}

@media (max-width: 768px) { ._subtitle_ew65z_95 { font-size: 24px; margin-bottom: 5px; } }

._subheading_ew65z_110 { font-size: 18px; line-height: 1.5; color: rgba(255,255,255,0.7); }
@media (max-width: 768px) { ._subheading_ew65z_110 { font-size: 16px; } }

._grid_ew65z_122 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 60px;
}

@media (max-width: 1100px) { ._grid_ew65z_122 { grid-template-columns: repeat(2, 1fr); gap: 30px; } }
@media (max-width: 700px) { ._grid_ew65z_122 { grid-template-columns: 1fr; gap: 25px; } }

._faqItem_ew65z_143 { text-align: center; }

._iconWrapper_ew65z_147 {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #49b7fa;
    border-radius: 12px;
}

._icon_ew65z_147 { width: 28px; height: 28px; filter: brightness(0) invert(1); }

._question_ew65z_165 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 12px;
}

@media (max-width: 768px) { ._question_ew65z_165 { font-size: 20px; margin-bottom: 8px; } }

._answer_ew65z_83 {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    max-width: 100%;
    margin: 0 auto;
}

@media (max-width: 768px) { ._answer_ew65z_83 { font-size: 15px; } }

/* ===== FOOTER ===== */
._footer_av8mu_1 {
    padding: 40px 0 20px;
    position: relative;
    overflow: hidden;
}

._container_av8mu_7 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    ._footer_av8mu_1 { padding: 40px 0 20px; margin-top: 20px; }
    ._container_av8mu_7 { padding: 0 20px; }
}

._cloudLeft1_av8mu_28 {
    position: absolute;
    left: 50px;
    top: 10%;
    pointer-events: none;
    animation: _cloudFloat1 6s ease-in-out infinite;
}

._cloudLeft1_av8mu_28 img { width: 550px; height: auto; }

._cloudLeft2_av8mu_41 {
    position: absolute;
    left: 100px;
    top: 28%;
    pointer-events: none;
    animation: _cloudFloat2 8s ease-in-out infinite;
}

._cloudLeft2_av8mu_41 img { width: 480px; height: auto; }

._cloudRight1_av8mu_54 {
    position: absolute;
    right: 358px;
    top: 18%;
    pointer-events: none;
    animation: _cloudFloat1 7s ease-in-out infinite;
}

._cloudRight1_av8mu_54 img { width: 520px; height: auto; }

._cloudRight2_av8mu_67 {
    position: absolute;
    right: 120px;
    top: 27%;
    pointer-events: none;
    animation: _cloudFloat2 5s ease-in-out infinite;
}

._cloudRight2_av8mu_67 img { width: 450px; height: auto; }

._cloudBottomRight_av8mu_80 {
    position: absolute;
    right: 19%;
    bottom: 35%;
    pointer-events: none;
    animation: _cloudFloat1 6s ease-in-out infinite;
}

._cloudBottomRight_av8mu_80 img { width: 380px; height: auto; }

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

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

@media (max-width: 1200px) {
    ._cloudLeft1_av8mu_28 img, ._cloudLeft2_av8mu_41 img,
    ._cloudRight1_av8mu_54 img, ._cloudRight2_av8mu_67 img { width: 300px; }
    ._cloudBottomRight_av8mu_80 img { width: 200px; }
    ._cloudRight1_av8mu_54 { right: 530px; top: 29%; }
    ._cloudBottomRight_av8mu_80 { right: 7%; bottom: 50%; }
}

._cloudMobileRight_av8mu_111 { display: none; }

@media (max-width: 768px) {
    ._cloudLeft1_av8mu_28, ._cloudLeft2_av8mu_41,
    ._cloudRight1_av8mu_54, ._cloudRight2_av8mu_67,
    ._cloudBottomRight_av8mu_80, ._cloudMobileRight_av8mu_111 { display: none; }
}

._mobileCloudsWrapper_av8mu_122 { display: none; }

@media (max-width: 768px) {
    ._mobileCloudsWrapper_av8mu_122 {
        display: block;
        position: relative;
        width: 100%;
        height: 120px;
        margin-top: 20px;
        margin-bottom: 20px;
        z-index: 3;
    }
    ._mobileCloudLeft_av8mu_137 {
        position: absolute;
        left: 0%;
        top: -85px;
        width: 400px;
        height: auto;
        animation: _cloudFloat1 6s ease-in-out infinite;
    }
    ._mobileCloudRight_av8mu_146 {
        position: absolute;
        right: -110px;
        top: -90px;
        width: 450px;
        height: auto;
        animation: _cloudFloat2 8s ease-in-out infinite;
    }
    ._mobileCloudCenter_av8mu_155 {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: -90px;
        width: 55%;
        height: auto;
        animation: _cloudFloat1 7s ease-in-out infinite;
    }
}

._contactCard_av8mu_167 {
    border-radius: 24px;
    padding: 50px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: visible;
    margin-bottom: 60px;
    min-height: 260px;
    z-index: 50;
}

._nightSky_av8mu_180 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    border-radius: 24px;
}

@media (max-width: 900px) {
    ._contactCard_av8mu_167 { flex-direction: column; text-align: center; padding: 40px 30px; margin-bottom: 30px; }
}

@media (max-width: 768px) {
    ._contactCard_av8mu_167 { overflow: visible; position: relative; padding: 30px 20px; min-height: auto; margin-bottom: 50px; }
}

._contactContent_av8mu_210 { max-width: 500px; position: relative; z-index: 2; text-align: center; }

._contactHeading_av8mu_217 { font-size: 36px; font-weight: 700; color: #fff; margin-bottom: 12px; }

@media (max-width: 768px) { ._contactHeading_av8mu_217 { font-size: 28px; } }

._contactDescription_av8mu_230 { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 24px; }

._contactButton_av8mu_236 {
    display: inline-block;
    background: #49b7fa;
    color: #101828;
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.25s ease;
}

._contactButton_av8mu_236:hover { background: #3aa8eb; }

._astronaut_av8mu_251 {
    position: absolute;
    right: 0;
    bottom: -160px;
    z-index: 10;
    animation: _astronautFloat 4s ease-in-out infinite;
}

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

._astronaut_av8mu_251 img { width: 320px; height: auto; }

@media (max-width: 1200px) { ._astronaut_av8mu_251 img { width: 260px; } }

@media (max-width: 900px) {
    ._astronaut_av8mu_251 { position: relative; right: auto; bottom: auto; }
    ._astronaut_av8mu_251 img { width: 180px; margin-top: 20px; }
}

@media (max-width: 768px) {
    ._astronaut_av8mu_251 { position: absolute; right: -15px; bottom: -65px; z-index: 10; }
    ._astronaut_av8mu_251 img { width: 100px; margin-top: 0; }
}

._newsletterSection_av8mu_299 {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 50px;
    margin-top: 284px;
}

@media (max-width: 900px) {
    ._newsletterSection_av8mu_299 { flex-direction: column; align-items: center; gap: 24px; margin-top: 15px; }
}

@media (max-width: 768px) { ._newsletterSection_av8mu_299 { margin-top: 40px; } }

._newsletterText_av8mu_323 { max-width: 400px; }

._newsletterHeading_av8mu_327 { font-size: 24px; font-weight: 700; margin-bottom: 8px; color: #fff; }

@media (max-width: 600px) { ._newsletterHeading_av8mu_327 { font-size: 20px; } }

._newsletterDescription_av8mu_338 { font-size: 16px; color: rgba(255,255,255,0.7); }

._newsletterForm_av8mu_343 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    width: 100%;
}

._inputWrapper_av8mu_351 { display: flex; gap: 12px; }

._emailInput_av8mu_356 {
    flex: 1;
    padding: 16px 20px;
    background: #fff;
    border: none;
    border-radius: 8px;
    color: #101828;
    font-size: 16px;
    outline: none;
}

._emailInput_av8mu_356::placeholder { color: #667085; }

._submitButton_av8mu_369 {
    width: 52px;
    height: 52px;
    background: #49b7fa;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background-color 0.25s ease;
    flex-shrink: 0;
}

._submitButton_av8mu_369:hover { background: #3aa8eb; }

._checkboxLabel_av8mu_384 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
}

._checkbox_av8mu_384 { width: 16px; height: 16px; cursor: pointer; }

._termsLink_av8mu_394 { color: #fff; text-decoration: underline; }

._bottomSection_av8mu_397 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
    padding-bottom: 30px;
}

@media (max-width: 900px) {
    ._bottomSection_av8mu_397 { flex-direction: column; align-items: center; text-align: center; gap: 24px; }
}

@media (max-width: 768px) {
    ._bottomSection_av8mu_397 { flex-direction: column; align-items: flex-start; text-align: left; gap: 24px; }
}

._logoSection_av8mu_424 a { display: inline-block; }

._navLinks_av8mu_426 { display: flex; gap: 32px; flex-wrap: wrap; }

@media (max-width: 900px) { ._navLinks_av8mu_426 { justify-content: center; gap: 20px; } }
@media (max-width: 768px) { ._navLinks_av8mu_426 { justify-content: flex-start; gap: 40px; margin-left: 15px; } }
@media (max-width: 600px) { ._navLinks_av8mu_426 { flex-direction: column; gap: 12px; } }

._navLinks_av8mu_426 a {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

._navLinks_av8mu_426 a:hover { opacity: 1; }

._socialLinks_av8mu_461 { display: flex; gap: 16px; }

@media (max-width: 768px) { ._socialLinks_av8mu_461 { justify-content: flex-start; margin-left: 15px; } }

._socialLinks_av8mu_461 a { display: flex; transition: opacity 0.3s ease; }
._socialLinks_av8mu_461 a:hover { opacity: 0.8; }

._copyright_av8mu_481 { text-align: center; padding-top: 10px; }
._copyright_av8mu_481 p { font-size: 14px; color: rgba(255,255,255,0.6); }

/* ===== ORBITAL DIVIDEND SYSTEM (HOLDER REWARDS) ===== */
.orbital-section {
    position: relative;
    padding: 80px 0 60px;
    overflow: hidden;
}

.orbital-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.orbital-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 5;
}

.orbital-title {
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: #fff;
}

.orbital-accent {
    background: linear-gradient(135deg, #49b7fa 0%, #a855f7 50%, #49b7fa 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: orbitalShimmer 3s ease-in-out infinite;
}

@keyframes orbitalShimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
}

.orbital-subtitle {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    color: #94a3b8;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* ─── Solar System Container ─── */
.orbital-system {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbital-stars {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.orbital-nebula {
    position: absolute;
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    background: radial-gradient(ellipse at center, rgba(73,183,250,0.06) 0%, rgba(168,85,247,0.04) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: nebulaPulse 8s ease-in-out infinite;
}

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

/* ─── Orbit Rings ─── */
.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(73,183,250,0.12);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    transition: border-color 0.5s ease, box-shadow 0.5s ease;
}

.orbit-ring-1 { width: 30%; height: 30%; animation: orbitRingSpin 60s linear infinite; }
.orbit-ring-2 { width: 48%; height: 48%; animation: orbitRingSpin 80s linear infinite reverse; }
.orbit-ring-3 { width: 68%; height: 68%; animation: orbitRingSpin 100s linear infinite; }
.orbit-ring-4 { width: 88%; height: 88%; animation: orbitRingSpin 120s linear infinite reverse; }

@keyframes orbitRingSpin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-ring.ring-active {
    border-color: rgba(73,183,250,0.4);
    box-shadow: 0 0 20px rgba(73,183,250,0.1);
}

/* ─── Central Sun ─── */
.orbital-sun {
    position: absolute;
    width: 12%;
    height: 12%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sun-core {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #7dd3fc, #49b7fa, #2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(14px, 2.5vw, 28px);
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.8);
    box-shadow: 0 0 30px rgba(73,183,250,0.6), 0 0 60px rgba(73,183,250,0.3), 0 0 100px rgba(73,183,250,0.15);
    z-index: 3;
    position: relative;
}

.sun-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(73,183,250,0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: sunPulse 3s ease-in-out infinite;
}

.sun-ring-1 { width: 140%; height: 140%; animation-delay: 0s; }
.sun-ring-2 { width: 180%; height: 180%; animation-delay: 0.5s; border-color: rgba(73,183,250,0.2); }
.sun-ring-3 { width: 220%; height: 220%; animation-delay: 1s; border-color: rgba(73,183,250,0.1); }

@keyframes sunPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.5; }
}

/* ─── Orbit Paths (hold the rotating bodies) ─── */
.orbit-path {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    z-index: 4;
    pointer-events: none;
}

.orbit-path-1 {
    width: 30%;
    height: 30%;
    transform: translate(-50%, -50%);
    animation: orbitRotate1 20s linear infinite;
}

.orbit-path-2 {
    width: 48%;
    height: 48%;
    transform: translate(-50%, -50%);
    animation: orbitRotate2 30s linear infinite;
}

.orbit-path-3 {
    width: 68%;
    height: 68%;
    transform: translate(-50%, -50%);
    animation: orbitRotate3 42s linear infinite;
}

.orbit-path-4 {
    width: 88%;
    height: 88%;
    transform: translate(-50%, -50%);
    animation: orbitRotate4 56s linear infinite;
}

@keyframes orbitRotate1 {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes orbitRotate2 {
    0% { transform: translate(-50%, -50%) rotate(60deg); }
    100% { transform: translate(-50%, -50%) rotate(420deg); }
}
@keyframes orbitRotate3 {
    0% { transform: translate(-50%, -50%) rotate(150deg); }
    100% { transform: translate(-50%, -50%) rotate(510deg); }
}
@keyframes orbitRotate4 {
    0% { transform: translate(-50%, -50%) rotate(240deg); }
    100% { transform: translate(-50%, -50%) rotate(600deg); }
}

/* ─── Celestial Bodies ─── */
.celestial-body {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    pointer-events: all;
    z-index: 5;
    transition: filter 0.4s ease;
}

/* Counter-rotate bodies so they stay upright */
.orbit-path-1 .celestial-body { animation: counterRotate1 20s linear infinite; }
.orbit-path-2 .celestial-body { animation: counterRotate2 30s linear infinite; }
.orbit-path-3 .celestial-body { animation: counterRotate3 42s linear infinite; }
.orbit-path-4 .celestial-body { animation: counterRotate4 56s linear infinite; }

@keyframes counterRotate1 {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(-360deg); }
}
@keyframes counterRotate2 {
    0% { transform: translate(-50%, -50%) rotate(-60deg); }
    100% { transform: translate(-50%, -50%) rotate(-420deg); }
}
@keyframes counterRotate3 {
    0% { transform: translate(-50%, -50%) rotate(-150deg); }
    100% { transform: translate(-50%, -50%) rotate(-510deg); }
}
@keyframes counterRotate4 {
    0% { transform: translate(-50%, -50%) rotate(-240deg); }
    100% { transform: translate(-50%, -50%) rotate(-600deg); }
}

.body-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.4s ease;
}

.body-core {
    position: relative;
    border-radius: 50%;
    transition: transform 0.4s ease;
}

/* Bronze - Rocky Asteroid */
.body-bronze {
    width: clamp(28px, 4.5vw, 38px);
    height: clamp(28px, 4.5vw, 38px);
}

.body-bronze .body-glow {
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(205,127,50,0.25) 0%, transparent 70%);
}

.body-bronze .body-core {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 35% 35%, #e8a860, #cd7f32, #8b5a2b);
    border-radius: 40% 50% 45% 55% / 55% 40% 50% 45%;
    box-shadow: 0 0 15px rgba(205,127,50,0.4), inset -3px -3px 8px rgba(0,0,0,0.4), inset 2px 2px 5px rgba(255,200,120,0.3);
}

.body-bronze .asteroid-surface {
    position: absolute;
    width: 35%;
    height: 35%;
    top: 25%;
    left: 20%;
    border-radius: 50%;
    background: rgba(139,90,43,0.6);
    box-shadow: 8px 4px 0 2px rgba(100,60,20,0.3);
}

/* Silver - Moon */
.body-silver {
    width: clamp(34px, 5.5vw, 48px);
    height: clamp(34px, 5.5vw, 48px);
}

.body-silver .body-glow {
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(192,192,192,0.25) 0%, transparent 70%);
}

.body-silver .body-core {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 35% 35%, #f0f0f0, #c0c0c0, #808080);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(192,192,192,0.4), inset -4px -4px 10px rgba(0,0,0,0.3), inset 3px 3px 6px rgba(255,255,255,0.3);
}

.body-silver .moon-surface {
    position: absolute;
    width: 25%;
    height: 25%;
    top: 30%;
    left: 30%;
    border-radius: 50%;
    background: rgba(100,100,100,0.4);
    box-shadow: 10px 2px 0 1px rgba(80,80,80,0.3), -4px 8px 0 3px rgba(90,90,90,0.25);
}

/* Gold - Saturn-like */
.body-gold {
    width: clamp(40px, 6.5vw, 56px);
    height: clamp(40px, 6.5vw, 56px);
}

.body-gold .body-glow {
    width: 250%;
    height: 250%;
    top: -75%;
    left: -75%;
    background: radial-gradient(circle, rgba(255,215,0,0.2) 0%, transparent 70%);
}

.body-gold .body-core {
    width: 100%;
    height: 100%;
    position: relative;
}

.body-gold .saturn-body {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #ffe066, #ffd700, #b8860b);
    box-shadow: 0 0 25px rgba(255,215,0,0.4), inset -4px -4px 12px rgba(0,0,0,0.3), inset 3px 3px 8px rgba(255,255,200,0.4);
}

.body-gold .saturn-ring-el {
    position: absolute;
    width: 170%;
    height: 40%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(70deg);
    border: 2px solid rgba(255,215,0,0.4);
    border-radius: 50%;
    pointer-events: none;
    box-shadow: 0 0 8px rgba(255,215,0,0.2);
}

/* Diamond - Crystal */
.body-diamond {
    width: clamp(46px, 7.5vw, 64px);
    height: clamp(46px, 7.5vw, 64px);
}

.body-diamond .body-glow {
    width: 280%;
    height: 280%;
    top: -90%;
    left: -90%;
    background: radial-gradient(circle, rgba(185,242,255,0.25) 0%, rgba(73,183,250,0.1) 40%, transparent 70%);
}

.body-diamond .body-core {
    width: 100%;
    height: 100%;
    position: relative;
}

.body-diamond .crystal-body {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, #e0f7ff, #b9f2ff, #7dd3fc, #49b7fa);
    clip-path: polygon(50% 0%, 85% 20%, 100% 55%, 80% 90%, 50% 100%, 20% 90%, 0% 55%, 15% 20%);
    box-shadow: 0 0 30px rgba(185,242,255,0.5);
    animation: crystalShine 4s ease-in-out infinite;
}

.body-diamond .crystal-refraction {
    position: absolute;
    inset: 15%;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 40%, rgba(168,85,247,0.2) 60%, transparent 80%, rgba(255,255,255,0.3) 100%);
    clip-path: polygon(50% 0%, 85% 20%, 100% 55%, 80% 90%, 50% 100%, 20% 90%, 0% 55%, 15% 20%);
    pointer-events: none;
    animation: refractionRotate 6s linear infinite;
}

@keyframes crystalShine {
    0%, 100% { filter: brightness(1) saturate(1); }
    50% { filter: brightness(1.3) saturate(1.2); }
}

@keyframes refractionRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Body Trails */
.body-trail {
    position: absolute;
    width: 150%;
    height: 4px;
    right: 60%;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    opacity: 0.4;
}

.body-bronze .body-trail {
    background: linear-gradient(to left, rgba(205,127,50,0.6), transparent);
}
.body-silver .body-trail {
    background: linear-gradient(to left, rgba(192,192,192,0.6), transparent);
}
.body-gold .body-trail {
    background: linear-gradient(to left, rgba(255,215,0,0.6), transparent);
}
.body-diamond .body-trail {
    background: linear-gradient(to left, rgba(185,242,255,0.6), transparent);
}

/* ─── Hover/Active States ─── */
.celestial-body:hover .body-core,
.celestial-body.active .body-core {
    transform: scale(1.4);
}

.celestial-body:hover .body-glow,
.celestial-body.active .body-glow {
    transform: scale(1.3);
    opacity: 1.5;
}

.orbital-system.has-active .celestial-body:not(.active) {
    filter: brightness(0.4) saturate(0.5);
}

.orbital-system.has-active .celestial-body.active {
    filter: brightness(1.2);
}

/* Pause orbit on hover for clickability */
.celestial-body:hover ~ .body-trail,
.celestial-body.active ~ .body-trail {
    opacity: 0.8;
}

/* ─── Info Panel ─── */
.orbital-info-panel {
    position: absolute;
    z-index: 20;
    background: linear-gradient(145deg, rgba(10,15,30,0.92), rgba(20,25,50,0.95));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(73,183,250,0.2);
    border-radius: 16px;
    padding: 20px 24px;
    min-width: 220px;
    max-width: 260px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 60px rgba(73,183,250,0.08);
}

.orbital-info-panel.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.orbital-info-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(73,183,250,0.3), transparent, rgba(168,85,247,0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.info-panel-badge {
    font-size: 2.4rem;
    line-height: 1;
    margin-bottom: 4px;
}

.info-panel-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
}

.info-panel-name.tier-bronze { color: #cd7f32; }
.info-panel-name.tier-silver { color: #c0c0c0; }
.info-panel-name.tier-gold { color: #ffd700; }
.info-panel-name.tier-diamond { color: #b9f2ff; }

.info-panel-divider {
    width: 50px;
    height: 2px;
    margin: 10px 0 14px;
    background: linear-gradient(90deg, #49b7fa, rgba(168,85,247,0.5), transparent);
    border-radius: 2px;
}

.info-panel-stat {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.info-label {
    font-size: 0.95rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    margin-bottom: 2px;
}

.info-value {
    font-size: 1.3rem;
    font-weight: 600;
    color: #e2e8f0;
}

.info-value.info-highlight {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #49b7fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-value.info-cost {
    color: #49b7fa;
    font-size: 1.2rem;
}

.info-panel-footer {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(73,183,250,0.1);
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
}

/* ─── Mobile Layout ─── */
.orbital-mobile {
    display: none;
    flex-direction: column;
    gap: 16px;
}

.mobile-tier-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(10,15,30,0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(73,183,250,0.12);
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.mobile-tier-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(73,183,250,0.15), transparent, rgba(168,85,247,0.15));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.mobile-tier-card.expanded {
    border-color: rgba(73,183,250,0.3);
    box-shadow: 0 8px 40px rgba(73,183,250,0.1);
}

.mtc-planet {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mtc-body {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    position: relative;
    animation: mtcFloat 4s ease-in-out infinite;
}

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

.mtc-glow {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    border-radius: 50%;
    pointer-events: none;
}

.mtc-bronze {
    background: radial-gradient(circle at 35% 35%, #e8a860, #cd7f32, #8b5a2b);
    border-radius: 40% 50% 45% 55% / 55% 40% 50% 45%;
    box-shadow: 0 0 15px rgba(205,127,50,0.4);
}
.mtc-bronze .mtc-glow { background: radial-gradient(circle, rgba(205,127,50,0.2) 0%, transparent 70%); }

.mtc-silver {
    background: radial-gradient(circle at 35% 35%, #f0f0f0, #c0c0c0, #808080);
    box-shadow: 0 0 15px rgba(192,192,192,0.4);
}
.mtc-silver .mtc-glow { background: radial-gradient(circle, rgba(192,192,192,0.2) 0%, transparent 70%); }

.mtc-gold {
    background: radial-gradient(circle at 35% 35%, #ffe066, #ffd700, #b8860b);
    box-shadow: 0 0 15px rgba(255,215,0,0.4);
}
.mtc-gold .mtc-glow { background: radial-gradient(circle, rgba(255,215,0,0.2) 0%, transparent 70%); }
.mtc-saturn-ring {
    position: absolute;
    width: 140%;
    height: 35%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(70deg);
    border: 2px solid rgba(255,215,0,0.35);
    border-radius: 50%;
    pointer-events: none;
}

.mtc-diamond {
    background: radial-gradient(circle at 30% 30%, #e0f7ff, #b9f2ff, #7dd3fc);
    clip-path: polygon(50% 0%, 85% 20%, 100% 55%, 80% 90%, 50% 100%, 20% 90%, 0% 55%, 15% 20%);
    box-shadow: none;
    animation: mtcFloat 4s ease-in-out infinite, crystalShine 4s ease-in-out infinite;
}
.mtc-diamond .mtc-glow { background: radial-gradient(circle, rgba(185,242,255,0.2) 0%, transparent 70%); }
.mtc-crystal {
    position: absolute;
    inset: 20%;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 50%, rgba(168,85,247,0.15) 100%);
    clip-path: polygon(50% 0%, 85% 20%, 100% 55%, 80% 90%, 50% 100%, 20% 90%, 0% 55%, 15% 20%);
    pointer-events: none;
    animation: refractionRotate 6s linear infinite;
}

.mtc-info {
    flex: 1;
    min-width: 0;
}

.mtc-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mtc-emoji {
    font-size: 1.8rem;
    line-height: 1;
}

.mtc-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.mtc-name-bronze { color: #cd7f32; }
.mtc-name-silver { color: #c0c0c0; }
.mtc-name-gold { color: #ffd700; }
.mtc-name-diamond { color: #b9f2ff; }

.mtc-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin-top 0.3s ease;
    opacity: 0;
    margin-top: 0;
}

.mobile-tier-card.expanded .mtc-details {
    max-height: 200px;
    opacity: 1;
    margin-top: 12px;
}

.mtc-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.mtc-label {
    font-size: 0.95rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

.mtc-val {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e2e8f0;
}

.mtc-val.mtc-hl {
    font-weight: 800;
    background: linear-gradient(135deg, #49b7fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mtc-val.mtc-cost {
    color: #49b7fa;
}

.mtc-footer {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(73,183,250,0.1);
    font-size: 0.85rem;
    color: #64748b;
    font-style: italic;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .orbital-section {
        padding: 50px 0 40px;
    }
    .orbital-system {
        display: none;
    }
    .orbital-mobile {
        display: flex;
    }
    .orbital-header {
        margin-bottom: 28px;
    }
}

@media (min-width: 769px) {
    .orbital-mobile {
        display: none;
    }
}


/* === Mobile tier fixes (v25b) === */
@media (max-width: 768px) {
    /* All cards expanded by default */
    .mobile-tier-card .mtc-details {
        max-height: 200px !important;
        opacity: 1 !important;
        margin-top: 12px !important;
    }
    /* Remove dark card background */
    .mobile-tier-card {
        background: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        cursor: default !important;
    }
    .mobile-tier-card::before {
        display: none !important;
    }
    .mobile-tier-card.expanded {
        border: none !important;
        box-shadow: none !important;
    }
    /* Grey text → white */
    .mtc-label {
        color: #ffffff !important;
    }
    .mtc-val {
        color: #ffffff !important;
    }
    .mtc-footer {
        color: #ffffff !important;
    }
}

/* === Title/Subtitle fix (v26b) === */
.orbital-title {
    font-size: 3.5rem !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: unset !important;
}
.orbital-accent {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: none !important;
}
.orbital-subtitle {
    font-size: 1.6rem !important;
    color: #49b7fa !important;
    font-weight: 500 !important;
    letter-spacing: 0.03em !important;
    margin-top: 12px !important;
}


/* === Larger hover targets for planets (v27b) === */
.celestial-body {
    cursor: pointer !important;
    min-width: 80px !important;
    min-height: 80px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.celestial-body::after {
    content: '';
    position: absolute;
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    border-radius: 50%;
    z-index: 4;
}
.celestial-body .body-core {
    width: 60px !important;
    height: 60px !important;
}
.body-bronze .body-core {
    width: 50px !important;
    height: 50px !important;
}
/* Scale up the bodies themselves */
.body-glow {
    width: 160% !important;
    height: 160% !important;
    top: -30% !important;
    left: -30% !important;
}

/* === Remunerations legend layout (v28b) === */
.remun-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.remun-legend-left,
.remun-legend-right {
    flex-shrink: 0;
    min-width: 160px;
}
.remun-content-wrapper .orbital-system {
    flex: 1;
    max-width: 600px;
}
/* Round dots instead of squares for tier colors */
.remun-legend-left ._legendColor_8hkg6_247,
.remun-legend-right ._legendColor_8hkg6_247 {
    border-radius: 50% !important;
    box-shadow: 0 0 12px currentColor;
}
@media (max-width: 900px) {
    .remun-content-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .remun-legend-left,
    .remun-legend-right {
        display: none;
    }
}

/* === v30b subtitle size + no dot glow === */
.orbital-subtitle {
    font-size: 1.8rem !important;
}
.remun-legend-left ._legendColor_8hkg6_247,
.remun-legend-right ._legendColor_8hkg6_247 {
    box-shadow: none !important;
}

/* === v31b: Match FAQ heading sizes exactly === */
.orbital-title {
    font-size: 64px !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: none !important;
    margin-bottom: 12px !important;
}
.orbital-accent {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}
.orbital-subtitle {
    font-size: 32px !important;
    font-weight: 600 !important;
    color: #49b7fa !important;
    margin-bottom: 8px !important;
    letter-spacing: normal !important;
}
@media (max-width: 1200px) {
    .orbital-title { font-size: 48px !important; }
}
@media (max-width: 768px) {
    .orbital-title { font-size: 36px !important; margin-bottom: 8px !important; }
    .orbital-subtitle { font-size: 24px !important; margin-bottom: 5px !important; }
}
@media (max-width: 480px) {
    .orbital-title { font-size: 28px !important; }
}

/* === v33b: Align header with tokenomics container === */
.orbital-header-new {
    max-width: 1400px !important;
    margin: 0 auto 40px !important;
    padding: 0 40px !important;
    text-align: left !important;
}
@media (max-width: 768px) {
    .orbital-header-new {
        padding: 0 20px !important;
    }
}

/* === v34b: Match orbital container to tokenomics container === */
.orbital-container {
    max-width: 1400px !important;
    padding: 0 40px !important;
}
.orbital-header-new {
    max-width: none !important;
    padding: 0 !important;
}
@media (max-width: 768px) {
    .orbital-container {
        padding: 0 20px !important;
    }
}

/* === v35b: FAQ spacing from holder rewards === */
#faq {
    margin-top: 65px !important;
    padding-top: 65px !important;
}

/* ============================================
   CONSOLIDATED OVERRIDES (Mar 20, 2026)
   ============================================ */

/* Rocket sizing */
._rocket_17vye_1 { width: 620px !important; }
._rocketSection_17vye_1 { height: 500px !important; }

/* Roadmap: allow info boxes to overflow below planets */
._roadmap_1mj8j_1 { overflow: visible !important; }
._circleRight_1mj8j_136 { overflow: visible !important; }

/* Desktop: info boxes below planets */
._infoBoxEarth_1mj8j_479 { bottom: 10% !important; left: 19% !important; }
._infoBoxSaturn_1mj8j_485 { top: 42% !important; left: 50% !important; transform: translateX(-50%) !important; }
._infoBoxMoon_1mj8j_492 { bottom: 10% !important; right: 22% !important; }

/* Laptop / Monitor sizing */
._monitor_1pibd_333 { width: 875px !important; }

@media (max-width: 1400px) { ._monitor_1pibd_333 { width: 700px !important; } }

@media (max-width: 1200px) {
    ._rocket_17vye_1 { width: 520px !important; }
    ._rocketSection_17vye_1 { height: 500px !important; }
    ._monitor_1pibd_333 { width: 680px !important; }
    ._infoBoxEarth_1mj8j_479 { bottom: 15% !important; left: -10% !important; top: auto !important; }
    ._infoBoxSaturn_1mj8j_485 { top: 5% !important; }
    ._infoBoxMoon_1mj8j_492 { bottom: 15% !important; right: -10% !important; top: auto !important; }
}

@media (max-width: 768px) {
    ._rocket_17vye_1 { width: 450px !important; }
    ._rocketSection_17vye_1 { height: 350px !important; margin-top: 40px !important; }
    ._monitor_1pibd_333 { width: 100% !important; max-width: 520px !important; }
    ._infoBoxEarth_1mj8j_479,
    ._infoBoxSaturn_1mj8j_485,
    ._infoBoxMoon_1mj8j_492 {
        top: calc(100% - 30px) !important;
        bottom: auto !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: calc(100% - 20px) !important;
        max-width: 340px !important;
        z-index: 20 !important;
    }
    ._circleRight_1mj8j_136 { margin-bottom: 20px !important; min-height: 380px !important; }
    ._headerSection_1mj8j_43 { min-height: auto !important; padding-bottom: 20px !important; }
}

@media (max-width: 480px) {
    ._rocket_17vye_1 { width: 300px !important; }
    ._rocketSection_17vye_1 { height: 260px !important; margin-top: 30px !important; }
    ._monitor_1pibd_333 { width: 100% !important; max-width: 400px !important; }
    ._infoBoxEarth_1mj8j_479,
    ._infoBoxSaturn_1mj8j_485,
    ._infoBoxMoon_1mj8j_492 {
        top: calc(100% - 40px) !important;
        width: calc(100% - 16px) !important;
        max-width: 320px !important;
    }
}

/* ===== COUNTDOWN LABEL (added v201) ===== */
.qntm-countdown-label {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #a8b2d1;
    margin: 0 0 4px 0;
    padding: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: qntm-pulse-glow 2s ease-in-out infinite;
}

@keyframes qntm-pulse-glow {
    0%, 100% { color: #a8b2d1; text-shadow: none; }
    50% { color: #64ffda; text-shadow: 0 0 8px rgba(100, 255, 218, 0.3); }
}

/* ===== ANTI-DUMP PROTECTION BANNER (v204) ===== */
.anti-dump-section {
    padding: 0 20px;
    margin: 60px auto 0;
    max-width: 900px;
}

.anti-dump-container {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: rgba(11, 18, 33, 0.4);
    border: 1px solid rgba(73, 183, 250, 0.3);
    border-radius: 16px;
    padding: 32px 36px;
    box-shadow: 0 0 30px rgba(73, 183, 250, 0.15), 0 0 60px rgba(99, 102, 241, 0.08);
    position: relative;
    overflow: hidden;
}

.anti-dump-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #49B7FA, #6366f1, transparent);
}

.anti-dump-icon {
    font-size: 42px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(73, 183, 250, 0.5));
    line-height: 1;
}

.anti-dump-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.anti-dump-text {
    font-size: 15px;
    color: #a8b2d1;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .anti-dump-section {
        padding: 0 16px;
        margin-top: 40px;
    }
    .anti-dump-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 20px;
        gap: 16px;
    }
    .anti-dump-icon {
        font-size: 36px;
    }
    .anti-dump-title {
        font-size: 19px;
    }
    .anti-dump-text {
        font-size: 14px;
    }
}

/* ===== v205: Team & Advisors Section ===== */
.team-section {
    position: relative;
    padding: 80px 0 60px;
    background: transparent;
    overflow: hidden;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-header h2 {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(90deg, #49B7FA, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.team-header .team-subtitle {
    font-size: 18px;
    color: #a8b2d1;
    font-weight: 400;
    letter-spacing: 1px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
    margin-bottom: 60px;
}

.team-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 16px;
    padding: 32px 20px 28px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(73, 183, 250, 0.15), 0 0 20px rgba(99, 102, 241, 0.1);
    border-color: rgba(73, 183, 250, 0.3);
}

.team-card-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid rgba(73, 183, 250, 0.3);
    box-shadow: 0 0 15px rgba(0, 150, 255, 0.3);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.team-card:hover .team-card-photo {
    box-shadow: 0 0 25px rgba(0, 150, 255, 0.5), 0 0 40px rgba(99, 102, 241, 0.2);
    border-color: rgba(73, 183, 250, 0.5);
}

.team-card-name {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.team-card-role {
    font-size: 14px;
    font-weight: 600;
    color: #49B7FA;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.team-card-bio {
    font-size: 13px;
    color: #8892b0;
    line-height: 1.6;
    margin: 0;
}

/* Advisors subtitle */
.advisors-subtitle {
    text-align: center;
    margin-bottom: 40px;
}

.advisors-subtitle h3 {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(90deg, #49B7FA, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.advisors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.advisor-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(99, 102, 241, 0.12);
    border-radius: 16px;
    padding: 28px 18px 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(73, 183, 250, 0.12), 0 0 18px rgba(99, 102, 241, 0.08);
    border-color: rgba(73, 183, 250, 0.25);
}

.advisor-card .team-card-photo {
    width: 120px;
    height: 120px;
}

.advisor-card .team-card-name {
    font-size: 16px;
}

.advisor-card .team-card-role {
    font-size: 13px;
}

.advisor-card .team-card-bio {
    font-size: 12px;
}

.team-privacy-note {
    text-align: center;
    font-size: 13px;
    color: #5a6380;
    font-style: italic;
    margin-top: 20px;
    padding: 16px;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
}

/* Team section responsive */
@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 50px 0 40px;
    }
    .team-header h2 {
        font-size: 30px;
    }
    .team-header .team-subtitle {
        font-size: 15px;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .advisors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .advisors-subtitle h3 {
        font-size: 24px;
    }
    .team-card {
        padding: 24px 14px 20px;
    }
    .team-card-photo {
        width: 110px;
        height: 110px;
    }
    .advisor-card .team-card-photo {
        width: 100px;
        height: 100px;
    }
    .team-card-name {
        font-size: 15px;
    }
    .team-card-bio {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .advisors-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .team-header h2 {
        font-size: 26px;
    }
}

/* ===== v205: Token Distribution Transparency ===== */
.token-distribution-section {
    position: relative;
    padding: 60px 0;
    background: transparent;
}

.token-distribution-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.token-distribution-header {
    text-align: center;
    margin-bottom: 40px;
}

.token-distribution-header h2 {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(90deg, #49B7FA, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.token-distribution-header p {
    font-size: 16px;
    color: #a8b2d1;
}

.distribution-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.distribution-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.distribution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(73, 183, 250, 0.12);
}

.distribution-card-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.distribution-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.distribution-card-amount {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(90deg, #49B7FA, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.distribution-card-detail {
    font-size: 13px;
    color: #8892b0;
    line-height: 1.5;
}

.distribution-onchain-note {
    text-align: center;
    padding: 20px;
    background: rgba(73, 183, 250, 0.05);
    border: 1px solid rgba(73, 183, 250, 0.12);
    border-radius: 12px;
    margin-top: 8px;
}

.distribution-onchain-note p {
    font-size: 14px;
    color: #a8b2d1;
    margin: 0 0 8px;
    line-height: 1.6;
}

.distribution-onchain-note a {
    color: #49B7FA;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.distribution-onchain-note a:hover {
    color: #6366f1;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .distribution-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .token-distribution-header h2 {
        font-size: 24px;
    }
}

/* ===== v205: BscScan Verified Badge ===== */
.bscscan-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(39, 174, 96, 0.08);
    border: 1px solid rgba(39, 174, 96, 0.25);
    border-radius: 8px;
    padding: 8px 16px;
    margin-top: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 13px;
    color: #27ae60;
    font-weight: 600;
}

.bscscan-badge:hover {
    background: rgba(39, 174, 96, 0.15);
    border-color: rgba(39, 174, 96, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.15);
    text-decoration: none;
    color: #2ecc71;
}

.bscscan-badge svg {
    flex-shrink: 0;
}

.bscscan-badge-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 12px;
}

/* ===== v206: Match anti-dump, team, advisors, token-distribution to space theme ===== */

/* --- ANTI-DUMP: Match page's glass card style --- */
.anti-dump-section {
    position: relative;
    z-index: 1;
}
.anti-dump-container {
    background: rgba(10, 15, 30, 0.35) !important;
    border: 1px solid rgba(73, 183, 250, 0.15) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px rgba(255,255,255,0.05) !important;
}
.anti-dump-container::before {
    background: linear-gradient(90deg, transparent, rgba(73, 183, 250, 0.4), rgba(99, 102, 241, 0.3), transparent) !important;
}

/* --- TEAM SECTION: Space theme with nebula glow --- */
.team-section {
    background: none !important;
    padding: 100px 0 60px !important;
}

/* Nebula glow behind team section */
.team-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(73, 183, 250, 0.06) 0%, rgba(168, 85, 247, 0.03) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: teamNebula 8s ease-in-out infinite;
}
@keyframes teamNebula {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

/* Subtle cross-hatch pattern like tokenomics */
.team-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, transparent 49.5%, rgba(255,255,255,0.03) 49.5%, rgba(255,255,255,0.03) 50.5%, transparent 50.5%),
        linear-gradient(45deg, transparent 49.5%, rgba(255,255,255,0.03) 49.5%, rgba(255,255,255,0.03) 50.5%, transparent 50.5%);
    background-size: 120px 120px;
    pointer-events: none;
    z-index: 0;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
}

.team-container {
    position: relative;
    z-index: 1;
}

/* Team header: animated shimmer gradient like orbital section */
.team-header h2 {
    background: linear-gradient(135deg, #49B7FA 0%, #a855f7 50%, #49B7FA 100%) !important;
    background-size: 200% auto !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: orbitalShimmer 3s ease-in-out infinite;
}

/* Team cards: glass morphism matching page aesthetic */
.team-card {
    background: rgba(10, 15, 30, 0.3) !important;
    border: 1px solid rgba(73, 183, 250, 0.1) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), inset 0 1px rgba(255,255,255,0.04);
}
.team-card:hover {
    background: rgba(10, 15, 30, 0.45) !important;
    border-color: rgba(73, 183, 250, 0.3) !important;
    box-shadow: 0 8px 40px rgba(73, 183, 250, 0.12), 0 0 20px rgba(99, 102, 241, 0.08), inset 0 1px rgba(255,255,255,0.06) !important;
}

/* Photo border: match the blue glow */
.team-card-photo {
    border: 2px solid rgba(73, 183, 250, 0.25) !important;
    box-shadow: 0 0 15px rgba(73, 183, 250, 0.2), 0 0 30px rgba(99, 102, 241, 0.1) !important;
}
.team-card:hover .team-card-photo {
    border-color: rgba(73, 183, 250, 0.5) !important;
    box-shadow: 0 0 20px rgba(73, 183, 250, 0.35), 0 0 40px rgba(99, 102, 241, 0.15) !important;
}

/* Role text: match the accent color */
.team-card-role {
    color: #49B7FA !important;
}

/* Bio text: match page secondary text */
.team-card-bio {
    color: #94a3b8 !important;
}

/* --- ADVISORS: Same glass treatment --- */
.advisors-subtitle h3 {
    background: linear-gradient(135deg, #49B7FA 0%, #a855f7 50%, #49B7FA 100%) !important;
    background-size: 200% auto !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: orbitalShimmer 3s ease-in-out infinite;
}

.advisor-card {
    background: rgba(10, 15, 30, 0.3) !important;
    border: 1px solid rgba(73, 183, 250, 0.1) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), inset 0 1px rgba(255,255,255,0.04);
}
.advisor-card:hover {
    background: rgba(10, 15, 30, 0.45) !important;
    border-color: rgba(73, 183, 250, 0.3) !important;
    box-shadow: 0 8px 40px rgba(73, 183, 250, 0.12), 0 0 20px rgba(99, 102, 241, 0.08), inset 0 1px rgba(255,255,255,0.06) !important;
}

.advisor-card .team-card-role {
    color: #49B7FA !important;
}
.advisor-card .team-card-bio {
    color: #94a3b8 !important;
}

/* --- TOKEN DISTRIBUTION: Space theme match --- */
.token-distribution-section {
    background: none !important;
    position: relative;
}

/* Nebula glow for token distribution */
.token-distribution-section::before {
    content: "";
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 70%;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.05) 0%, rgba(73, 183, 250, 0.03) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.token-distribution-container {
    position: relative;
    z-index: 1;
}

.token-distribution-header h2 {
    background: linear-gradient(135deg, #49B7FA 0%, #a855f7 50%, #49B7FA 100%) !important;
    background-size: 200% auto !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: orbitalShimmer 3s ease-in-out infinite;
}
.token-distribution-header p {
    color: #94a3b8 !important;
}

.distribution-card {
    background: rgba(10, 15, 30, 0.3) !important;
    border: 1px solid rgba(73, 183, 250, 0.1) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), inset 0 1px rgba(255,255,255,0.04);
}
.distribution-card:hover {
    background: rgba(10, 15, 30, 0.45) !important;
    border-color: rgba(73, 183, 250, 0.3) !important;
    box-shadow: 0 8px 40px rgba(73, 183, 250, 0.12), inset 0 1px rgba(255,255,255,0.06) !important;
}

.distribution-card-amount {
    background: linear-gradient(135deg, #49B7FA 0%, #a855f7 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.distribution-card-detail {
    color: #94a3b8 !important;
}

.distribution-onchain-note {
    background: rgba(10, 15, 30, 0.2) !important;
    border: 1px solid rgba(73, 183, 250, 0.08) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.distribution-onchain-note p {
    color: #94a3b8 !important;
}

/* Privacy note: match */
.team-privacy-note {
    color: #64748b !important;
    border-top: 1px solid rgba(73, 183, 250, 0.06) !important;
}

/* --- MOBILE: disable pseudo-elements --- */
@media (max-width: 768px) {
    .team-section::before,
    .team-section::after {
        display: none;
    }
    .token-distribution-section::before {
        display: none;
    }
}


/* ===== v208b: Match headings/fonts to existing page style ===== */
/* Existing headings: 64px, weight 700, white, tight tracking, uppercase */

.team-header h2 {
    font-size: 64px !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
    color: #fff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #fff !important;
    background-clip: unset !important;
    text-transform: uppercase !important;
    line-height: 1.1 !important;
    animation: none !important;
    text-shadow: none !important;
    margin-bottom: 10px !important;
}

.team-header .team-subtitle {
    font-size: 16px !important;
    color: #94a3b8 !important;
    font-weight: 400 !important;
    letter-spacing: normal !important;
}

.advisors-subtitle h3 {
    font-size: 48px !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
    color: #fff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #fff !important;
    background-clip: unset !important;
    text-transform: uppercase !important;
    line-height: 1.1 !important;
    animation: none !important;
    text-shadow: none !important;
}

.token-distribution-header h2 {
    font-size: 64px !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
    color: #fff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #fff !important;
    background-clip: unset !important;
    text-transform: uppercase !important;
    line-height: 1.1 !important;
    animation: none !important;
    text-shadow: none !important;
    margin-bottom: 10px !important;
}

.token-distribution-header p {
    font-size: 16px !important;
    color: #94a3b8 !important;
    font-weight: 400 !important;
}

/* Anti-dump title: match card heading style */
.anti-dump-title {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #fff !important;
    letter-spacing: normal !important;
}

.anti-dump-text {
    color: #94a3b8 !important;
}

/* Distribution card titles */
.distribution-card-title {
    color: #fff !important;
    font-weight: 700 !important;
}

.distribution-card-amount {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #49B7FA !important;
    background-clip: unset !important;
    color: #49B7FA !important;
}

/* Team card fonts */
.team-card-name {
    font-weight: 700 !important;
    color: #fff !important;
}

.team-card-role {
    font-weight: 600 !important;
    color: #49B7FA !important;
    font-size: 14px !important;
}

.team-card-bio {
    color: #94a3b8 !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
}

/* Responsive: match existing breakpoints */
@media (max-width: 1200px) {
    .team-header h2 { font-size: 48px !important; }
    .token-distribution-header h2 { font-size: 48px !important; }
    .advisors-subtitle h3 { font-size: 36px !important; }
}

@media (max-width: 768px) {
    .team-header h2 { font-size: 36px !important; }
    .token-distribution-header h2 { font-size: 36px !important; margin-bottom: 8px !important; }
    .advisors-subtitle h3 { font-size: 28px !important; }
}

@media (max-width: 480px) {
    .team-header h2 { font-size: 28px !important; }
    .token-distribution-header h2 { font-size: 28px !important; }
    .advisors-subtitle h3 { font-size: 24px !important; }
}

/* v222b: Ultra-smooth tokenomics bg blend */
._tokenomics_8hkg6_1 { background: transparent !important; }

/* v227: Investor Protection - EXACT About section clone */
.anti-dump-section {
    padding: 20px 0 75px !important;
    position: relative !important;
    background: none !important;
    border: none !important;
    margin: 0 !important;
    max-width: none !important;
    width: 100% !important;
}
@media (max-width: 1200px) { .anti-dump-section { padding: 20px 0 40px !important; } }
@media (max-width: 1024px) {
    .anti-dump-section ._content_1opl1_88 { flex-direction: column !important; gap: 32px !important; }
    .anti-dump-section ._leftContent_1opl1_102 { max-width: 100% !important; }
    .anti-dump-section ._rightContent_1opl1_141 { max-width: 100% !important; padding-top: 0 !important; }
}
.anti-dump-container,
.anti-dump-container::before,
.anti-dump-icon,
.anti-dump-title,
.anti-dump-text {
    all: unset !important;
    display: none !important;
}

/* v228: 3D Team Section */
.team-grid, .advisors-grid {
    perspective: 1200px !important;
}

.team-card, .advisor-card {
    background: linear-gradient(145deg, rgba(10, 20, 40, 0.7), rgba(15, 30, 60, 0.5)) !important;
    border: 1px solid rgba(73, 183, 250, 0.2) !important;
    border-radius: 20px !important;
    padding: 30px 24px !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    transform-style: preserve-3d !important;
    transform: rotateY(0deg) rotateX(0deg) !important;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) !important;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(73, 183, 250, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
    position: relative !important;
    overflow: hidden !important;
}

.team-card::before, .advisor-card::before {
    content:  !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, transparent, #49B7FA, #a855f7, transparent) !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
}

.team-card:hover, .advisor-card:hover {
    transform: rotateY(-5deg) rotateX(5deg) translateZ(30px) translateY(-8px) !important;
    border-color: rgba(73, 183, 250, 0.5) !important;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(73, 183, 250, 0.15),
        0 0 100px rgba(73, 183, 250, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.team-card:hover::before, .advisor-card:hover::before {
    opacity: 1 !important;
}

/* Alternate card tilt directions */
.team-card:nth-child(2):hover, .advisor-card:nth-child(2):hover {
    transform: rotateY(5deg) rotateX(5deg) translateZ(30px) translateY(-8px) !important;
}
.team-card:nth-child(3):hover {
    transform: rotateY(0deg) rotateX(8deg) translateZ(30px) translateY(-8px) !important;
}
.team-card:nth-child(4):hover {
    transform: rotateY(-8deg) rotateX(3deg) translateZ(30px) translateY(-8px) !important;
}
.team-card:nth-child(5):hover, .advisor-card:nth-child(3):hover {
    transform: rotateY(5deg) rotateX(5deg) translateZ(30px) translateY(-8px) !important;
}

/* 3D photo effect */
.team-card-photo {
    transform: translateZ(20px) !important;
    border: 3px solid rgba(73, 183, 250, 0.3) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(73, 183, 250, 0.1) !important;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

.team-card:hover .team-card-photo, .advisor-card:hover .team-card-photo {
    transform: translateZ(40px) scale(1.05) !important;
    border-color: rgba(73, 183, 250, 0.6) !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 30px rgba(73, 183, 250, 0.2) !important;
}

/* 3D text layers */
.team-card-name {
    transform: translateZ(15px) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}

.team-card-role {
    transform: translateZ(10px) !important;
    color: #49B7FA !important;
}

.team-card-bio {
    transform: translateZ(5px) !important;
}

/* Floating animation on idle */
@keyframes teamFloat {
    0%, 100% { transform: rotateY(0deg) rotateX(0deg) translateY(0px); }
    50% { transform: rotateY(1deg) rotateX(1deg) translateY(-4px); }
}

.team-card:nth-child(1) { animation: teamFloat 6s ease-in-out infinite; }
.team-card:nth-child(2) { animation: teamFloat 6s ease-in-out infinite 0.5s; }
.team-card:nth-child(3) { animation: teamFloat 6s ease-in-out infinite 1s; }
.team-card:nth-child(4) { animation: teamFloat 6s ease-in-out infinite 1.5s; }
.team-card:nth-child(5) { animation: teamFloat 6s ease-in-out infinite 2s; }
.advisor-card:nth-child(1) { animation: teamFloat 6s ease-in-out infinite 0.3s; }
.advisor-card:nth-child(2) { animation: teamFloat 6s ease-in-out infinite 0.8s; }
.advisor-card:nth-child(3) { animation: teamFloat 6s ease-in-out infinite 1.3s; }

.team-card:hover, .advisor-card:hover {
    animation: none !important;
}

@media (max-width: 768px) {
    .team-card, .advisor-card {
        animation: none !important;
    }
}

/* v229: Space-themed team section */
.team-section {
    position: relative !important;
    overflow: hidden !important;
}

.team-space-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 0;
}

/* Starfield */
.team-stars {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 25% 35%, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 40% 10%, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 55% 45%, rgba(255,255,255,0.5), transparent),
        radial-gradient(1.5px 1.5px at 70% 20%, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 85% 55%, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 15% 70%, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 30% 85%, rgba(255,255,255,0.5), transparent),
        radial-gradient(1.5px 1.5px at 50% 65%, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 65% 80%, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 80% 40%, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 92% 75%, rgba(255,255,255,0.5), transparent),
        radial-gradient(1.5px 1.5px at 5% 50%, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 45% 30%, rgba(255,255,255,0.4), transparent),
        radial-gradient(2px 2px at 75% 60%, rgba(73,183,250,0.6), transparent),
        radial-gradient(2px 2px at 20% 90%, rgba(168,85,247,0.5), transparent);
    animation: teamStarsTwinkle 4s ease-in-out infinite alternate;
}

@keyframes teamStarsTwinkle {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* Floating planets */
.team-planet {
    position: absolute;
    z-index: 0;
    opacity: 0.6;
}
.team-planet img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(73, 183, 250, 0.2));
}

.team-planet-1 {
    top: 2%; right: 5%;
    width: 160px;
    animation: planetDrift1 20s ease-in-out infinite;
}
.team-planet-2 {
    bottom: 8%; left: 3%;
    width: 100px;
    animation: planetDrift2 18s ease-in-out infinite;
}
.team-planet-3 {
    top: 40%; right: 2%;
    width: 80px;
    animation: planetDrift3 15s ease-in-out infinite;
}
.team-planet-4 {
    top: 20%; left: 1%;
    width: 70px;
    animation: planetDrift1 22s ease-in-out infinite reverse;
}
.team-planet-5 {
    bottom: 15%; right: 8%;
    width: 120px;
    animation: planetDrift2 25s ease-in-out infinite;
}

@keyframes planetDrift1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, -20px) rotate(5deg); }
    50% { transform: translate(-10px, -35px) rotate(-3deg); }
    75% { transform: translate(20px, -15px) rotate(4deg); }
}
@keyframes planetDrift2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-20px, 15px) rotate(-5deg); }
    66% { transform: translate(15px, -10px) rotate(3deg); }
}
@keyframes planetDrift3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-25px, 20px) rotate(-8deg); }
}

/* Make sure content sits above planets */
.team-container {
    position: relative !important;
    z-index: 1 !important;
}

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

/* v231: White team text + roadmap prep */
.team-card-bio,
.advisor-card .team-card-bio {
    color: #ffffff !important;
    opacity: 0.85;
}
.team-subtitle {
    color: #ffffff !important;
    opacity: 0.7;
}
.team-privacy-note {
    color: rgba(255,255,255,0.5) !important;
}

/* v231: Team Roadmap Arrow Design */

/* Hide old team grid/card styles when roadmap is active */
.team-roadmap-active .team-space-bg,
.team-roadmap-active .team-grid,
.team-roadmap-active .advisors-subtitle,
.team-roadmap-active .advisors-grid,
.team-roadmap-active .team-card,
.team-roadmap-active .advisor-card {
    display: none !important;
}

/* Roadmap wrapper */
.team-roadmap-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 0 0;
    overflow: hidden;
}

/* SVG path overlay */
.team-roadmap-svg {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: calc(100% - 40px);
    z-index: 0;
    pointer-events: none;
    overflow: visible;
}

/* Row layout */
.roadmap-row {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    margin-bottom: 0;
}

.roadmap-row-3col {
    justify-content: space-between;
    padding: 0 80px;
    height: 240px;
}

.roadmap-row-2col {
    justify-content: center;
    gap: 200px;
    height: 240px;
}

/* Curve gap between rows */
.roadmap-row-3col + .roadmap-row-2col {
    margin-top: 80px;
}

.roadmap-row-2col + .roadmap-divider {
    margin-top: 0;
}

.roadmap-divider + .roadmap-row-3col {
    margin-top: 0;
}

/* Individual node */
.roadmap-node {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 180px;
    flex-shrink: 0;
}

/* Photo */
.roadmap-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid rgba(73, 183, 250, 0.4);
    box-shadow: 0 0 20px rgba(73, 183, 250, 0.25), 0 0 40px rgba(73, 183, 250, 0.08);
    object-fit: cover;
    margin: 0 auto 14px;
    display: block;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.roadmap-node:hover .roadmap-photo {
    border-color: #49B7FA;
    box-shadow: 0 0 30px rgba(73, 183, 250, 0.5), 0 0 60px rgba(73, 183, 250, 0.15);
    transform: scale(1.08);
}

/* Text styles */
.roadmap-name {
    color: #fff !important;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px;
    letter-spacing: 0.3px;
}

.roadmap-role {
    color: #49B7FA !important;
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.roadmap-bio {
    color: #fff !important;
    font-size: 12px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
}

/* Advisors divider */
.roadmap-divider {
    text-align: center;
    padding: 30px 0;
    position: relative;
    z-index: 1;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.roadmap-divider span {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    padding: 8px 40px;
    background: rgba(10, 20, 40, 0.8);
    border: 1px solid rgba(73, 183, 250, 0.3);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(73, 183, 250, 0.1);
}

/* Privacy note */
.team-roadmap-wrapper .team-privacy-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.4) !important;
    font-size: 12px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

/* Override old styles that might interfere */
.team-roadmap-active .team-section {
    overflow: hidden !important;
}

.team-roadmap-active .team-section::before,
.team-roadmap-active .team-section::after {
    display: none !important;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
    .roadmap-row-3col {
        padding: 0 40px;
    }
    .roadmap-row-2col {
        gap: 120px;
    }
    .roadmap-node {
        width: 160px;
    }
    .roadmap-photo {
        width: 85px;
        height: 85px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .team-roadmap-wrapper {
        padding: 20px 0 0;
    }

    /* Hide desktop SVG on mobile */
    .team-roadmap-svg {
        display: none;
    }

    .roadmap-row {
        flex-direction: column;
        align-items: center;
        gap: 50px;
        padding: 0 20px !important;
        height: auto !important;
        margin-bottom: 20px;
        position: relative;
    }

    /* Vertical line on mobile */
    .roadmap-row::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 3px;
        background: linear-gradient(180deg, rgba(73,183,250,0), #49B7FA 10%, #49B7FA 90%, rgba(73,183,250,0));
        box-shadow: 0 0 10px rgba(73,183,250,0.3);
        z-index: 0;
    }

    /* Animated flow on mobile (vertical) */
    .roadmap-row::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 5px;
        background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.5) 10%, transparent 25%);
        background-size: 100% 200px;
        animation: mobileFlow 2s linear infinite;
        z-index: 0;
    }

    @keyframes mobileFlow {
        0% { background-position: 0 -200px; }
        100% { background-position: 0 calc(100% + 200px); }
    }

    .roadmap-row-2col {
        gap: 50px;
    }

    .roadmap-node {
        width: 220px;
        background: rgba(5, 15, 35, 0.6);
        padding: 20px;
        border-radius: 16px;
        border: 1px solid rgba(73, 183, 250, 0.15);
    }

    .roadmap-divider {
        height: 60px;
        padding: 15px 0;
    }

    .roadmap-divider span {
        font-size: 24px;
        padding: 6px 30px;
    }
}

@media (max-width: 480px) {
    .roadmap-node {
        width: 200px;
    }
    .roadmap-photo {
        width: 80px;
        height: 80px;
    }
    .roadmap-name {
        font-size: 15px;
    }
    .roadmap-bio {
        font-size: 11px;
    }
}

/* v232: Fix SVG overflow for U-turn curves */
.team-roadmap-svg {
    overflow: visible !important;
}
.team-section.team-roadmap-active {
    overflow-x: clip !important;
    overflow-y: visible !important;
}
.team-roadmap-wrapper {
    overflow: visible !important;
}

/* v233: Hide dynamic SVG on mobile */
@media (max-width: 768px) {
    .team-roadmap-svg-dynamic {
        display: none !important;
    }
}
/* Ensure wrapper is positioned for absolute SVG */
.team-roadmap-wrapper {
    position: relative !important;
}

/* v234: Force all team roadmap text bright white */
.roadmap-bio {
    color: #ffffff !important;
    opacity: 1 !important;
}
.roadmap-role {
    color: #49B7FA !important;
}
.roadmap-name {
    color: #ffffff !important;
}
.team-subtitle {
    color: #ffffff !important;
    opacity: 1 !important;
}
.team-privacy-note {
    color: rgba(255,255,255,0.6) !important;
}

/* v234b: Force bright white with max specificity */
.team-section .team-roadmap-wrapper .roadmap-bio,
.team-roadmap-wrapper .roadmap-bio,
.roadmap-node .roadmap-bio,
p.roadmap-bio {
    color: #ffffff !important;
    opacity: 1 !important;
    -webkit-text-fill-color: #ffffff !important;
}
.team-section .team-header .team-subtitle,
.team-header .team-subtitle,
p.team-subtitle {
    color: #ffffff !important;
    opacity: 1 !important;
    -webkit-text-fill-color: #ffffff !important;
}
.team-section .team-roadmap-wrapper .roadmap-name,
.roadmap-node .roadmap-name {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}
.team-section .team-roadmap-wrapper .roadmap-role,
.roadmap-node .roadmap-role {
    color: #49B7FA !important;
    -webkit-text-fill-color: #49B7FA !important;
}

/* v235b: Privacy note bright white */
.team-section .team-privacy-note,
.team-roadmap-wrapper .team-privacy-note,
p.team-privacy-note {
    color: #ffffff !important;
    opacity: 1 !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* v236: Advisors heading - match site brand style */
.roadmap-divider span {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    font-size: 64px !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    padding: 0 !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* v237: Compact team section to fit single viewport */
.team-section {
    padding-top: 30px !important;
    padding-bottom: 10px !important;
}
.team-header {
    margin-bottom: 15px !important;
}
.team-header h2 {
    font-size: 48px !important;
    margin-bottom: 4px !important;
}
.team-section .team-subtitle {
    font-size: 14px !important;
    margin-bottom: 0 !important;
}
.team-roadmap-wrapper {
    padding: 15px 0 0 !important;
}
/* Smaller photos */
.roadmap-photo {
    width: 70px !important;
    height: 70px !important;
    margin-bottom: 8px !important;
}
/* Tighter rows */
.roadmap-row-3col {
    height: auto !important;
    padding: 0 60px !important;
    margin-bottom: 0 !important;
}
.roadmap-row-2col {
    height: auto !important;
    gap: 180px !important;
    margin-bottom: 0 !important;
}
.roadmap-row-3col + .roadmap-row-2col {
    margin-top: 25px !important;
}
/* Smaller text */
.roadmap-name {
    font-size: 14px !important;
    margin-bottom: 2px !important;
}
.roadmap-role {
    font-size: 11px !important;
    margin-bottom: 4px !important;
}
.roadmap-bio {
    font-size: 11px !important;
    line-height: 1.4 !important;
}
.roadmap-node {
    width: 170px !important;
}
/* Compact divider */
.roadmap-divider {
    height: 50px !important;
    padding: 10px 0 !important;
}
.roadmap-divider span {
    font-size: 42px !important;
}
.roadmap-divider + .roadmap-row-3col {
    margin-top: 0 !important;
}
/* Compact privacy note */
.team-roadmap-wrapper .team-privacy-note {
    margin-top: 15px !important;
    font-size: 11px !important;
    padding-bottom: 10px !important;
}

/* v238b: Hide advisors divider */
.roadmap-divider {
    display: none !important;
}

/* v239: Q icon in holder rewards planet */
.sun-core img {
    width: 90% !important;
    height: 90% !important;
    object-fit: contain !important;
    border-radius: 50% !important;
    position: relative;
    z-index: 5;
}

/* v240: Q icon half size */
.sun-core img {
    width: 45% !important;
    height: 45% !important;
}

/* v241: Fix Q icon centering + tokenomics top fade */
.sun-core {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.sun-core img {
    width: 45% !important;
    height: 45% !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Smoother tokenomics top fade - more gradual transition */
._tokenomics_8hkg6_1 { background: transparent !important; }

/* v242: Mobile team roadmap - match desktop style */
@media (max-width: 768px) {
    /* Override vertical stack - keep horizontal roadmap */
    .roadmap-row {
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 0 !important;
        padding: 0 10px !important;
    }
    .roadmap-row::before,
    .roadmap-row::after {
        display: none !important;
    }
    .roadmap-row-3col {
        justify-content: space-between !important;
    }
    .roadmap-row-2col {
        justify-content: center !important;
        gap: 60px !important;
    }
    .roadmap-node {
        width: 100px !important;
        background: none !important;
        padding: 0 !important;
        border: none !important;
    }
    .roadmap-photo {
        width: 50px !important;
        height: 50px !important;
        margin-bottom: 6px !important;
        border-width: 2px !important;
    }
    .roadmap-name {
        font-size: 11px !important;
        margin-bottom: 1px !important;
    }
    .roadmap-role {
        font-size: 8px !important;
        margin-bottom: 3px !important;
    }
    .roadmap-bio {
        font-size: 8px !important;
        line-height: 1.3 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    .roadmap-row-3col + .roadmap-row-2col {
        margin-top: 15px !important;
    }
    .roadmap-divider + .roadmap-row-3col {
        margin-top: 0 !important;
    }
    .team-section {
        padding-top: 20px !important;
        padding-bottom: 5px !important;
    }
    .team-header h2 {
        font-size: 32px !important;
    }
    .team-section .team-subtitle {
        font-size: 12px !important;
    }
    .team-roadmap-wrapper {
        padding: 10px 0 0 !important;
    }
    /* Show dynamic SVG on mobile too */
    .team-roadmap-svg-dynamic {
        display: block !important;
    }
    .team-roadmap-wrapper .team-privacy-note {
        font-size: 9px !important;
        margin-top: 10px !important;
    }
}

@media (max-width: 480px) {
    .roadmap-node {
        width: 90px !important;
    }
    .roadmap-photo {
        width: 45px !important;
        height: 45px !important;
    }
    .roadmap-name {
        font-size: 10px !important;
    }
    .roadmap-role {
        font-size: 7px !important;
    }
    .roadmap-bio {
        font-size: 7px !important;
        -webkit-line-clamp: 2 !important;
    }
    .roadmap-row-2col {
        gap: 40px !important;
    }
}

/* v243: Smoother tokenomics top transition - extend fade zone */
._tokenomics_8hkg6_1 { background: transparent !important; }


/* Buy Now button — full-width, clean */
._buttonsRow_l1psz_270 { width: 100%; }
._connectButton_l1psz_284 {
    width: 100% !important;
    padding: 14px 24px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    min-height: 48px !important;
    border-radius: 10px !important;
    background: #49b7fa !important;
    color: #0d1117 !important;
}

/* Mobile fix: prevent stats text wrapping */
@media (max-width: 480px) {
    ._raised_l1psz_87, ._price_l1psz_93 {
        font-size: 12px;
    }
    ._statsRow_l1psz_80 {
        gap: 8px;
    }
}

/* v20260418-1322 mobile dead-space fix after rocket removal */
@media (max-width: 768px) {
  ._tokenomics_8hkg6_1 {
    margin-top: 24px !important;
    padding: 34px 0 24px !important;
  }
  ._header_8hkg6_69 {
    margin-bottom: 24px !important;
  }
  .orbital-section {
    padding: 28px 0 34px !important;
  }
}

@media (max-width: 480px) {
  ._tokenomics_8hkg6_1 {
    margin-top: 12px !important;
    padding: 28px 0 20px !important;
  }
  .orbital-section {
    padding: 22px 0 28px !important;
  }
}

/* ===== REFER & EARN SECTION (v3: left-aligned, white body) ===== */
.refer-section {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
    background: transparent !important;
}
@media (max-width: 768px) {
    .refer-section { padding: 70px 0 50px; }
}

.refer-eyebrow {
    text-align: left;
    font-size: 13px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0.7;
    font-weight: 600;
    margin-bottom: 18px;
}

.refer-hero {
    text-align: left;
    max-width: 900px;
    margin: 0 0 80px;
}
@media (max-width: 768px) {
    .refer-hero { margin-bottom: 56px; }
}

.refer-title {
    font-size: 64px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: #fff;
    margin: 0 0 24px;
    text-transform: uppercase;
}
@media (max-width: 1200px) { .refer-title { font-size: 48px; } }
@media (max-width: 768px)  { .refer-title { font-size: 36px; line-height: 1.1; } }

.refer-title-accent {
    background: linear-gradient(135deg, #49b7fa 0%, #a855f7 50%, #49b7fa 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: orbitalShimmer 3s ease-in-out infinite;
}

.refer-lede {
    font-size: 17px;
    line-height: 1.65;
    color: #ffffff;
    max-width: 640px;
    margin: 0;
}
@media (max-width: 768px) { .refer-lede { font-size: 15px; } }

.refer-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 32px;
    max-width: 1100px;
    margin: 0 0 64px;
}
@media (max-width: 900px) {
    .refer-flow {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 360px;
        margin: 0 auto 48px;
    }
}

.refer-step {
    text-align: left;
    padding: 0;
}

.refer-step-num {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #49b7fa 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 18px;
    font-feature-settings: 'tnum';
    font-variant-numeric: tabular-nums;
}
@media (max-width: 768px) { .refer-step-num { font-size: 44px; } }

.refer-step-label {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.refer-step-detail {
    font-size: 14px;
    line-height: 1.55;
    color: #ffffff;
    max-width: 280px;
    margin: 0;
    opacity: 0.85;
}

.refer-step-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(73,183,250,0) 0%, rgba(73,183,250,0.35) 50%, rgba(168,85,247,0.35) 100%);
    margin-top: 30px;
}
@media (max-width: 900px) {
    .refer-step-line {
        width: 1px;
        height: 32px;
        margin: 0;
        background: linear-gradient(180deg, rgba(73,183,250,0.35), rgba(168,85,247,0.35));
    }
}

.refer-cta {
    text-align: left;
}

.refer-cta-btn {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 18px;
}

.refer-fineprint {
    font-size: 13px;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
    max-width: 600px;
}

/* Floating decorative element for Refer & Earn section */
.refer-section { position: relative; }

.refer-float {
    position: absolute;
    top: 40px;
    right: 6%;
    width: 460px;
    height: 460px;
    z-index: 0;
    pointer-events: none;
    animation: referFloat 8s ease-in-out infinite;
    filter: drop-shadow(0 12px 40px rgba(73, 183, 250, 0.25));
}

.refer-section ._container_8hkg6_55 {
    position: relative;
    z-index: 1;
}

@keyframes referFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-14px) rotate(2deg); }
}

@media (max-width: 1200px) {
    .refer-float { width: 340px; height: 340px; right: 4%; top: 60px; opacity: 0.55; }
}
@media (max-width: 900px) {
    .refer-float { display: none; }
}
