/* Custom Styles to augment Tailwind CSS */

body {
    background-color: #0b0f19;
    background-image: 
        radial-gradient(at 0% 0%, hsla(228, 100%, 74%, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 0%, hsla(280, 100%, 74%, 0.05) 0px, transparent 50%);
    background-attachment: fixed;
}

/* Glassmorphism Panel styles */
.market-tile {
    background: rgba(21, 26, 40, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.market-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Status Indicator Glow */
.status-indicator {
    box-shadow: 0 0 10px currentColor;
}

/* Smooth transitions */
.transition-colors-all {
    transition: all 0.4s ease;
}

/* Substring text gradient */
.text-gradient {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
