@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0c2461 0%, #050f26 100%);
}

.bi {
    font-size: 1.25rem;
    vertical-align: middle;
}
/* Custom animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Custom glow effect */
.glow {
    box-shadow: 0 0 10px rgba(74, 105, 189, 0.5);
}
/* Link section styles */
.links-container .flex {
    position: relative;
}
.links-container .flex .text-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #212529;
}
::-webkit-scrollbar-thumb {
    background: #4a69bd;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3c58a8;
}
