* {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
}

html, body, .container-wrapper {
    height: 100%;
    width: 100%;
}

body {
    background: url('Assets/Background.png') no-repeat center/cover;
}

a, p {
    font-size: 12px;
    text-decoration: none;
}

h3 {
    font-size: 16px;
    font-weight: normal;
    color: #002a9e;
}

.container-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    position: relative;
    width: 800px;
    height: 500px;
    padding: 6px;
    overflow: hidden;
    background-color: #435aa188;
    border: 1px solid #D6E1E7;
    border-radius: 7px;
    box-shadow: 0 0 0 1px #09161C, 0 12px 30px rgba(0, 0, 0, 0.9);
    z-index: 1;
}

.container::before {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(3px);
    z-index: -2;
}

.container::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url('Assets/Reflection.png') no-repeat;
    background-size: 200%;
    opacity: 0.8;
    z-index: -1;
    pointer-events: none;
}

.content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: white;
    border: 1px solid #5A4952;
    border-radius: 1px;
    box-shadow: 0 0 0 1px #EAE0E680;
}

.user-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 12px 20px;
    margin-top: 32px;
}

.command-bar {
    position: fixed;
    width: 800px;
    height: 32px;
    padding: 0 3px;
    background: linear-gradient(to bottom, #0674c9, #0147a3 50%, #050d9e 50%, #1d0374);
    border-bottom: 1px solid #50495a;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    z-index: 9;
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    padding: 0 12px;
    margin: 0 2px;
    font-size: 12px;
    color: white;
    background: transparent;
    border: none;
    border-radius: 2px;
    text-shadow: 0 0 2px black, 0 0 6px rgba(0, 0, 0, 0.9);
    cursor: default;
    user-select: none;
}

.nav-link:hover {
    background: linear-gradient(to bottom, #ffffff40, #fff6 50%, #ffffff40 50%, #ffffff1a);
    outline: 1px solid rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 0 0 1px #ffffff80;
}

.nav-link:active {
    background: rgb(53, 89, 231);
    outline: 1px solid rgba(0, 0, 0, 0.75);
    box-shadow: inset 0 0 8px #0c40c4, inset 0 0 0 1px #ffffffbf;
}

.nav-link:active .span-nav-link {
    transform: translate(1px, 1px);
}

.header-user {
    padding-bottom: 3px;
}

.header-content {
    display: flex;
    align-items: center;
}
  
.header-text {
    white-space: nowrap;
    font-size: 12px;
    margin-right: 6px;
}
  
.header-line {
    flex-grow: 1;
    height: 1px;
    background-color: #ccc;
}

.content-box {
    padding-bottom: 5px;
}

.content-of-the-content-box {
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.content-pfp {
    width: 55px;
    margin-left: 10px;
}

.content-naticord {
    width: 50px;
    margin-left: 10px;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding-top: 10px;
}