/* assets/css/custom.css */

/* Global Theme Tweaks */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #080B13;
}
::-webkit-scrollbar-thumb {
    background: #1F293D;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #6366f1;
}

/* Glassmorphism utility card */
.glass-panel {
    background: rgba(15, 21, 36, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(31, 41, 61, 0.7);
}

/* Glowing animation rings */
@keyframes neon-glow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(99, 102, 241, 0.2), inset 0 0 10px rgba(99, 102, 241, 0.1);
    }
    50% {
        box-shadow: 0 0 25px rgba(99, 102, 241, 0.4), inset 0 0 15px rgba(99, 102, 241, 0.2);
    }
}

.glow-card {
    animation: neon-glow 3s infinite ease-in-out;
}

/* Print CSS Configurations (for browser window.print() or PDF generators) */
@media print {
    .no-print, nav, aside, footer, button, .public-cta-banner {
        display: none !important;
    }
    body, html, main {
        background: #ffffff !important;
        color: #000000 !important;
        height: auto !important;
        overflow: visible !important;
    }
    .grid {
        display: block !important;
    }
    .rounded-2xl, .rounded-3xl, .rounded-xl {
        border-radius: 0 !important;
        border: 1px solid #e2e8f0 !important;
        margin-bottom: 20px !important;
        background: #ffffff !important;
        page-break-inside: avoid !important;
    }
    img {
        max-height: 350px !important;
        page-break-inside: avoid !important;
    }
}
