/* 
 * Design System Variables
 * Файл: css-new/variables.css
 */

:root {
	/* Modern Dark Theme Colors */
	--primary-dark: #2d2d2d;
	--primary-darker: #1a1a1a;
	--primary-darkest: #111111;
	--accent-orange: #c87f4a;
	--accent-orange-light: #e8a165;
	--accent-orange-dark: #a66a3d;
	
	/* Ukrainian Colors */
	--ukraine-blue: #005BBB;
	--ukraine-blue-light: #1a75d4;
	--ukraine-blue-dark: #004494;
	--ukraine-yellow: #FFD500;
	--ukraine-yellow-light: #ffe44d;
	--ukraine-yellow-dark: #e6c000;
	
	/* Text Colors */
	--text-light: #ffffff;
	--text-muted: #b0b0b0;
	--text-dark: #333333;
	
	/* Background Colors */
	--bg-card: rgba(45, 45, 45, 0.95);
	--bg-light: #f5f5f5;
	
	/* Effects */
	--shadow-dark: rgba(0, 0, 0, 0.4);
	--border-subtle: rgba(255, 255, 255, 0.08);
	--border-blue: rgba(0, 91, 187, 0.4);
	--border-yellow: rgba(255, 213, 0, 0.4);
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Open Sans', sans-serif;
	background-color: var(--primary-darker);
	color: var(--text-light);
	line-height: 1.6;
}

a {
	text-decoration: none;
	color: inherit;
	transition: color 0.3s ease;
}

ul {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
}
