.main-footer {
    /* This forces the footer to ignore parent containers and hit the screen edges */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 100px;

    background: #0f172a;
    color: #94a3b8;
    padding: 30px 0 20px;
    border-top: 1px solid #1e293b;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

/* Keep the content inside centered and readable */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-text {
    color: #f8fafc;
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.2s;
}

.footer-links a:hover { color: #3b82f6; }

.social-links a { text-decoration: none; }

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #1e293b;
    font-size: 0.75rem;
    opacity: 0.6;
}

@media (max-width: 600px) {
    .footer-container { flex-direction: column; text-align: center; }
}