.navbar {
    background: linear-gradient(90deg, #00ff62, #73ff00, #00ff62, #1eff00, #00ff62) !important;
    background-size: 400% 100% !important;
    animation: gradientShift 2s ease-in-out infinite !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 255, 174, 0.4) !important;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.636), transparent);
    animation: shimmer 7s ease-in-out infinite;
    z-index: 0;
}

.navbar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent, rgba(255, 255, 255, 0.1));
    animation: pulse 7s ease-in-out infinite;
    z-index: 0;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 50% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    75% {
        background-position: 50% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}

.navbar-nav .nav-link {
    font-size: 22px;
    color: #000 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    padding: 8px 16px !important;
    border-radius: 8px !important;
    margin: 0 4px !important;
    font-weight: 600;
}

.ms-auto .btn {
    position: relative;
    z-index: 1;
}

.navbar-toggler {
    position: relative;
    z-index: 1;
}

.navbar-nav .nav-link:hover {
    color: #ffff00 !important;
    transform: translateY(-3px) scale(1.05);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 6px 20px rgba(0, 255, 174, 0.4);
}

.navbar-nav .nav-link.active {
    font-weight: bold;
    color: #ff7777 !important;
    text-shadow: 0 4px 8px rgba(199, 142, 255, 0.5);
    background: rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 4px 15px rgba(0, 255, 174, 0.6);
    transform: translateY(-1px);
}

.navbar-brand {
    font-weight: bold;
    color: #000 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    font-size: 24px;
    padding: 8px 16px !important;
    border-radius: 8px !important;
}

.navbar-brand:hover {
    color: #fff !important;
    transform: scale(1.1);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 6px 20px rgba(0, 255, 174, 0.4);
}

.footer {
    background-color: #00ffae !important;
    padding: 20px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer table {
    margin: 0 auto;
    text-align: center;
}
.blue {
    color: #7171ff;
}
.green {
    color: #009d00;
}
.grey {
    color: #717171;
}