/* ════════════════════════════════════════════════════════
   BINJAW.CO — Stylesheet (v5)
   ════════════════════════════════════════════════════════ */

.noise-bg {
    background-image: url(images/noise.png);
    opacity: 0.03;
}
.glow-purple {
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.3);
}
.glow-cyan {
    box-shadow: 0 0 20px rgba(77, 184, 255, 0.15);
}
.text-gradient {
    background: linear-gradient(135deg, #4db8ff, #6c5ce7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-glow {
    text-shadow: 0 0 20px rgba(77, 184, 255, 0.4);
}
.glass-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.grid-pattern {
    background-image: linear-gradient(to right, rgba(77, 184, 255, 0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(77, 184, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}
@keyframes gradient {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}
.animate-gradient {
    animation: gradient 3s linear infinite;
}
/* Mobile nav overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    background: rgba(2, 2, 5, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}
.mobile-nav-overlay.open {
    display: flex;
}