@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

.site-footer {
    background: #0F172A;
    padding: 60px 48px 40px;
}
.site-footer-inner {
    max-width: 700px; margin: 0 auto;
    display: flex; flex-direction: column; align-items: center; gap: 20px;
    text-align: center;
}
.site-footer-logo {
    display: flex; align-items: center; gap: 12px; text-decoration: none;
}
.site-footer-logo img { width: 44px; height: 44px; border-radius: 10px; }
.site-footer-logo-name {
    font-family: 'Pacifico', cursive;
    font-size: 1.6rem; font-weight: 400; color: white; letter-spacing: 0;
}
.site-footer-logo-name em { color: #22A659; font-style: normal; }
.site-footer-tag {
    font-size: 0.9rem; color: rgba(255,255,255,0.45); line-height: 1.6;
    max-width: 460px; font-family: 'Inter', -apple-system, sans-serif;
}
.site-footer-links {
    display: flex !important; gap: 36px; flex-wrap: wrap; justify-content: center;
    list-style: none; padding: 0; margin: 0;
    background: none; border: none; position: static;
    width: auto; height: auto;
}
.site-footer-links a {
    color: rgba(255,255,255,0.55) !important; text-decoration: none !important;
    font-size: 0.9rem; font-family: 'Inter', -apple-system, sans-serif;
    transition: color 0.2s; padding: 0; background: none;
    border: none; display: inline;
}
.site-footer-links a:hover { color: #22A659 !important; }
.site-footer-hr {
    width: 100%; border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin: 4px 0;
}
.site-footer-copy {
    font-size: 0.8rem; color: rgba(255,255,255,0.28);
    font-family: 'Inter', -apple-system, sans-serif;
}
@media (max-width: 600px) {
    .site-footer { padding: 48px 24px 32px; }
    .site-footer-links { gap: 20px; }
}
