@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary: #0ea5e9; /* Teal/Blue */
    --background-light: #f8fafc;
    --background-dark: #0f172a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; scroll-behavior: smooth; }

.glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.dark .glass {
    background: rgba(15, 23, 42, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@keyframes ping {
    75%, 100% { transform: scale(2); opacity: 0; }
}
.animate-ping { animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; }

/* Hide scrollbar for clean mobile menu */
#mobile-menu::-webkit-scrollbar { display: none; }

.deadline-banner {
    background-color: rgba(80, 72, 229, 0.95); /* primary tone */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(15, 23, 42, 0.25);
    color: #ffffff;
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
    position: absolute;
    top: 80px; /* just below fixed header (h-20 = 80px) */
    left: 0;
    width: 100%;
    z-index: 40;
    font-family: 'Inter', sans-serif;
}

.deadline-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 25s linear infinite;
    font-weight: 600;
    font-size: 1.05rem;
}

.deadline-content:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}