/* Custom styles and animations */

body {
    background-color: #050508;
    background-image: radial-gradient(circle at 2px 2px, rgba(59, 73, 76, 0.15) 1px, transparent 0);
    background-size: 40px 40px;
}

.glass-panel {
    backdrop-filter: blur(20px) saturate(180%);
    background: rgba(19, 19, 23, 0.7);
}

.neon-glow-primary {
    box-shadow: 0 0 20px rgba(0, 225, 255, 0.15);
}

.ghost-border {
    border: 1px solid rgba(59, 73, 76, 0.2);
}

.arc-reactor-ring {
    border: 2px solid transparent;
    border-top-color: #00e1ff;
    border-radius: 50%;
}

/* Scroll reveal classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.navbar-scrolled {
    background: rgba(5, 5, 8, 0.95) !important;
    border-bottom: 1px solid rgba(0, 225, 255, 0.2) !important;
    box-shadow: 0 4px 30px rgba(0, 225, 255, 0.1) !important;
}
