body {
    background-color: #080f1e;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    cursor: none; 
}

/* Custom Cursor */
#cursor-glow {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.glass-panel {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: visible; 
}

.glass-btn {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

/* Background effects */
.cyber-grid {
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    pointer-events: none;
    perspective: 1000px;
    transform: rotateX(60deg) scale(2.5) translateY(-20%);
    animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 0 50px; }
}

.blob {
    position: fixed;
    filter: blur(90px);
    z-index: -1;
    opacity: 0.5;
    animation: float 15s infinite ease-in-out alternate;
    pointer-events: none;
}
.blob-1 { top: 10%; right: 10%; width: 400px; height: 400px; background: #4f46e5; border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
.blob-2 { bottom: 10%; left: 10%; width: 500px; height: 500px; background: #0ea5e9; border-radius: 60% 40% 30% 70% / 50% 40% 60% 50%; animation-delay: -5s; }

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 80px) scale(1.1); }
}

/* Ticker - Speed increased to 15s */
.ticker-wrap {
    width: 100%;
    background: rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    height: 30px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 50;
}
.ticker-move {
    display: flex;
    white-space: nowrap;
    animation: ticker 15s linear infinite; 
    gap: 2rem;
}
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(100%); }
}

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(99, 102, 241, 0.5); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(99, 102, 241, 0.8); }

/* Fast Scroll Container */
.assets-container {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 5px;
    -webkit-overflow-scrolling: touch; /* For faster native mobile scrolling */
}

/* 3D Tilt Effect */
.tilt-card {
    transform-style: preserve-3d;
    transform: perspective(1000px);
    transition: transform 0.1s;
}
.tilt-content { transform: translateZ(30px); }

/* Helpers */
.price-up { color: #22c55e !important; text-shadow: 0 0 10px rgba(34,197,94,0.5); }
.price-down { color: #ef4444 !important; text-shadow: 0 0 10px rgba(239,68,68,0.5); }
.hidden-view { display: none !important; }