:root {
    /* The Clean Spark Light Theme */
    --bg-global: #FAFAFC;
    --bg-surface: #FFFFFF;
    
    /* Brand Accents */
    --siren-red: #E53E3E;
    --siren-red-hover: #C53030;
    --pyro-gold: #DD6B20;
    
    /* Typography Colors */
    --text-heading: #1A202C;
    --text-body: #4A5568;
    --text-border: #E2E8F0;
    
    /* Shadows & Transitions */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-global);
    font-family: 'Inter', sans-serif;
    color: var(--text-body);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-heading);
}

a {
    text-decoration: none;
}

/* Add this to the bottom of css/base/variables.css */
.sp-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.highlight-text {
    color: var(--siren-red); /* Gold color from screenshot/theme */
}

.error-msg{
    color: var(--siren-red);
}