@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,400;1,700&display=swap');

body {
    font-family: "Roboto Condensed", Arial, sans-serif;
    color: rgb(173, 168, 162);
}

.background-gradient {
    position: absolute;
    width: 100%;
    max-width: 1920px;
    left: 50%;
    transform: translate(-50%, 0);
    height: 1080px;
    background: radial-gradient(at center -10%, rgb(0 0 0 / 0%) 50%, rgb(0 0 0) 70%) rgb(16 16 16 / 50%);
    top: 0;
    z-index: -1;
}

.navbar-custom {
    background-color: rgb(28, 28, 26) !important;
}

.navbar-custom .navbar-nav .nav-link {
    color: rgb(142, 145, 142);
    font-size: 20px;
    margin-left: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.navbar-custom .navbar-nav .nav-link:hover {
    color: rgb(193, 193, 193);
}

.navbar-custom .navbar-nav .nav-link.active {
    color: rgb(193, 193, 193);
}

.navbar-custom .navbar-brand {
    color: rgb(194, 194, 194);
    margin-left: 15px;
}

.navbar-custom .navbar-logo-container {
    width: 75px;
}

.navbar-custom .nav-logo {
    position: absolute;
    height: 75px;
    margin-top: -38px;
}

.navbar-custom .navbar-toggler {
    border-radius: 0;
}

.navbar-custom .navbar-toggler:focus {
    box-shadow: none;
}

@media only screen and (max-width: 992px) {
    .navbar-custom .navbar-brand {
        transform: translateX(-50%);
        left: 50%;
        top: 40px;
        position: absolute;
    }

    .navbar-custom .nav-logo {
        height: 42px;
    }
}


.hero {
    padding-top: 60px;
    padding-bottom: 60px;
}

.hero h1 {
    text-align: center;
    color: rgb(231, 224, 218);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 55px;
}

.hero p {
    text-align: center;
    color: rgb(203, 197, 194);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 25px;
}

.hero .server-brand {
    color: rgb(0, 123, 255);
}

.cursor {
    display: inline-block;
    font-weight: bold;
    color: rgb(0, 123, 255);
    animation: blink 0.7s step-end infinite;
}

@keyframes blink {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

.servers .server {
    border: 6px solid rgb(31, 32, 26);
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, .9) inset;
    background: rgb(0, 1, 17);
    margin-top: 25px;
    position: relative;
}

.servers .server .server-container {
    padding: 10px;
    text-align: center;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.servers .server .server-container .server-name {
    color: rgb(198, 192, 186);
    font-weight: bold;
    font-size: 24px;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    text-overflow: ellipsis;
}

.servers .server .server-container .server-description {
    color: rgb(142, 143, 138);
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.servers .server .server-container .server-players {
    color: rgb(142, 143, 138);
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.servers .server .server-tags {
    margin-bottom: 5px;
}

.servers .server .server-tags .server-tag {
    background: #26435E;
    color: #C2C5CC;
    padding: 5px 8px;
    font-size: 15px;
}

.servers .server .server-image-container {
    position: relative;
}

.servers .server .server-image-container .server-image-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgb(0 0 0 / 0%) 35%, rgb(0 0 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
}

.servers .server .progress {
    border-radius: 0;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.servers .server .server-image-container {
    position: relative;
}

.servers .server .server-offline {
    background: rgb(150, 47, 32);
    color: rgb(199, 152, 151);
    padding: 10px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 10px;
    display: inline-block;
}

.servers .server .server-offline .icon {
    margin-top: -2px;
}