@import url('https://api.fontshare.com/v2/css?f[]=yellix@400,500,600,700&display=swap');

:root {
    --primary-color: #023032;
    --primary-dark: #011a1b;
    --primary-light: #0a4547;
    --accent-color: #c2eb89;
    --accent-dark: #a6cf6e;
    --accent-light: #d5f4ac;
    --text-light: #f8f9fa;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --error-color: #dc3545;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --border-radius: 8px;
    --transition-speed: 0.3s;
}

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

body {
    font-family: 'Yellix', sans-serif;
    background: white;
    color: var(--text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}