:root {
    --primary-background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 25%, #1f1f1f 75%, #1a1a1a 100%);
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --border-color: #e5e7eb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

a:hover {
    text-decoration: none !important;
}