footer {
    margin-top: auto;
    position: relative;
    background-image: url('/static/images/footer.png');
    background-size: 100% auto;
    background-position: center bottom;
    background-repeat: no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

footer p {
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.95);
    background: rgba(238, 238, 234, 0.85);
    padding: 6px 12px;
    border-radius: 6px;
    backdrop-filter: blur(2px);
    position: relative;
    z-index: 2;
}
