:root {
    --primary-color: #0097a7; /* Logo turquoise */
    --accent-color: #ff9800;  /* Logo orange */
    --bg-anthracite: #1a1a1a; /* Base anthracite */
    --bg-anthracite-light: #2d2d2d;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s ease;
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-anthracite);
    color: var(--text-white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
