@font-face {
    font-family: 'NeusaBold';
    src: url('../../fonts/NeusaMt2-Bold.woff2') format('woff2'),
         url('../../fonts/NeusaMt2-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'NeusaRegular';
    src: url('../../fonts/NeusaNus2-Regular.woff2') format('woff2'),
         url('../../fonts/NeusaNus2-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary: #005bbf;
    --font-heading: 'NeusaBold', 'Noto Sans Georgian', sans-serif;
    --font-body: 'NeusaRegular', 'Public Sans', sans-serif;
}

body {
    font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6, .font-title-lg, .font-headline-md {
    font-family: var(--font-heading) !important;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    pointer-events: none;
}

.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

.active-timer-ring {
    background: conic-gradient(from 0deg, var(--primary) 0%, var(--primary) 75%, #e0e2ec 75%, #e0e2ec 100%);
}

/* Premium Scrollbars */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
    border: 2px solid #f1f5f9;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

#map {
    height: 100%;
    width: 100%;
}

@keyframes pulse-ring {
    0% { transform: scale(.33); }
    80%, 100% { opacity: 0; }
}

@keyframes pulse-dot {
    0% { transform: scale(.8); }
    50% { transform: scale(1); }
    100% { transform: scale(.8); }
}

.live-indicator {
    position: relative;
    width: 12px;
    height: 12px;
}
.live-indicator::before {
    content: '';
    position: absolute;
    width: 300%;
    height: 300%;
    margin-left: -100%;
    margin-top: -100%;
    border-radius: 45px;
    background-color: #ef4444;
    animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.live-indicator::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #ef4444;
    border-radius: 50%;
    animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -.4s infinite;
}
