        body {
            background-color: #0a0f0d;
            color: #e8f5ee;
            font-family: 'Inter', system-ui, sans-serif;
            overflow-x: hidden;
        }

        .gradient-text {
            background: linear-gradient(135deg, #00d084 0%, #00ffaa 50%, #00d084 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .gradient-border {
            position: relative;
            background: linear-gradient(135deg, #111916 0%, #0d1411 100%);
        }
        .gradient-border::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 1px;
            background: linear-gradient(135deg, rgba(0, 208, 132, 0.3), rgba(0, 208, 132, 0.05));
            -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;
        }

        .grid-bg {
            background-image: 
                linear-gradient(rgba(0, 208, 132, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 208, 132, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
        }

        .hero-glow {
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 208, 132, 0.15) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
            z-index: 0;
        }

        .glass-card {
            background: rgba(17, 25, 22, 0.8);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 208, 132, 0.1);
        }

        .nav-glass {
            background: rgba(10, 15, 13, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 208, 132, 0.08);
        }

        .trade-row:hover {
            background: rgba(0, 208, 132, 0.05);
        }

        .scrollbar-hide::-webkit-scrollbar {
            display: none;
        }
        .scrollbar-hide {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        .chart-line {
            stroke-dasharray: 1000;
            stroke-dashoffset: 1000;
            animation: drawLine 3s ease-out forwards;
        }

        @keyframes drawLine {
            to { stroke-dashoffset: 0; }
        }

        .feature-icon {
            background: linear-gradient(135deg, rgba(0, 208, 132, 0.15), rgba(0, 208, 132, 0.05));
            border: 1px solid rgba(0, 208, 132, 0.2);
        }

        .btn-primary {
            background: linear-gradient(135deg, #00d084, #00b870);
            box-shadow: 0 4px 24px rgba(0, 208, 132, 0.3);
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            box-shadow: 0 6px 32px rgba(0, 208, 132, 0.5);
            transform: translateY(-1px);
        }

        .btn-secondary {
            border: 1px solid rgba(0, 208, 132, 0.3);
            background: transparent;
            transition: all 0.3s ease;
        }
        .btn-secondary:hover {
            background: rgba(0, 208, 132, 0.1);
            border-color: rgba(0, 208, 132, 0.5);
        }

        .stat-number {
            font-variant-numeric: tabular-nums;
        }

        .orderbook-row {
            position: relative;
            overflow: hidden;
        }
        .orderbook-row::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            height: 100%;
            background: currentColor;
            opacity: 0.1;
            transition: width 0.3s ease;
        }

        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease-out;
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .stack-layer {
            transform-style: preserve-3d;
            transition: transform 0.5s ease;
        }
        .stack-layer:hover {
            transform: translateZ(20px) scale(1.02);
        }