:root {
    --v-dark: #0f1115;      /* Bardzo ciemny antracyt (tło) */
    --v-panel: #1a1d23;     /* Jaśniejszy panel (header) */
    --v-purple: #8a2be2;    /* Główny fiolet VORTIQ */
    --v-purple-bright: #a04ef6;
    --v-text: #e1e1e1;
    --v-dim: #70757d;
}

body {
    background-color: var(--v-dark);
    color: var(--v-text);
    margin: 0;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

/* Górny pasek */
.top-bar {
    background: #050505;
    height: 35px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #222;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.top-bar-right {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.top-bar-right a {
    color: var(--v-dim);
    text-decoration: none;
    transition: 0.3s;
}

.top-bar-right a:hover {
    color: var(--v-purple-bright);
}

.sep { color: #333; }

/* Główna nawigacja */
.main-nav {
    background: var(--v-panel);
    padding: 25px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    margin-right: 60px;
    letter-spacing: -1px;
    /* Efekt lekkiego fioletowego poświaty */
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
}

nav {
    display: flex;
    gap: 35px;
}

nav a {
    color: #bbb;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
    letter-spacing: 1px;
}

nav a:hover {
    color: #fff;
}

nav a.active {
    color: var(--v-purple);
    position: relative;
}

/* Kreska pod aktywnym linkiem - styl VORTIQ */
nav a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--v-purple);
    box-shadow: 0 0 8px var(--v-purple);
}