/* Footer */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(99, 46, 155, 0.5); /* Same purple with 70% opacity */
    text-align: center;
    padding: 0; /* Remove padding completely */
    margin: 0; /* Ensure no margins are added */
    z-index: 100; /* Adjusted z-index */

    color: #FFFFFF; /* White text */
    font-family: 'Cinzel', serif;
    font-size: 12px; /* Same font size */
    font-weight: bold;
    line-height: 1; /* Ensure no extra spacing from line height */
    
    transform-origin: center; /* Shrink towards the bottom-left corner */
}

footer .footer-bar {
    margin: 0; /* Remove potential margins from child elements */
    padding: 0; /* Remove child element padding */
    line-height: 0.25; /* Tighten the text spacing */
}
