/* PREMIUM OVERRIDES - Cleans up legacy CSS conflicts */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #050a0e; /* Fallback */
}

/* Scrollbar Polish */
.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Remove GridStack Artifacts */
.grid-stack {
    display: flex !important;
    gap: 2rem;
    height: auto !important;
}
.grid-stack-item {
    position: relative !important;
    width: 100% !important;
    top: auto !important;
    left: auto !important;
}

/* Animations */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 15px rgba(0, 229, 255, 0.2); }
    50% { box-shadow: 0 0 25px rgba(0, 229, 255, 0.4); }
}

.animate-pulse-glow {
    animation: pulse-glow 3s infinite;
}

/* Glassmorphism Utilities */
.glass-panel {
    background: rgba(10, 20, 28, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
