@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

:root {
    --primary-color: #0066ff;
    --primary-dark: #0052cc;
    --primary-light: #e6f0ff;
    --secondary-color: #4ecdc4;
    --text-color: #2c3e50;
    --text-light: #7f8c8d;
    --bg-color: #ffffff;
    --bg-secondary: #f8f9fa;
    --card-bg: #fff;
    --border-color: #e1e8ed;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

html, body {
    height: 100%;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    background: linear-gradient(135deg, 
        #f8f9fa 0%, 
        #e9ecef 25%, 
        #dee2e6 50%, 
        #e9ecef 75%, 
        #f8f9fa 100%);
    background-attachment: fixed;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.beta-text {
    color: var(--primary-color);
    font-size: 0.6em;
    vertical-align: super;
    margin-left: 5px;
    font-weight: bold;
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.callifornia-text {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 600;
}

h1 .callifornia-text {
    font-size: 1.2em;
    font-weight: bold;
}

/* Fancy Background */
body.fancyBackground {
    background: url('../images/fancyBackground.png') center center / cover no-repeat fixed;
    background-color: #fff;
}

body.fancyBackground::before {
    display: none;
}
