body {
    margin: 0;
    background: #0b0d0f;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

.site-header {
    position: relative;
    width: 100%;
    background: #111417;
    border-bottom: 1px solid #2b3035;
}

.header-inner {
    width: min(1400px, calc(100% - 48px));
    height: 82px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    gap: 42px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #ffffff;
    text-decoration: none;

    font-size: 26px;
    font-weight: 900;
    letter-spacing: 2px;
}

.brand-rust {
    color: #ffffff;
}

.brand-hub {
    color: #d74732;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    color: #9da5ac;
    text-decoration: none;

    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;

    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: #ffffff;
}

.header-account {
    margin-left: auto;
}

.account-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;
    padding: 0 20px;

    border: 1px solid #393f45;
    background: #1a1e22;

    color: #ffffff;
    text-decoration: none;

    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}

.account-button:hover {
    background: #23282d;
    border-color: #d74732;
}