/* LiquidBuzz Master Stylesheet */

:root {
    --bg-color: #0d1117;
    --surface-color: #161b22;
    --text-main: #e6edf3;
    --text-dim: #848d97;
    --accent-blue: #2f81f7;
    --border-color: #30363d;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Roboto', sans-serif;
    margin: 0;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Global Footer Component */
footer {
    padding: 4rem 2rem;
    text-align: center;
    color: var(--text-dim);
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-color);
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-protocol {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.85rem;
    text-align: left;
    display: inline-block;
    margin: 0 auto;
}

.protocol-line { margin-bottom: 0.5rem; }
.protocol-label { color: var(--accent-blue); }

.legal-footer {
    margin-top: 3rem;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-dim);
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.est-marker {
    margin-top: 1rem;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.8rem;
    opacity: 0.4;
}