/* Base styles - Reset, design tokens, body defaults */

:root {
    --hf-purple: #2c0491;
    --hf-purple-dark: #1e0066;
    --hf-dark-gray: #32373c;
    --hf-light-gray: #f2f2f2;
    --hf-white: #ffffff;
    --hf-text: #333333;
    --hf-text-light: #666666;
    --hf-text-muted: #888888;
    --hf-border: #e0e0e0;
    --hf-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --hf-radius-pill: 9999px;
    --hf-radius-card: 8px;
    --hf-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    --hf-shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.12);
    --hf-max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--hf-font-family);
    background: var(--hf-white);
    color: var(--hf-text);
    line-height: 1.6;
}

a {
    color: var(--hf-purple);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Page banner below navigation */
.hf-page-banner {
    background: var(--hf-purple);
    color: var(--hf-white);
    text-align: center;
    padding: 40px 20px;
}

.hf-page-banner h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: none;
    color: var(--hf-white);
}

/* Audio stream utility link */
.hf-utility-bar {
    text-align: center;
    padding: 10px 20px;
    background: var(--hf-light-gray);
    border-bottom: 1px solid var(--hf-border);
    font-size: 13px;
    color: var(--hf-text-light);
    position: sticky;
    top: 0;
    z-index: 999;
}

.hf-utility-bar a {
    color: var(--hf-purple);
    font-weight: 500;
}

/* Main content area */
.hf-content {
    min-height: 60vh;
    padding: 30px 20px 60px;
}

.hf-content-inner {
    max-width: var(--hf-max-width);
    margin: 0 auto;
}

.hf-content-inner h2 {
    color: var(--hf-text);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Footer */
.hf-footer {
    background: var(--hf-light-gray);
    border-top: 1px solid var(--hf-border);
    padding: 30px 20px;
}

.hf-footer-inner {
    max-width: var(--hf-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.hf-footer-brand img {
    height: 40px;
    width: auto;
    opacity: 0.8;
}

.hf-footer-brand a:hover img {
    opacity: 1;
}

.hf-footer-info {
    text-align: center;
    font-size: 13px;
    color: var(--hf-text-light);
    line-height: 1.8;
}

.hf-footer-info a {
    color: var(--hf-text-light);
}

.hf-footer-info a:hover {
    color: var(--hf-purple);
}

.hf-footer-social {
    display: flex;
    gap: 12px;
}

.hf-footer-social a {
    color: var(--hf-text-muted);
    transition: color 0.2s;
}

.hf-footer-social a:hover {
    color: var(--hf-purple);
}

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

    .hf-footer-social {
        justify-content: center;
    }
}
