
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    background: rgba(11,14,26,0.95);
    border-top: 1px solid rgba(255,255,255,0.08);
    white-space: nowrap;
    z-index: 10;
}

.footer-year {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
}

.footer-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-icons a {
    display: flex;
    align-items: center;
    color: #888;
    transition: color 0.2s;
}

.footer-icons a:hover { color: #fff; }

.footer-icons svg {
    width: 40px;
    height: 40px;
    fill: currentColor;
}

