/* Global Refinements */
body {
    background-color: #0F172A; /* Fallback */
    background-image: radial-gradient(circle at 50% 0%, #1e1b4b 0%, #0F172A 100%);
}

/* 3D Tilt Effect Utilities */
.perspective-container {
    perspective: 1000px;
}

.preserve-3d {
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out; /* Smooth follow */
}

.translate-z-\[-50px\] { transform: translateZ(-50px); }
.translate-z-\[50px\] { transform: translateZ(50px); }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0F172A; 
}
::-webkit-scrollbar-thumb {
    background: #581C87; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #7E22CE; 
}

/* Neon Glows */
.text-glow {
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5), 0 0 20px rgba(168, 85, 247, 0.3);
}

/* Glassmorphism Card Base */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}
