@import url("css2-1.css");

:root {
    --accent-color-rgb: var(--accent);
    --primary-color-rgb: var(--primary);

    --primary-color: rgb(var(--primary));
    --shadow-color: rgba(var(--primary), 0.1);
    --shadow-color-2: rgba(var(--primary), 0.3);
    --secondary-color: #8b5cf6;
    --accent-color: rgb(var(--accent));
    --primary-color: rgb(var(--primary));

    --background-color: #0f0f0f;
    --surface-color: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --border-color: #333333;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --nav-text-color: #e0e0e0;
    --nav-hover-text-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', 'Helvetica', 'Arial', sans-serif;
    background-color: var(--background-color);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

._p {
    position: relative;
    min-height: 60px;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
}

._7 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.25;
    background: linear-gradient(135deg, #0f0f0f 0%, #0f0f0f 60%, var(--primary-color) 100%);
}

._w {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, var(--primary-color) 50%, var(--primary-color)) 100%);
    animation: fadeInOut 6s ease-in-out infinite;
}

._c {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image:
        linear-gradient(90deg, var(--primary-color) 1px, transparent 1px),
        linear-gradient(0deg, var(--primary-color) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
    background-position-x: -1px;
}

._r {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: floatLight 8s ease-in-out infinite;
    opacity: 0.6;
}



@keyframes fadeInOut {
    0% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.1;
    }
}

@keyframes floatLight {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(100px, -20px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translate(200px, 20px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translate(100px, 40px) scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
}



._n {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

._0 {
    display: flex;
    align-items: center;
    gap: 15px;
}

._6 {
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

._h {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    font-family: 'Manrope', 'Helvetica', 'Arial', sans-serif;
}

._h img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

._2 {
    white-space: nowrap;
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    font-family: 'Manrope', 'Helvetica', 'Arial', sans-serif;
    max-width: 166px;
    overflow: visible;
}

._q {
    padding: 12px 24px;
    background: var(--primary-color);
    color: var(--button-text-color);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Manrope', 'Helvetica', 'Arial', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

._q:hover {
    background: var(--accent-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px var(--shadow-color-2);
}

._e {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: center;
    backdrop-filter: none;
}

._u {
    color: var(--nav-text-color) !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Manrope', 'Helvetica', 'Arial', sans-serif;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

._u:hover {
    color: var(--primary-color);
    background: none;
    opacity: 1;
    transform: translateY(-1px);
    position: relative;
}

._u:hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 1px;
    animation: slideIn 0.3s ease-out;
}

._u:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

._u.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 1px;
}

@keyframes slideIn {
    from {
        width: 0;
        left: 50%;
    }
    to {
        width: 100%;
        left: 0;
    }
}

._k {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: calc(100vh - 60px);
    padding: 0;
}

._o {
    width: 100%;
    max-width: 1400px;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

._g {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 12px 20px;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
    align-self: flex-start;
}

._s {
    display: flex;
    align-items: center;
    gap: 8px;
}

._l {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Manrope', 'Helvetica', 'Arial', sans-serif;
    letter-spacing: 0.3px;
}

._f {
    color: var(--primary-color);
    flex-shrink: 0;
}

._9 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 60px;
}

._1 {
    flex: 1;
    max-width: 600px;
}

._i {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Manrope', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.1;
    margin-bottom: 24px;
}

._8 {
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

._y {
    font-size: 1.2rem;
    color: #a0a0a0;
    font-family: 'Manrope', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    margin-bottom: 40px;
}

._3 {
    display: flex;
    gap: 16px;
}

._z {
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Manrope', 'Helvetica', 'Arial', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-decoration: none;
}

._5 {
    background: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
}

._5:hover {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    transform: translateY(-2px);
}

._4 {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

._4:hover {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

._x {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

@media (min-width: 760px) {
    ._x {
        position: relative;
        top: -50px;
    }
}

@media (max-width: 1000px) {
    ._e {
        display: none;
    }
}

._m {
    position: relative;
    width: 400px;
    height: 400px;
    transition: transform 0.3s ease;
}

._m:hover {
    transform: scale(1.05);
}

._v {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

._a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

._b {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Partners Section */
._j {
    width: 100%;
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

._tt {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}



._dt {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: scrollPartners 60s linear infinite;
    width: 200%;
}

._pt {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

._pt:hover {
    opacity: 1;
}

._7t {
    height: 60px;
    width: auto;
    max-width: 180px;
    filter: grayscale(100%) brightness(0.8);
    transition: filter 0.3s ease;
}

._pt:hover ._7t {
    filter: grayscale(0%) brightness(1);
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Airdrop Info Section */
._wt {
    width: 100%;
    padding: 80px 0;
    background: transparent;
}

/* Live Charts Section */
._ot {
    width: 100%;
    padding: 80px 0;
    background: transparent;
}

/* Live Transactions Block */
._nd {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    max-height: 406px;
}

._0d {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

._6d {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

._hd {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 300px; /* Fixed height to prevent layout shifts */
    position: relative;
}

.transaction-item {
    display: flex;
    justify-content: space-around;
    gap: 16px;
    align-items: center;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 80px;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.transaction-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(var(--primary-color-rgb), 0.3);
    transform: translateY(-2px);
}

.transaction-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.transaction-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.transaction-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-family: "Courier New", monospace;
}

.transaction-hash {
    font-family: 'Courier New', monospace;
    color: var(--primary-color);
}

.transaction-signature {
    font-family: 'Courier New', monospace;
    color: var(--accent-color);
}

.transaction-amount {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
}

.transaction-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: var(--shadow-color);
    border: 1px solid var(--shadow-color-2);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Mobile responsiveness for transactions */
@media (max-width: 760px) {
    ._nd {
        margin-top: 20px;
        padding: 20px;
        max-height: 407px;
    }

    ._0d {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    ._6d {
        font-size: 1.25rem;
    }

    ._hd {
        min-height: 200px; /* Reduced height for mobile */
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
    }

    ._hd::-webkit-scrollbar {
        height: 6px;
    }

    ._hd::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 3px;
    }

    ._hd::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 3px;
    }

    ._hd::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.5);
    }

    .transaction-item {
        gap: 20px;
        min-width: 940px; /* Increased width to accommodate wider Status column with animated dot */
        max-height: 60px;
        align-items: center;
        flex-shrink: 0;
        padding-top: 10px;
    }

    .transaction-field {
        display: flex;
        flex-direction: column;
        gap: 2px;
        width: 100%; /* Use full grid column width */
        justify-content: center;
        height: 100%;
        overflow: hidden;
    }

    .transaction-label {
        font-size: 0.65rem;
        white-space: nowrap;
    }

    .transaction-value {
        font-size: 0.75rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: flex;
        align-items: center;
        height: 100%;
        line-height: 1.2;
    }

    .transaction-hash,
    .transaction-signature {
        font-size: 0.7rem;
        font-family: 'Courier New', monospace;
        display: flex;
        align-items: center;
        height: 100%;
        line-height: 1.2;
        width: 100%;
    }

    .transaction-amount {
        font-size: 0.8rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        height: 100%;
        line-height: 1.2;
        width: 100%;
    }

    .transaction-status {
        padding: 6px 16px;
        font-size: 0.7rem;
        justify-content: center;
        display: flex;
        align-items: center;
        height: 100%;
        line-height: 1.2;
        width: 100%;
        white-space: nowrap;
        gap: 6px;
    }

    .status-dot {
        width: 6px;
        height: 6px;
        flex-shrink: 0;
    }
}

/* FAQ Section */
._2d {
    width: 100%;
    padding: 0 0 80px 0;
    background: transparent;
}

._ed {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

._ud {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

._qd {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

._qd:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}



._kd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

._kd h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    font-family: 'Manrope', 'Helvetica', 'Arial', sans-serif;
    flex: 1;
}

._od {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 20px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

._gd {
    color: var(--primary-color);
    transition: all 0.3s ease;
    transform: rotate(0deg);
}

._qd.active ._gd {
    transform: rotate(180deg);
}

._qd:hover ._od {
    background: rgba(var(--primary-color-rgb), 0.2);
    transform: scale(1.05);
}

._sd {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 1rem;
    font-family: 'Manrope', 'Helvetica', 'Arial', sans-serif;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 0;
}

._qd.active ._sd {
    max-height: 200px;
    margin-top: 20px;
}

._sd p {
    margin: 0;
}

._sd ._8 {
    color: var(--primary-color);
    font-weight: 600;
}

._gt {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

._st {
    text-align: left;
    margin-bottom: 60px;
}

._ft {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    font-family: 'Manrope', 'Helvetica', 'Arial', sans-serif;
}

._lt {
    font-size: 1.1rem;
    color: #a0a0a0;
    line-height: 1.6;
    font-family: 'Manrope', 'Helvetica', 'Arial', sans-serif;
}

._9t {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

._9t:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

._9t::before {
    content: '';
    position: absolute;
    top: 30%;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-color-rgb), 0.1), transparent);
    animation: horizontalLine1 12s ease-in-out infinite;
    pointer-events: none;
}

._9t::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 30%;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(var(--accent-color-rgb), 0.1), transparent);
    animation: verticalLine1 15s ease-in-out infinite;
    pointer-events: none;
}

._9t {
    position: relative;
}

._9t::before,
._9t::after {
    z-index: 1;
}

._9t::before {
    animation-delay: 0s;
}

._9t::after {
    animation-delay: 3s;
}

/* Анимированные линии */
._1t {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

/* Горизонтальные линии */
._it {
    top: 20%;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-color-rgb), 0.2), transparent);
    animation: horizontalLine1 10s ease-in-out infinite;
}

._8t {
    top: 50%;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-color-rgb), 0.3), transparent);
    animation: horizontalLine2 12s ease-in-out infinite;
    animation-delay: 2s;
}

._yt {
    top: 80%;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-color-rgb), 0.25), transparent);
    animation: horizontalLine3 14s ease-in-out infinite;
    animation-delay: 4s;
}

/* Вертикальные линии */
._3t {
    top: -100%;
    left: 20%;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(var(--accent-color-rgb), 0.2), transparent);
    animation: verticalLine1 11s ease-in-out infinite;
    animation-delay: 1s;
}

._zt {
    top: -100%;
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(var(--accent-color-rgb), 0.3), transparent);
    animation: verticalLine2 13s ease-in-out infinite;
    animation-delay: 3s;
}

._5t {
    top: -100%;
    left: 80%;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(var(--accent-color-rgb), 0.25), transparent);
    animation: verticalLine3 15s ease-in-out infinite;
    animation-delay: 5s;
}

@keyframes horizontalLine1 {
    0% {
        left: -100%;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

@keyframes horizontalLine2 {
    0% {
        left: -100%;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

@keyframes horizontalLine3 {
    0% {
        left: -100%;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

@keyframes verticalLine1 {
    0% {
        top: -100%;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

@keyframes verticalLine2 {
    0% {
        top: -100%;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

@keyframes verticalLine3 {
    0% {
        top: -100%;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

._4t {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

._vt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
}

._at {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    font-family: 'Manrope', 'Helvetica', 'Arial', sans-serif;
}

._bt {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    padding: 8px 16px;
    position: relative;
}

._jt {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

._td {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Manrope', 'Helvetica', 'Arial', sans-serif;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

._xt {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

._mt {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    animation: pulseGlow 2s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

._mt:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px var(--primary-color);
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.1), 0 0 40px var(--primary-color);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.2), 0 0 60px var(--primary-color);
    }
}

._dd {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

._pd {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

._pd:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

._7d {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

._wd {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 48px;
    flex: 1;
    align-items: flex-start;
}

._cd {
    font-size: 0.875rem;
    color: #a0a0a0;
    font-weight: 500;
    font-family: 'Manrope', 'Helvetica', 'Arial', sans-serif;
    line-height: 1;
}

._rd {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Manrope', 'Helvetica', 'Arial', sans-serif;
    line-height: 1;
}

._ct {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

._rt {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 80px;
    min-height: 400px;
}

._nt {
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 0px;
}

._0t {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    font-family: 'Manrope', 'Helvetica', 'Arial', sans-serif;
}

._6t {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 32px;
    font-family: 'Manrope', 'Helvetica', 'Arial', sans-serif;
}

._ht {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Manrope', 'Helvetica', 'Arial', sans-serif;
    width: fit-content;
    text-decoration: none;
}

._ht:hover {
    background: var(--primary-color);
    color: #000000;
    transform: translateY(-2px);
}

._2t {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

._et {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
}

._et:hover {
    transform: translateY(-8px) rotate(2deg);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

._ut {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

._qt {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: 'Manrope', 'Helvetica', 'Arial', sans-serif;
}

._kt {
    font-size: 0.9rem;
    color: #b0b0b0;
    line-height: 1.5;
    font-family: 'Manrope', 'Helvetica', 'Arial', sans-serif;
}

.token-info {
    background: var(--surface-color);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 600px;
    border: 1px solid var(--border-color);
}

.token-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.token-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.token-details h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.token-symbol {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 10px;
}

.token-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.token-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

._rp {
    text-align: center;
    padding: 15px;
    background: var(--background-color);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

._cd {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

._rd {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.loading {
    text-align: center;
    padding: 40px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 600px;
}

@media (max-width: 760px) {
    ._n {
        padding: 15px 20px !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-direction: row !important;
    }

    ._0 {
        justify-content: flex-start !important;
        margin-left: 0 !important;
        flex: 0 0 auto !important;
        order: 1 !important;
    }

    ._2 {
        font-size: 1.2rem !important;
    }

    ._e {
        display: none !important;
    }

    ._q {
        font-size: 14px !important;
        padding: 12px 24px !important;
        margin-right: 0 !important;
        flex: 0 0 auto !important;
        order: 2 !important;
    }

    ._r {
        width: 150px !important;
        height: 150px !important;
        filter: blur(30px) !important;
    }

    ._o {
        padding: 40px 20px;
        align-items: center;
        text-align: center;
    }

    ._g {
        align-self: center;
        margin-bottom: 40px;
    }

    ._9 {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        align-items: center;
    }

    ._1 {
        text-align: center;
        align-items: center;
        max-width: 100%;
    }

    ._i {
        font-size: 2.5rem;
        text-align: center;
    }

    ._y {
        font-size: 1.1rem;
        text-align: center;
    }

    ._3 {
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;
    }

    ._m {
        width: 250px;
        height: 250px;
    }

    ._m:hover {
        transform: scale(1.03);
    }

    ._a {
        width: 80px;
        height: 80px;
    }

    ._b {
        width: 60px;
        height: 60px;
    }

    ._j {
        padding: 20px 0;
    }

    ._tt {
        padding: 0 20px;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }



    ._dt {
        gap: 60px;
    }

    ._7t {
        height: 45px;
        max-width: 140px;
    }

    ._wt {
        padding: 60px 0;
    }

    ._ct {
        padding: 0 20px;
    }

    ._rt {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        min-height: auto;
    }

    ._nt {
        max-width: 100%;
        justify-content: flex-start;
    }

    ._0t {
        font-size: 2rem;
    }

    ._6t {
        font-size: 1rem;
    }

    ._ht {
        align-self: center;
    }

    ._2t {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    ._et {
        padding: 20px;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    ._et:hover {
        transform: translateY(-4px) rotate(1deg);
    }

    ._ut {
        align-self: center !important;
        margin-bottom: 16px;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 48px !important;
        height: 48px !important;
    }

    ._qt {
        text-align: center;
    }

    ._kt {
        text-align: center;
    }

    /* Live Charts Mobile */
    ._ot {
        padding: 60px 0;
    }

    ._gt {
        padding: 0 20px;
    }

    ._ft {
        font-size: 2rem;
        text-align: center;
    }

    ._lt {
        text-align: center;
    }

    ._9t {
        padding: 30px 20px;
    }

    ._4t {
        margin-bottom: 20px;
        padding: 30px 0;
    }

    ._mt {
        width: 100px;
        height: 100px;
    }

    ._at {
        font-size: 1.25rem;
    }

    ._bt {
        padding: 6px 12px;
    }

    ._td {
        font-size: 0.8rem;
    }

    ._dd {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    ._pd {
        padding: 16px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    ._7d {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
        align-self: center;
    }

    ._wd {
        height: auto;
        align-items: center;
        text-align: center;
        gap: 4px;
        width: 100%;
    }

    ._rd {
        font-size: 1.1rem;
    }

    /* FAQ Mobile */
    ._2d {
        padding: 0 0 60px 0;
    }

    ._ed {
        padding: 0 20px;
    }

    ._qd {
        padding: 24px 20px;
        min-height: 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    ._kd {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0;
        min-height: 60px;
    }

    ._kd h3 {
        font-size: 1.1rem;
        text-align: left;
        flex: 1;
        margin: 0;
    }

    ._od {
        margin-left: 20px;
        align-self: center;
        width: 28px;
        height: 28px;
        flex-shrink: 0;
    }

    ._gd {
        width: 16px;
        height: 16px;
    }

    ._sd {
        font-size: 0.95rem;
        text-align: left;
    }

    ._qd.active ._sd {
        max-height: 300px;
    }
}

/* Footer */
._fd {
    background: #1a1a1a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 80px;
}

._ld {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

._9d {
    padding: 60px 0 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

._1d {
    flex: 1;
    max-width: 400px;
}

._vd {
    flex: 1;
    max-width: 600px;
}

._id {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

._8d {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

._yd {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
}

._3d {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
}

._zd {
    flex: 1;
    margin: 0;
    padding: 0;
}

._5d {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    font-family: 'Manrope', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.2;
}

._4d {
    font-size: 0.9rem;
    color: #a0a0a0;
    line-height: 1.4;
    margin: 0;
    padding: 0;
    font-family: 'Manrope', 'Helvetica', 'Arial', sans-serif;
    max-width: 400px;
    text-align: left;
}

._xd {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 0;
}

._md {
    width: 40px;
    height: 40px;
    background: #2a2a2a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

._md:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

._ad {
    display: flex;
    gap: 60px;
    justify-content: flex-end;
}

._bd {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

._jd {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    font-family: 'Manrope', 'Helvetica', 'Arial', sans-serif;
}

._tp {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

._dp {
    cursor: pointer;
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9rem;
    font-family: 'Manrope', 'Helvetica', 'Arial', sans-serif;
    transition: color 0.3s ease;
}

._dp:hover {
    color: var(--primary-color);
}

._pp {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0;
    width: 100%;
}

._7p {
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

._wp {
    color: #a0a0a0;
    font-size: 0.9rem;
    font-family: 'Manrope', 'Helvetica', 'Arial', sans-serif;
    flex-shrink: 0;
}

._wp p {
    margin: 0;
    white-space: nowrap;
}

._cp {
    display: flex;
    gap: 48px;
    align-items: center;
    flex-shrink: 0;
}

._cp ._rp {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}

._cp ._rd {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2px;
    font-family: 'Manrope', 'Helvetica', 'Arial', sans-serif;
    line-height: 1;
    background: none;
    border: none;
    padding: 0;
}

._cp ._cd {
    font-size: 0.75rem;
    color: #a0a0a0;
    font-weight: 400;
    font-family: 'Manrope', 'Helvetica', 'Arial', sans-serif;
    letter-spacing: 0.3px;
    line-height: 1;
    white-space: nowrap;
    background: none;
    border: none;
    padding: 0;
}

/* Footer Mobile */
@media (max-width: 760px) {
    ._ld {
        padding: 0 20px;
    }

    ._9d {
        padding: 40px 0 32px 0;
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    ._1d {
        max-width: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    ._vd {
        max-width: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    ._id {
        gap: 20px;
        align-items: center;
        width: 100%;
        max-width: 400px;
    }

    ._8d {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        text-align: center;
        width: 100%;
    }

    ._yd {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        min-width: 45px;
        min-height: 45px;
        max-width: 45px;
        max-height: 45px;
    }

    ._3d {
        width: 45px;
        height: 45px;
        min-width: 45px;
        min-height: 45px;
        max-width: 45px;
        max-height: 45px;
    }

    ._zd {
        text-align: center;
        width: 100%;
    }

    ._5d {
        font-size: 1rem;
        text-align: center;
    }

    ._4d {
        font-size: 0.75rem;
        max-width: 100%;
        text-align: center;
        margin-left: 0;
    }

    ._xd {
        gap: 10px;
        justify-content: center;
        margin-top: 4px;
    }

    ._md {
        width: 36px;
        height: 36px;
    }

    ._ad {
        gap: 30px;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        max-width: 600px;
    }

    ._bd {
        gap: 12px;
        min-width: 120px;
        text-align: center;
    }

    ._jd {
        font-size: 0.8rem;
        text-align: center;
    }

    ._tp {
        gap: 6px;
        align-items: center;
    }

    ._dp {
        font-size: 0.7rem;
        text-align: center;
    }

    ._7p {
        flex-direction: column;
        gap: 24px;
        text-align: center;
        align-items: center;
        width: 100%;
    }

    ._wp {
        text-align: center;
        width: 100%;
        font-size: 0.8rem;
        line-height: 1.3;
        max-width: 280px;
    }

    ._wp p {
        white-space: normal;
        word-wrap: break-word;
    }

    ._cp {
        gap: 24px;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
    }

    ._cp ._rp {
        align-items: center;
        text-align: center;
    }

    ._cp ._rd {
        font-size: 0.8rem;
    }

    ._cp ._cd {
        font-size: 0.65rem;
    }
}



    @keyframes floatLight {
        0% {
            transform: translate(0, 0) scale(1);
            opacity: 0.6;
        }
        25% {
            transform: translate(30px, -5px) scale(1.1);
            opacity: 0.8;
        }
        50% {
            transform: translate(60px, 5px) scale(0.9);
            opacity: 0.4;
        }
        75% {
            transform: translate(30px, 10px) scale(1.05);
            opacity: 0.7;
        }
        100% {
            transform: translate(0, 0) scale(1);
            opacity: 0.6;
        }
    }





    .token-header {
        flex-direction: column;
        text-align: center;
    }

body{user-select:none;-webkit-user-select:none;}html{}

    .token-stats {
        grid-template-columns: 1fr;
}

@media (max-width: 480px) {
    ._n {
        padding: 12px 20px !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-direction: row !important;
    }

    ._0 {
        gap: 10px !important;
        flex: 0 0 auto !important;
        order: 1 !important;
    }

    ._6 {
        width: 35px !important;
        height: 35px !important;
    }

    ._2 {
        font-size: 1.1rem !important;
    }

    ._q {
        font-size: 13px !important;
        padding: 10px 20px !important;
        flex: 0 0 auto !important;
        order: 2 !important;
    }

    ._r {
        width: 120px !important;
        height: 120px !important;
        filter: blur(25px) !important;
    }
}

@media (max-width: 760px) {
    ._n {
        justify-content: space-between!important;
        flex-direction: row!important;
    }

    ._0 {
        order: 1!important;
        flex: 0 0 auto!important;
    }

    ._q {
        order: 2!important;
        flex: 0 0 auto!important;
    }
}