/* ----- RESET & BASE ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    background: #020817;
    color: white;
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
}

.font-display {
    font-family: 'Orbitron', monospace;
}

a {
    text-decoration: none;
    color: inherit;
    font-weight: 900
}

/* ----- ANIMATIONS ----- */
@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px #38bdf855;
    }

    50% {
        box-shadow: 0 0 60px #38bdf8aa, 0 0 120px #38bdf844;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.15;
    }

    50% {
        opacity: 0.30;
    }
}

.animate-spin-slow {
    animation: spin-slow 20s linear infinite;
}

.glow-pulse {
    animation: glow-pulse 3s ease-in-out infinite;
}

/* ----- UTILITY ----- */
.section-padding {
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 4rem 0;
    }
}

.max-w-7xl {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.max-w-6xl {
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
}

.max-w-5xl {
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

.max-w-4xl {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (max-width: 640px) {
    .px-6 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.text-gradient {
    background: linear-gradient(135deg, #38bdf8, #818cf8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #fbbf24, #f97316, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ----- BUTTONS & BADGES ----- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #38bdf8, #2563eb);
    color: white;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.25);
}

    .btn-primary:hover {
        transform: scale(1.05);
        opacity: 0.95;
    }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .btn-outline:hover {
        background: rgba(255, 255, 255, 0.1);
    }

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(56, 189, 248, 0.3);
    background: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
    font-size: 0.875rem;
    font-weight: 600;
}

/* ----- NAV ----- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 1.2rem 0;
    background: rgba(2, 8, 23, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgb(255 255 255 / 11%);
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

    .nav-links a {
        color: #cad5e2;
        font-size: 0.875rem;
        font-weight: 500;
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: #38bdf8;
        }

.logo-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.logo-icon1 img {
    height: 50px;
    display: flex;
    align-items: center;
    
   
    
}
  
    .logo-icon img {
        height: 50px;
        width: auto;
        display: block;
    }

.logo-badge {
    font-size: 0.65rem;
    font-weight: 700;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.3);
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }
}

/* ----- HERO ----- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    background: #020817;
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(56, 189, 248, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(56, 189, 248, 0.04) 1px, transparent 1px);
        background-size: 60px 60px;
        pointer-events: none;
        z-index: 0;
    }

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(3rem);
    pointer-events: none;
    z-index: 0;
    animation: pulse 4s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.3), rgba(59, 130, 246, 0.1));
    top: -15%;
    left: -10%;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(129, 140, 248, 0.3), rgba(192, 132, 252, 0.1));
    bottom: -10%;
    right: -8%;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.25), rgba(6, 182, 212, 0.1));
    top: 40%;
    right: 15%;
}

@media (max-width: 768px) {
    .orb-1 {
        width: 250px;
        height: 250px;
        top: -10%;
        left: -20%;
    }

    .orb-2 {
        width: 200px;
        height: 200px;
        bottom: -5%;
        right: -20%;
    }

    .orb-3 {
        width: 120px;
        height: 120px;
        top: 50%;
        right: 5%;
    }
}

.ring-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    width: min(80vw, 600px);
    aspect-ratio: 1/1;
}

.ring-1 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1.5px dashed rgba(56, 189, 248, 0.12);
    animation: spin-slow 20s linear infinite;
}

.ring-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    border-radius: 50%;
    border: 1.5px solid rgba(59, 130, 246, 0.08);
    animation: spin-slow 15s linear infinite reverse;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 6rem 1.5rem 4rem;
    width: 100%;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

    .hero-title .block {
        display: block;
    }

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
}

.stat-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.stat-label {
    color: #94a3b8;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-value {
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 1;
}

.scroll-line {
    width: 1px;
    height: 2.5rem;
    background: linear-gradient(to bottom, rgba(56, 189, 248, 0.4), transparent);
}

/* ----- SECTIONS ----- */
.section-label {
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    color: #38bdf8;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 2rem;
    color: white;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.75rem;
    }
}

.section-sub {
    color: #cbd5e1;
    font-size: 1.125rem;
    margin-top: 1rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* stats cards */
.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

    .stat-card:hover {
        border-color: rgba(56, 189, 248, 0.3);
    }

    .stat-card .number {
        font-family: 'Orbitron', monospace;
        font-weight: 900;
        font-size: 2rem;
        background: linear-gradient(135deg, #38bdf8, #818cf8, #c084fc);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

@media (min-width: 768px) {
    .stat-card .number {
        font-size: 2.5rem;
    }
}

/* feature grid */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(to bottom, rgba(8, 145, 178, 0.12), transparent);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

    .feature-card:hover {
        transform: translateY(-6px);
        border-color: rgba(255, 255, 255, 0.2);
    }

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    border: 1px solid rgba(56, 189, 248, 0.25);
    background: rgba(56, 189, 248, 0.08);
    color: #38bdf8;
}

.feature-card h3 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: white;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.feature-card p {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* tokenomics */
.token-card {
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

    .token-card:hover {
        border-color: rgba(255, 255, 255, 0.15);
    }

    .token-card .pct {
        font-family: 'Orbitron', monospace;
        font-weight: 900;
        font-size: 2.5rem;
    }

    .token-card .bar {
        margin-top: 1.25rem;
        height: 0.375rem;
        border-radius: 9999px;
        background: rgba(255, 255, 255, 0.06);
        overflow: hidden;
    }

    .token-card .bar-fill {
        height: 100%;
        border-radius: 9999px;
        transition: width 1s;
    }

.token-highlight {
    border-color: rgba(251, 191, 36, 0.4);
    background: linear-gradient(to bottom, rgba(251, 191, 36, 0.12), transparent);
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.08);
}

@media (max-width: 768px) {
    .token-highlight {
        transform: scale(1);
    }
}

/* earnings */
.earn-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .earn-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.earn-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.2s;
    /*flex-wrap: wrap;*/
    gap: 0.5rem;
}

    .earn-item:hover {
        border-color: rgba(255, 255, 255, 0.15);
    }

    .earn-item .label {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: #e2e8f0;
        font-weight: 500;
        font-size: 0.95rem;
    }

    .earn-item .value {
        font-weight: 700;
        color: white;
        font-size: 0.95rem;
        text-align:right;
    }

/* circle */
.circle-container {
    position: relative;
    width: 18rem;
    height: 18rem;
    margin: 0 auto;
    max-width: 100%;
    aspect-ratio: 1/1;
}

@media (max-width: 480px) {
    .circle-container {
        width: 14rem;
        height: 14rem;
    }
}

.circle-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed rgba(56, 189, 248, 0.15);
    animation: spin-slow 20s linear infinite;
}

.circle-center {
    position: absolute;
    inset: 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(37, 99, 235, 0.15));
    border: 1px solid rgba(56, 189, 248, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(56, 189, 248, 0.15);
}

    .circle-center .big {
        font-family: 'Orbitron', monospace;
        font-weight: 900;
        font-size: 2.5rem;
        color: white;
    }

@media (max-width: 480px) {
    .circle-center .big {
        font-size: 2rem;
    }
}

.circle-dot {
    position: absolute;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    border: 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 189, 248, 0.06);
}

    .circle-dot .inner {
        width: 0.4rem;
        height: 0.4rem;
        border-radius: 50%;
    }

/* bonus grid */
.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bonus-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bonus-card {
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(4px);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

    .bonus-card:hover {
        transform: translateY(-6px);
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .bonus-card .icon-wrap {
        width: 2.75rem;
        height: 2.75rem;
        border-radius: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.75rem;
        font-size: 1.1rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.04);
    }

    .bonus-card .step {
        font-size: 0.6rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        margin-bottom: 0.25rem;
    }

    .bonus-card h3 {
        color: white;
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .bonus-card p {
        color: #94a3b8;
        font-size: 0.85rem;
        line-height: 1.6;
    }

/* roadmap */
.roadmap-wrapper {
    position: relative;
}

.roadmap-line {
    position: absolute;
    left: 1.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgba(56, 189, 248, 0.3), rgba(139, 92, 246, 0.3), transparent);
}

.roadmap-item {
    position: relative;
    padding-left: 3.5rem;
    padding-bottom: 2rem;
}

    .roadmap-item:last-child {
        padding-bottom: 0;
    }

    .roadmap-item .dot {
        position: absolute;
        left: 1rem;
        top: 0.25rem;
        width: 1.25rem;
        height: 1.25rem;
        border-radius: 50%;
        border: 2px solid;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.04);
    }

        .roadmap-item .dot .inner {
            width: 0.4rem;
            height: 0.4rem;
            border-radius: 50%;
        }

    .roadmap-item .content {
        padding: 1rem;
        border-radius: 0.75rem;
        border: 1px solid rgba(255, 255, 255, 0.06);
        background: rgba(255, 255, 255, 0.03);
        transition: all 0.2s;
    }

        .roadmap-item .content:hover {
            border-color: rgba(255, 255, 255, 0.15);
        }

/* footer */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2.5rem 0;
}

/* level table */
.level-table {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.level-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0.6rem 1rem;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

    .level-row.header {
        background: rgba(255, 255, 255, 0.05);
        font-weight: 700;
        font-size: 0.6rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #94a3b8;
    }

    .level-row .level {
        color: white;
        font-weight: 600;
        font-size: 0.9rem;
    }

    .level-row .comm {
        text-align: center;
        font-family: 'Orbitron', monospace;
        font-weight: 900;
        font-size: 1.1rem;
    }

    .level-row .inf {
        text-align: right;
        font-weight: 700;
        font-size: 0.9rem;
    }

@media (max-width: 480px) {
    .level-row {
        padding: 0.5rem 0.6rem;
        font-size: 0.75rem;
    }

        .level-row .comm {
            font-size: 0.85rem;
        }

        .level-row .level {
            font-size: 0.75rem;
        }

        .level-row .inf {
            font-size: 0.75rem;
        }
}

/* section bg orbs */
.section-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(3rem);
    pointer-events: none;
    z-index: 0;
    animation: pulse 4s ease-in-out infinite;
}

/* utility classes */
.grid-cols-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .grid-cols-2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.grid-cols-1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .grid-cols-1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.text-center {
    text-align: center;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.overflow-hidden {
    overflow: hidden;
}

.w-full {
    width: 100%;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mb-14 {
    margin-bottom: 3.5rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .sm\:flex-row {
        flex-direction: row;
    }
}

.text-slate-200 {
    color: #e2e8f0;
}

.text-slate-300 {
    color: #cbd5e1;
}

.text-slate-400 {
    color: #94a3b8;
}

.text-slate-500 {
    color: #64748b;
}

.text-white {
    color: white;
}

.text-cyan-300 {
    color: #67e8f9;
}

.text-cyan-400 {
    color: #22d3ee;
}

.text-violet-300 {
    color: #c4b5fd;
}

.text-violet-400 {
    color: #a78bfa;
}

.text-emerald-300 {
    color: #6ee7b7;
}

.text-emerald-400 {
    color: #34d399;
}

.text-amber-300 {
    color: #fcd34d;
}

.text-amber-400 {
    color: #fbbf24;
}

.text-cyan-100 {
    color: #cffafe;
}

.font-light {
    font-weight: 300;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-black {
    font-weight: 900;
}

.text-sm {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-5xl {
    font-size: 2.75rem;
}

.text-6xl {
    font-size: 3rem;
}

@media (min-width: 768px) {
    .md\:text-2xl {
        font-size: 1.5rem;
    }

    .md\:text-5xl {
        font-size: 3rem;
    }

    .md\:text-6xl {
        font-size: 3.75rem;
    }

    .md\:text-7xl {
        font-size: 4.5rem;
    }
}

.tracking-tight {
    letter-spacing: -0.02em;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.leading-tight {
    line-height: 1.2;
}

.leading-relaxed {
    line-height: 1.6;
}

.border-white\/10 {
    border-color: rgba(255, 255, 255, 0.1);
}

.border-white\/20 {
    border-color: rgba(255, 255, 255, 0.2);
}

.border-cyan-400\/30 {
    border-color: rgba(34, 211, 238, 0.3);
}

.border-amber-400\/30 {
    border-color: rgba(251, 191, 36, 0.3);
}

.bg-white\/5 {
    background-color: rgba(255, 255, 255, 0.05);
}

.bg-white\/10 {
    background-color: rgba(255, 255, 255, 0.1);
}

.bg-cyan-400\/10 {
    background-color: rgba(34, 211, 238, 0.1);
}

.bg-amber-400\/10 {
    background-color: rgba(251, 191, 36, 0.1);
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-cyan-400 {
    --tw-gradient-from: #22d3ee;
}

.from-cyan-500 {
    --tw-gradient-from: #06b6d4;
}

.to-blue-600 {
    --tw-gradient-to: #2563eb;
}

.to-violet-600 {
    --tw-gradient-to: #7c3aed;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.shadow-cyan-500\/25 {
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.25);
}

.shadow-cyan-500\/20 {
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.2);
}

.shadow-amber-500\/10 {
    box-shadow: 0 0 40px rgba(245, 158, 11, 0.1);
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.transition-colors {
    transition-property: color, background-color, border-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 200ms;
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.duration-300 {
    transition-duration: 300ms;
}

.duration-500 {
    transition-duration: 500ms;
}

.duration-1000 {
    transition-duration: 1000ms;
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.hover\:translate-x-1:hover {
    transform: translateX(0.25rem);
}

.hover\:-translate-y-2:hover {
    transform: translateY(-0.5rem);
}

.hover\:opacity-95:hover {
    opacity: 0.95;
}

.hover\:border-white\/25:hover {
    border-color: rgba(255, 255, 255, 0.25);
}

.hover\:border-white\/30:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.hover\:border-white\/20:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.hover\:bg-white\/10:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hover\:bg-white\/5:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.hover\:text-cyan-300:hover {
    color: #67e8f9;
}

.group-hover\:scale-110:group-hover {
    transform: scale(1.1);
}

.group-hover\:translate-x-1:group-hover {
    transform: translateX(0.25rem);
}

.group-hover\:opacity-100:group-hover {
    opacity: 1;
}

.absolute {
    position: absolute;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.inset-8 {
    top: 2rem;
    right: 2rem;
    bottom: 2rem;
    left: 2rem;
}

.inset-16 {
    top: 4rem;
    right: 4rem;
    bottom: 4rem;
    left: 4rem;
}

.top-4 {
    top: 1rem;
}

.right-4 {
    right: 1rem;
}

.top-1\/2 {
    top: 50%;
}

.left-1\/2 {
    left: 50%;
}

.-translate-x-1\/2 {
    transform: translateX(-50%);
}

.-translate-y-1\/2 {
    transform: translateY(-50%);
}

.pointer-events-none {
    pointer-events: none;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.border {
    border-width: 1px;
    border-style: solid;
}

.border-t {
    border-top-width: 1px;
    border-top-style: solid;
}

.border-2 {
    border-width: 2px;
    border-style: solid;
}

.border-dashed {
    border-style: dashed;
}

.w-10 {
    width: 2.5rem;
}

.w-14 {
    width: 3.5rem;
}

.w-12 {
    width: 3rem;
}

.w-9 {
    width: 2.25rem;
}

.w-8 {
    width: 2rem;
}

.w-0\.5 {
    width: 0.125rem;
}

.w-2 {
    width: 0.5rem;
}

.w-px {
    width: 1px;
}

.w-\[700px\] {
    width: 700px;
}

.w-\[500px\] {
    width: 500px;
}

.h-10 {
    height: 2.5rem;
}

.h-14 {
    height: 3.5rem;
}

.h-12 {
    height: 3rem;
}

.h-9 {
    height: 2.25rem;
}

.h-8 {
    height: 2rem;
}

.h-0\.5 {
    height: 0.125rem;
}

.h-2 {
    height: 0.5rem;
}

.h-\[700px\] {
    height: 700px;
}

.h-\[500px\] {
    height: 500px;
}

.h-12 {
    height: 3rem;
}

.min-h-screen {
    min-height: 100vh;
}

.min-h-full {
    min-height: 100%;
}

.opacity-0 {
    opacity: 0;
}

.opacity-20 {
    opacity: 0.2;
}

.opacity-100 {
    opacity: 1;
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.blur-3xl {
    filter: blur(3rem);
}

.shadow-inner {
    box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.06);
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-5 {
    margin-bottom: 1.25rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mr-1 {
    margin-right: 0.25rem;
}

.ml-1 {
    margin-left: 0.25rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-7 {
    padding: 1.75rem;
}

.p-8 {
    padding: 2rem;
}

.p-5 {
    padding: 1.25rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-0\.5 {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.pb-20 {
    padding-bottom: 5rem;
}

.pb-10 {
    padding-bottom: 2.5rem;
}

.pt-32 {
    padding-top: 8rem;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.flex-wrap {
    flex-wrap: wrap;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-md {
    max-width: 28rem;
}

.max-w-sm {
    max-width: 24rem;
}

.w-80 {
    width: 20rem;
}

.h-80 {
    height: 20rem;
}

.scale-105 {
    transform: scale(1.05);
}

.group-hover\:opacity-100:group-hover {
    opacity: 1;
}

/* Fix for mobile */
@media (max-width: 480px) {
    .text-6xl {
        font-size: 2.5rem;
    }

    .text-4xl {
        font-size: 1.8rem;
    }

    .text-5xl {
        font-size: 2.2rem;
    }
}
@media (max-width:767px) {
    .dropdown-lang-converter {
        margin-left: 156px;
        margin-left: auto;
        margin-right: 12px;
    }
}

.wallet-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    padding: 10px 0;
    /*-webkit-overflow-scrolling: touch;*/
    /*scrollbar-width: none;*/ /* Firefox */
}

    /*.wallet-scroll::-webkit-scrollbar {
                display: none;*/ /* Chrome/Safari */
    /*}*/

    .wallet-scroll a {
        flex: 0 0 auto;
        text-decoration: none;
    }

.wallet-card {
    min-width: 165px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #a78bfa;
    border: 2px solid rgba(167,139,250,.3);
    background: rgba(167,139,250,.08);
    border-radius: 16px;
    cursor: pointer;
}

.feature-grid {
    display: grid;
    gap: 20px;
}

@media (max-width:639px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        width: 100%;
    }
}

@media (min-width:640px) and (max-width:1023px) {
    .feature-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .feature-card:nth-child(5),
    .feature-card:nth-child(6) {
        grid-column: auto;
    }
}

@media (min-width:1024px) {
    .feature-grid {
        grid-template-columns: repeat(4,1fr);
    }

    .feature-card:nth-child(5) {
        grid-column: 2;
    }

    .feature-card:nth-child(6) {
        grid-column: 3;
    }
}