.footer {
    position: static;
    width: 100%;
    background: rgba(45, 55, 72, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    text-align: center;
    padding: 1rem;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0;
}

.footer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #764ba2;
}

@media (min-width: 768px) {
    .footer {
        background: var(--text);
        padding: 1.5rem;
        font-size: 0.9rem;
        margin-top: 2rem;
        margin-bottom: 0;
    }
}

@media (max-width: 360px) {
    .footer {
        font-size: 0.75rem;
        padding: 0.8rem;
    }
}