/* Глобальный сброс отступов */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    background: #020005; /* Цвет фона, как в твоем дизайне */
    overflow-x: hidden;  /* Чтобы не было лишней горизонтальной прокрутки */
}

* {
    box-sizing: border-box; /* Чтобы границы не раздували блоки */
}

.site-header {
    position: relative;

    width: 100%;
    height: 76px;

    padding: 0 4%;

    display: flex;
    align-items: center;

    background: #020005;

    border-bottom: 1px solid rgba(157, 0, 255, 0.15);

    box-sizing: border-box;

    z-index: 1000;
}

.site-logo {
    display: inline-flex;
    align-items: center;

    font-family: "Montserrat", sans-serif;
    font-size: 1.45rem;
    font-weight: 800;

    letter-spacing: 2px;

    text-decoration: none;
    text-transform: uppercase;

    color: #ffffff;

    text-shadow:
        0 0 5px rgba(255, 255, 255, 0.45),
        0 0 12px rgba(255, 255, 255, 0.18);
}

.site-logo span {
    color: #9d00ff;

    text-shadow:
        0 0 5px rgba(157, 0, 255, 0.95),
        0 0 12px rgba(157, 0, 255, 0.8),
        0 0 25px rgba(157, 0, 255, 0.55),
        0 0 45px rgba(157, 0, 255, 0.3);
}

.logo {
    flex-shrink: 0;

    color: #ffffff;

    font-family: "Rajdhani", sans-serif;

    font-size: 1.35rem;
    font-weight: 700;

    letter-spacing: 2px;

    text-decoration: none;
}

.logo span {
    color: #9d00ff;
}

.nav-center {
    position: absolute;
    left: 50%;

    display: flex;
    align-items: center;

    gap: 30px;

    transform: translateX(-50%);
}

.nav-center a,
.nav-right a {
    color: #9b96a8;

    font-family: "Montserrat", sans-serif;

    font-size: 0.72rem;
    font-weight: 500;

    text-decoration: none;

    transition:
        color 0.25s ease,
        text-shadow 0.25s ease;
}

.nav-center a:hover,
.nav-center a.active,
.nav-right a:hover {
    color: #ffffff;

    text-shadow:
        0 0 12px rgba(157, 0, 255, 0.9);
}

.nav-center a.active {
    color: #9d00ff;
}

.nav-right {
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 18px;
}

.burger {
    display: none;

    width: 34px;
    height: 28px;

    padding: 0;

    background: transparent;

    border: 0;

    cursor: pointer;
}

.burger span {
    display: block;

    width: 100%;
    height: 2px;

    margin: 6px 0;

    background: #ffffff;

    transition: 0.25s ease;
}

.nav-mobile {
    position: fixed;

    top: 76px;
    left: 0;

    width: 100%;

    padding: 25px 4%;

    display: none;
    flex-direction: column;

    gap: 20px;

    background: rgba(2, 0, 5, 0.98);

    border-bottom: 1px solid rgba(157, 0, 255, 0.25);

    z-index: 999;
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile a {
    color: #ffffff;

    font-family: "Montserrat", sans-serif;

    font-size: 0.9rem;

    text-decoration: none;
}

@media (max-width: 1100px) {

    .nav-center,
    .nav-right {
        display: none;
    }

    .burger {
        display: block;

        margin-left: auto;
    }

}