.footer-glass {
    /* Transparent glass effect to show body background and moving light */
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(217, 4, 41, 0.2);
    position: relative;
    z-index: 10; /* Ensures it stays above the background light */
    width: 100%;
    flex-shrink: 0; /* Ensures the footer doesn't get squashed */

}

.footer-logo-img {
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.1) rotate(5deg);
}

.logo-link {
    display: inline-block;
    text-decoration: none;
}

/* Specific disclaimer text color to make it look professional */
.text-secondary {
    color: #888 !important;
}

