/* --- Career Junction Hub Styles --- */

.glass-module {
  background: rgba(15, 23, 42, 0.3);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.glass-module:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.blueprint-bg {
  background-image: 
    linear-gradient(rgba(99, 102, 241, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
}

.shadow-glow {
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
}

/* Kinetic Drift Overlay */
.kinetic-grid {
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(99, 102, 241, 0.1) 1px, transparent 0);
    background-size: 40px 40px;
    z-index: -1;
    animation: grid-drift 120s linear infinite;
}

@keyframes grid-drift {
    from { background-position: 0 0; }
    to { background-position: 1000px 1000px; }
}

/* Nav Link Polish */
.compact-footer-link {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #475569;
    transition: all 0.3s ease;
}

.compact-footer-link:hover {
    color: white;
}

/* Tablet / Mobile tweaks */
@media (max-width: 768px) {
    .glass-module {
        padding: 2.5rem !important;
        border-radius: 2.5rem !important;
    }
}