/* GLOBAL BASE THEME */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #121212;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
}

/* GLOBAL RESET */
* {
    box-sizing: border-box;
}

/* SHARED FOOTER */
.footer {
    margin-top: 4rem;
    padding: 2rem 1rem;
    text-align: center;
    color: #ccc;
    background: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.footer a {
    color: #00eaff; /* HostTheMost neon cyan */
    text-decoration: none;
}

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

.footer-inner p {
    margin: 0.4rem 0;
    font-size: 0.9rem;
}

/* SHARED FOOTER — OVERRIDES ANY PAGE CSS */
footer.footer {
    text-align: center !important;
    background: #0a0a0a !important;
    color: #ccc !important;
    padding: 2rem 1rem !important;
    margin-top: 4rem !important;
    border-top: 1px solid rgba(255,255,255,0.15) !important;
}

footer.footer a {
    color: #00eaff !important;
    text-decoration: none !important;
}

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

footer.footer .footer-inner p {
    margin: 0.4rem 0 !important;
    font-size: 0.9rem !important;
}

