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

:root {
    /* Brand colors */
    --color-brand: #fed443;
    --color-brand-dark: #cf8f26;
    --color-brand-highlight: #ebb00b;

    /* Neutral colors */
    --color-bg: #fef8f5;
    --color-bg-accent: #f5ebe5;
    --color-white: #ffffff;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-brown: #5b4237;
    --color-border: #e0e0e0;

    /* Semantic colors */
    --color-well: #4caf50;
    --color-well-bg: #e8f5e9;
    --color-delta: #f59e0b;
    --color-delta-bg: #fef3c7;
    --color-vote: #ff9800;
    --color-error: #f44336;

    /* Effects */
    --shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    --radius: 8px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

main, footer {
    width: 100%;
}

/* Footer */
footer {
    margin-top: auto;
    padding: 1.5rem 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-text-light);
}

footer a {
    color: var(--color-text-light);
    text-decoration: underline;
}

footer a:hover {
    color: var(--color-text);
}
