/* Shared components: announcement bar, footer */

.announcement-bar {
    background: linear-gradient(90deg, #4a9eff 0%, #7c3aed 100%);
    color: #fff;
    text-align: center;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Site Footer */
.site-footer {
    border-top: 1px solid #2a2a3a;
    padding: 1.5rem 2rem;
    color: #666;
    font-size: 0.85rem;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-links a {
    color: #4a9eff;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-copyright {
    text-align: center;
    color: #444;
    font-size: 0.75rem;
    margin-top: 0.5rem;
}
