/*
 * ============================================
 *            COPYRIGHT FABITO.NET
 * ============================================
 * SUMMARY
 * --------------------------------------------
 * 1 - Additionals
 * 2 - Basic Styles
 * 3 - Buttons
 * 4 - Navigation
 * 5 - Hero
 * 6 - Servers
 * 7 - Servers Modal
 * 8 - Shop
 * 9 - Rules
 * 10 - Staff
 * 11 - Footer
 * 12 - Socials
 * 13 - FAQ
 * 14 - Statistics
 * 15 - Servers Page
 * --------------------------------------------
 */


/*
 * ---------------------------------------------
 * 1 - Additionals
 * ---------------------------------------------
 */

 @font-face {
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(../fonts/Roboto-Condensed-Light.woff2) format('woff2');
}

@font-face {
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../fonts/Roboto-Condensed-Regular.woff2) format('woff2');
}

@font-face {
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../fonts/Roboto-Condensed-Bold.woff2) format('woff2');
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgb(32, 38, 32);
}

::-webkit-scrollbar-thumb {
    background: rgb(43, 52, 43);
}

::-moz-selection {
    color: rgb(173, 168, 162);
    background: rgb(20, 24, 20);
}

::selection {
    color: rgb(173, 168, 162);
    background: rgb(41, 49, 41);
}


/*
 * ---------------------------------------------
 * 2 - Basic Styles
 * ---------------------------------------------
 */

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%, rgba(0,0,0,0) 35%, rgba(20,24,20,1) 70%) rgba(20, 24, 20, 0.8);
    top: 0;
    z-index: -1;
}

.icon {
    width: 20px;
    height: 20px;
    margin-top: -1px;
}

main {
    position: relative;
}

.ribbon {
    position: absolute;
    right: -5px; top: -5px;
    z-index: 1;
    overflow: hidden;
    width: 75px; height: 75px;
    text-align: right;
}

.ribbon span {
    font-size: 10px;
    font-weight: bold;
    color: #FFF;
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    width: 100px;
    display: block;
    background: #79A70A;
    background: linear-gradient(#9BC90D 0%, #79A70A 100%);
    box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
    position: absolute;
    top: 19px; right: -21px;
}

.ribbon span::before {
    content: "";
    position: absolute; left: 0px; top: 100%;
    z-index: -1;
    border-left: 3px solid #79A70A;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #79A70A;
}

.ribbon span::after {
    content: "";
    position: absolute; right: 0px; top: 100%;
    z-index: -1;
    border-left: 3px solid transparent;
    border-right: 3px solid #79A70A;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #79A70A;
}


/*
 * ---------------------------------------------
 * 3 - Buttons
 * ---------------------------------------------
 */

.btn {
    border-radius: 0;
    border: 0;
    padding: 8px 10px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 18px;
}

.btn .btn-info {
    background: rgb(61, 75, 39);
    color: rgb(166, 205, 99);
}

.btn:focus {
    outline: none !important;
    box-shadow: none !important;
}

.btn.btn-success {
    background: rgb(61, 75, 39);
    color: rgb(166, 205, 99);
}

.btn.btn-success:hover {
    background: rgb(88, 108, 57);
}

.btn.btn-success:active {
    background: rgb(61, 75, 39);
}

.btn.btn-primary {
    background: rgb(29, 66, 95);
    color: rgb(72, 154, 212);
}

.btn.btn-primary:hover {
    background: rgb(39, 85, 121);
}

.btn.btn-primary:active {
    background: rgb(29, 66, 95);
}

.btn.btn-secondary {
    background: rgb(89, 85, 82);
    color: rgb(204, 195, 190);
}

.btn.btn-secondary:hover {
    background: rgb(111, 107, 103);
}

.btn.btn-secondary:active {
    background: rgb(89, 85, 82);
}

.btn.btn-danger {
    background: rgb(150, 47, 32);
    color: rgb(199, 152, 151);
}

.btn.btn-danger:hover {
    background: rgb(172, 56, 39);
}

.btn.btn-danger:active {
    background: rgb(150, 47, 32);
}

.btn.btn-discord {
    background: rgb(114, 137, 218);
    color: rgb(255, 255, 255);
}

.btn.btn-discord:hover {
    background: rgb(132, 156, 238);
}

.btn.btn-discord:active {
    background: rgb(114, 137, 218);
}

.btn.btn-discord svg {
    height: 24px;
    margin-top: -1px;
}

.btn.btn-discord .btn-discord-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn.btn-discord .btn-discord-content .discord-players-text {
    display: block;
    margin-left: 5px;
}

.btn.btn-discord .btn-discord-content .discord-counter {
    font-size: 12px;
    margin-top: -2px;
    display: block;
    text-transform: none;
    margin-left: 5px;
    background: rgb(87, 105, 172);
    border-radius: 100px;
}


/*
 * ---------------------------------------------
 * 4 - Navigation
 * ---------------------------------------------
 */

.navbar-rust {
    margin-top: 50px;
    background-color: rgb(28, 28, 26) !important;
    border-radius: 0 !important;
    margin-bottom: 50px;
}

.nav-item {
    position: relative;
    display: inline-block;
}

.navbar-rust .navbar-nav .nav-link {
    color: rgb(142, 145, 142);
    font-size: 20px;
    margin-left: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.navbar-rust .navbar-nav .nav-link:hover {
    color: rgb(193, 193, 193);
}

.navbar-rust .navbar-nav .nav-link.active {
    color: rgb(193, 193, 193);
}

.navbar-rust .navbar-brand {
    color: rgb(194, 194, 194);
    margin-left: 15px;
}

.navbar-rust .navbar-logo-container {
    width: 75px;
}

.navbar-rust .nav-logo {
    position: absolute;
    height: 75px;
    margin-top: -38px;
}

.navbar-toggler {
    padding: 0;
    border: none;
    background: none;
}

.nav-toggle-img-container {
    padding: 7px; /* Adjust as needed for padding between the image and border */
    border: 2px solid #8E918E; /* Adds a border around the container */
    display: inline-block; /* Ensures the container only takes up as much space as the image plus padding */
}

.nav-toggle-img {
    width: 20px; /* Adjust as needed */
    height: 20px; /* Adjust as needed */
    object-fit: contain; /* Ensures the image fits within the container */
}

.navbar-rust .navbar-toggler:focus {
    box-shadow: none;
}

@media only screen and (max-width: 992px) {
    .navbar-rust .navbar-brand {
        transform: translateX(-50%);
        left: 50%;
        top: 40px;
        position: absolute;
    }

    .navbar-rust .nav-logo {
        height: 42px;
    }

    .dropbtn {
        margin-left: -7px;
    }

    .dropdown-content {
        min-width: 150px;
        right: 0;
    }
    
    .dropdown-subcontent {
        right: 100%;
    }
}

/*
 * ---------------------------------------------
 * Nav dropdown
 * ---------------------------------------------
 */

.dropbtn {
    background-color: rgb(28, 28, 26) !important;
    font-size: 20px;
    margin-top: -1px;
    border: none;
    color: rgb(142, 145, 142);
    font-weight: bold;
    text-transform: uppercase;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content, .dropdown-subcontent {
    display: none;
    position: absolute;
    left: 0;
    background-color: rgb(28, 28, 26) !important;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    padding: 0;
    margin: 0;
    z-index: 1;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgb(28, 28, 26);
    min-width: 160px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 20px;
}

.dropdown-subcontent {
    left: 100%;
    top: 0;
}

.dropdown-content a, .dropdown-subcontent a {
    color: rgb(142, 145, 142);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-weight: bold;
    text-transform: uppercase;
}

.dropdown-content a:hover, .dropdown-subcontent a:hover {
    background-color: rgb(35, 35, 33) !important;
    color: rgb(193, 193, 193);
}

.dropdown-item {
    padding: 10px 16px;
    text-decoration: none;
    color: rgb(142, 145, 142);
    display: block;
    text-align: center;
    white-space: nowrap;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: rgb(35, 35, 33) !important;
    color: rgb(193, 193, 193);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-submenu:hover .dropdown-subcontent {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: rgb(28, 28, 26) !important;
    color: rgb(193, 193, 193);
}

.dropdown .fa-chevron-down {
    margin-left: 5px;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
}

/* Dropdown chevron styles */
.dropdown .fa-chevron-right {
    margin-left: 5px;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.dropdown:hover .fa-chevron-right {
    transform: rotate(90deg);
}

/*
 * ---------------------------------------------
 * 5 - Hero
 * ---------------------------------------------
 */

.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(201, 69, 47);
}


/*
 * ---------------------------------------------
 * 6 - Servers
 * ---------------------------------------------
 */

.servers .server {
    border: 6px solid rgb(31, 32, 26);
    background: rgb(31, 32, 26);
    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, rgba(31,32,26,0) 35%, rgba(31,32,26,1) 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 .progress .progress-bar.bg-rust {
    background-color: rgb(166, 205, 99);
}

.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;
}


/*
 * ---------------------------------------------
 * 7 - Servers Modal
 * ---------------------------------------------
 */

.modal.modal-rust .modal-content {
    border: 8px solid rgb(31, 32, 26);
    border-radius: 0;
    background: rgb(31, 32, 26);
    color: rgb(108, 110, 105);
}

.modal.modal-rust .modal-body {
    padding: 0;
}

.modal.modal-rust .modal-footer {
    border-top: 0;
    padding: 0;
    margin-top: 5px;
}

.modal.modal-rust .modal-footer .btn {
    margin: 4px 2px;
}

.modal.modal-rust .server-image-modal-container .server-image-modal-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(31,32,26,0) 35%, rgba(31,32,26,1) 100%);
    position: absolute;
    top: 0;
    left: 0;
}

.modal.modal-rust .server-image-modal-container {
    position: relative;
}

.modal.modal-rust .server-modal-details {
    margin-top: -60px;
    z-index: 2;
    position: relative;
}

.modal.modal-rust .server-modal-details .server-name {
    color: rgb(198, 192, 186);
    font-weight: bold;
    font-size: 28px;
    display: block;
    text-align: center;
}

.modal.modal-rust .server-modal-details .server-description {
    color: rgb(173, 168, 162);
    font-size: 20px;
    display: block;
    text-align: center;
    margin-top: -8px;
}

.modal.modal-rust .server-modal-details .server-rules {
    margin-top: 10px;
    color: rgb(105, 107, 102);
    font-size: 18px;
    display: block;
    padding: 10px;
    line-height: 24px;
    height: 250px;
    overflow-y: auto;
    overflow-x: hidden;
}

.modal.modal-rust .server-modal-details .server-rules a {
    color: rgb(164, 167, 160);
    text-decoration: none;
}

.modal.modal-rust .server-modal-details .server-rules a:hover {
    color: rgb(187, 191, 185);
}

.modal.modal-rust .server-modal-details .server-rules .connect-input {
    border: 3px solid #555;
    background : rgb(72, 72, 69);
    width: 100%;
    height: 40px;
    color: rgb(164, 167, 160);
}


/*
 * ---------------------------------------------
 * 8 - Shop
 * ---------------------------------------------
 */

.store {
    margin-top: 230px;
}

.store .store-image-container {
    position: relative;
}

.store .store-image-container .store-image-overlay {
    background: radial-gradient(at center, rgba(0,0,0,0) 35%, rgba(20,24,20,1) 70%) rgba(20, 24, 20, 0.8);;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.store .store-heading {
    color: rgb(220, 211, 202);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 42px;
}

.store .store-message {
    font-size: 20px;
    font-weight: 300;
}

.store .btn-store {
    padding: 18px 24px;
    font-size: 24px;
    margin-top: 10px;
}

.store .btn-store .icon {
    width: 30px;
    height: 30px;
}

.store .store-message ul {
    list-style-type: none;
    padding: 0;
}

.store .store-message ul li {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    margin-top: 12px;
}

.store .store-message ul li::before {
    content: "■ ";
    color: rgb(166, 205, 99);
    font-size: 32px;
    line-height: 22px;
}

@media only screen and (max-width: 576px) {
    .store {
        margin-top: 80px;
    }

    .store .store-heading {
        margin-bottom: 40px;
    }
}


/*
 * ---------------------------------------------
 * 9 - Rules
 * ---------------------------------------------
 */

.rules {
    margin-top: 80px;
}

.rules .rules-heading {
    color: rgb(220, 211, 202);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 38px;
    text-align: center;
    margin-bottom: 80px;
}

.rules .accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 0;
    border-radius: 0 !important;
}

.rules .accordion-header {
    background: rgba(255, 255, 255, 0.025);
}

.rules .accordion-header .accordion-button {
    background: transparent;
    color: rgb(220, 211, 202);
    outline: none;
    box-shadow: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 26px;
    padding: 20px 26px;
}

.rules .accordion-header .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23dcd3ca'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.rules .accordion-header .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23a6cd63'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.rules .accordion-header .accordion-button .icon {
    height: 30px;
    width: 30px;
    margin-right: 10px;
    margin-top: -2px;
    color: rgb(166, 205, 99);
}

.rules .accordion-body {
    font-size: 20px;
    font-weight: 300;
    padding: 28px;
}

@media only screen and (max-width: 576px) {
    .rules .accordion-header .accordion-button {
        font-size: 22px;
    }

    .rules .accordion-header .accordion-button .icon {
        height: 26px;
        width: 26px;
    }

    .rules .accordion-body {
        font-size: 18px;
    }
}


/*
 * ---------------------------------------------
 * 10 - Staff
 * ---------------------------------------------
 */

.staff {
    margin-top: 80px;
}

.staff .staff-heading {
    color: rgb(220, 211, 202);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 38px;
    text-align: center;
    margin-bottom: 40px;
}

.staff .member {
    text-align: center;
    margin-top: 40px;
}

.staff .member img {
    width: 180px;
    height: 180px;
}

.staff .member .member-description {
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
    width: 180px;
}

.staff .member .member-description .member-name {
    color: rgb(220, 211, 202);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 28px;
    text-align: center;
    display: block;
    margin-top: 10px;
    margin-bottom: 5px;
}

.staff .member .member-description .member-rank {
    color: rgb(166, 205, 99);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    display: block;
    margin-bottom: 10px;
}

.staff .member .member-name-link {
    text-decoration: none;
}

.staff .member .member-name-link:hover span {
    color: rgb(166, 205, 99);
}


/*
    * ---------------------------------------------
    * 11 - Footer
    * ---------------------------------------------
    */

footer {
    text-align: center;
    margin-top: 140px;
    background: rgba(15, 19, 15, 0.8);
    padding: 40px 20px;
    font-weight: 300;
}

footer img {
    height: 75px;
    filter: grayscale(1);
    opacity: 0.5;
    margin-bottom: 15px;
}

footer .copyright {
    font-weight: 400;
}


/*
 * ---------------------------------------------
 * 12 - Socials
 * ---------------------------------------------
 */

.socials {
    margin-right: 10px;
}

.socials .social-icon {
    width: 25px;
    height: 25px;
    margin-right: 5px;
}

.socials a {
    color: rgb(142, 145, 142);
    text-decoration: none;
}

.socials a:hover {
    color: rgb(166, 205, 99);
}

.socials a:active {
    color: rgb(193, 193, 193);
}


/*
 * ---------------------------------------------
 * 13 - FAQ
 * ---------------------------------------------
 */

.faq {
    margin-top: 80px;
}

.faq .faq-heading {
    color: rgb(220, 211, 202);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 38px;
    text-align: center;
    margin-bottom: 80px;
}

.faq .accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 0;
    border-radius: 0 !important;
}

.faq .accordion-header {
    background: rgba(255, 255, 255, 0.025);
}

.faq .accordion-header .accordion-button {
    background: transparent;
    color: rgb(220, 211, 202);
    outline: none;
    box-shadow: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 26px;
    padding: 20px 26px;
}

.faq .accordion-header .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23dcd3ca'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq .accordion-header .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23a6cd63'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.faq .accordion-header .accordion-button .icon {
    height: 30px;
    width: 30px;
    margin-right: 10px;
    margin-top: -2px;
    color: rgb(166, 205, 99);
}

.faq .accordion-body {
    font-size: 20px;
    font-weight: 300;
    padding: 28px;
}

@media only screen and (max-width: 576px) {
    .faq .accordion-header .accordion-button {
        font-size: 22px;
    }

    .faq .accordion-header .accordion-button .icon {
        height: 26px;
        width: 26px;
    }

    .faq .accordion-body {
        font-size: 18px;
    }
}

/*
 * ---------------------------------------------
 * Statistics
 * ---------------------------------------------
 */

.rust-stats-container .stats-heading {
    color: rgb(220, 211, 202);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 38px;
    text-align: center;
    margin-bottom: 15px;
    margin-top: 20px;
}

/*
 * ---------------------------------------------
 * OutpostLink
 * ---------------------------------------------
 */

 .rust-link-container .link-heading {
    color: rgb(220, 211, 202);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 20px;
}
 .rust-link-container .link-info {
    color: rgb(220, 211, 202);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 20px;
}

/*
 * ---------------------------------------------
 * Vote Links
 * ---------------------------------------------
 */

.rust-vote-container {
    color: rgb(220, 211, 202);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 20px;
}

/*
 * ---------------------------------------------
 * Donations
 * ---------------------------------------------
 */

.rust-donations-container .donations-heading {
    color: rgb(220, 211, 202);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 20px;
}


/*
 * ---------------------------------------------
 * News
 * ---------------------------------------------
 */

 .rust-news-container .news-heading {
    color: rgb(220, 211, 202);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 20px;
}

/*
 * ---------------------------------------------
 * Reports
 * ---------------------------------------------
 */

 .rust-reports-container .reports-heading {
    color: rgb(220, 211, 202);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 20px;
}

/*
 * ---------------------------------------------
 * Bans List
 * ---------------------------------------------
 */

.rust-bans-container .bans-heading {
    color: rgb(220, 211, 202);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 20px;
}

/*
 * ---------------------------------------------
 * 15 - Servers Guide
 * ---------------------------------------------
 */

.servers-guide {
    padding-bottom: 84px;
}

.servers-guide-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 24px;
    align-items: stretch;
    margin: 34px 0 22px;
}

.servers-guide-hero-copy {
    min-height: 360px;
    padding: 44px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(120deg, rgba(10, 14, 14, 0.94), rgba(12, 16, 15, 0.7)),
        url("../img/background.webp") center / cover;
    border: 1px solid var(--bz-line);
    border-radius: var(--bz-radius);
}

.servers-guide-hero-copy h1 {
    max-width: 12ch;
    margin: 0;
    color: var(--bz-text);
    font-size: clamp(48px, 7vw, 82px);
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: 0;
}

.servers-guide-hero-copy p {
    max-width: 58ch;
    margin: 20px 0 0;
    color: rgb(196, 190, 181);
    font-size: 18px;
    line-height: 1.55;
}

.servers-guide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.servers-guide-live {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 360px;
    padding: 28px;
    background: rgba(14, 19, 18, 0.92);
    border: 1px solid var(--bz-line);
    border-left: 4px solid var(--bz-red);
    border-radius: var(--bz-radius);
}

.servers-guide-live > span,
.servers-guide-section-head span,
.servers-guide-profile-head span {
    color: var(--bz-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.servers-guide-live > strong {
    display: block;
    margin-top: 18px;
    color: var(--bz-green);
    font-size: clamp(42px, 5vw, 64px);
    line-height: 0.95;
    font-weight: 700;
}

.servers-guide-live div {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.servers-guide-live p {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin: 0;
    padding: 12px 0;
    color: var(--bz-muted);
    border-top: 1px solid var(--bz-line);
    font-weight: 700;
}

.servers-guide-live b {
    color: var(--bz-text);
}

.servers-guide-jump {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 42px;
    padding: 10px;
    background: rgba(12, 17, 16, 0.86);
    border: 1px solid var(--bz-line);
    border-radius: var(--bz-radius);
}

.servers-guide-jump a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    color: var(--bz-muted);
    border: 1px solid transparent;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
}

.servers-guide-jump a:hover,
.servers-guide-jump a:focus {
    color: var(--bz-text);
    background: rgba(205, 58, 40, 0.12);
    border-color: rgba(205, 58, 40, 0.25);
}

.servers-guide-section {
    margin-top: 64px;
    scroll-margin-top: 110px;
}

.servers-guide-section-head {
    margin-bottom: 22px;
}

.servers-guide-section-head h2 {
    max-width: 760px;
    margin: 8px 0 0;
    color: var(--bz-text);
    font-size: clamp(34px, 5vw, 56px);
    line-height: 0.98;
    font-weight: 700;
    letter-spacing: 0;
}

.servers-guide-table-wrap {
    overflow-x: auto;
    background: rgba(13, 18, 17, 0.92);
    border: 1px solid var(--bz-line);
    border-radius: var(--bz-radius);
}

.servers-guide-table {
    width: 100%;
    min-width: 820px;
    border-collapse: collapse;
}

.servers-guide-table th,
.servers-guide-table td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--bz-line);
    text-align: left;
    vertical-align: middle;
}

.servers-guide-table th {
    color: var(--bz-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.servers-guide-table td {
    color: rgb(190, 185, 176);
    font-size: 15px;
}

.servers-guide-table tr:last-child td {
    border-bottom: 0;
}

.servers-guide-table a {
    color: var(--bz-text);
    font-weight: 700;
    text-decoration: none;
}

.servers-guide-table a:hover {
    color: var(--bz-red);
}

.servers-guide-infra {
    padding: 38px;
    background: linear-gradient(135deg, rgba(14, 20, 19, 0.98), rgba(24, 30, 27, 0.86));
    border: 1px solid var(--bz-line);
    border-radius: var(--bz-radius);
}

.servers-guide-infra-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: 30px;
    align-items: start;
}

.servers-guide-infra-copy p {
    margin: 0 0 16px;
    color: rgb(196, 190, 181);
    font-size: 17px;
    line-height: 1.6;
}

.servers-guide-infra-copy p:last-child {
    margin-bottom: 0;
}

.servers-guide-infra-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.servers-guide-infra-facts div,
.servers-guide-rule-grid article {
    padding: 18px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--bz-radius);
}

.servers-guide-infra-facts strong {
    display: block;
    color: var(--bz-text);
    font-size: 20px;
    line-height: 1.1;
}

.servers-guide-infra-facts span {
    display: block;
    margin-top: 8px;
    color: var(--bz-muted);
    line-height: 1.45;
}

.servers-guide-rule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 18px;
}

.servers-guide-rule-grid h3 {
    margin: 0 0 10px;
    color: var(--bz-text);
    font-size: 22px;
    line-height: 1.1;
}

.servers-guide-rule-grid p {
    margin: 0;
    color: var(--bz-muted);
    line-height: 1.55;
}

.servers-guide-profile {
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 0;
    margin-top: 22px;
    background: rgba(14, 19, 18, 0.92);
    border: 1px solid var(--bz-line);
    border-left: 4px solid var(--bz-red);
    border-radius: var(--bz-radius);
    overflow: hidden;
    scroll-margin-top: 110px;
}

.servers-guide-profile-pve {
    border-left-color: var(--bz-green);
}

.servers-guide-profile-media {
    min-height: 100%;
    background: rgb(4, 7, 7);
}

.servers-guide-profile-media img {
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
    display: block;
}

.servers-guide-profile-body {
    padding: 26px;
}

.servers-guide-profile-head h3 {
    margin: 8px 0 0;
    color: var(--bz-text);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1;
    font-weight: 700;
}

.servers-guide-profile-head p {
    max-width: 72ch;
    margin: 12px 0 0;
    color: rgb(196, 190, 181);
    font-size: 17px;
    line-height: 1.55;
}

.servers-guide-profile-status {
    display: grid;
    grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    margin-top: 22px;
    padding: 16px 0;
    border-top: 1px solid var(--bz-line);
    border-bottom: 1px solid var(--bz-line);
}

.servers-guide-profile-status strong,
.servers-guide-profile-status span {
    display: block;
}

.servers-guide-profile-status strong {
    color: var(--bz-green);
    font-size: 24px;
    line-height: 1.1;
}

.servers-guide-profile-status span,
.servers-guide-profile-status p {
    color: var(--bz-muted);
    line-height: 1.45;
}

.servers-guide-profile-status p {
    margin: 0;
}

.servers-guide-profile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 28px;
    margin-top: 24px;
}

.servers-guide-profile-grid h4 {
    margin: 0 0 10px;
    padding-bottom: 8px;
    color: var(--bz-text);
    border-bottom: 2px solid rgba(205, 58, 40, 0.55);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.servers-guide-profile-pve .servers-guide-profile-grid h4 {
    border-bottom-color: rgba(122, 151, 74, 0.65);
}

.servers-guide-profile-grid ul {
    list-style: none;
    margin: 0;
    padding: 0;
    color: var(--bz-muted);
    line-height: 1.55;
}

.servers-guide-profile-grid li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 16px;
}

.servers-guide-profile-grid li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 6px;
    height: 6px;
    background: var(--bz-red);
    border-radius: 50%;
}

.servers-guide-profile-pve .servers-guide-profile-grid li::before {
    background: var(--bz-green);
}

.servers-guide-profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 26px;
}

.servers-guide-profile-actions .connect-copy {
    flex: 1 1 320px;
    max-width: 520px;
}

.servers-guide-profile-actions .bz-text-link {
    min-height: 42px;
    align-items: center;
}

@media (max-width: 1199px) {
    .servers-guide-hero,
    .servers-guide-infra-grid {
        grid-template-columns: 1fr;
    }

    .servers-guide-live {
        min-height: 0;
    }

    .servers-guide-profile {
        grid-template-columns: 1fr;
    }

    .servers-guide-profile-media {
        aspect-ratio: 2 / 1;
    }

    .servers-guide-profile-media img {
        min-height: 0;
    }
}

@media (max-width: 767px) {
    .servers-guide-hero-copy {
        min-height: 0;
        padding: 28px;
    }

    .servers-guide-rule-grid,
    .servers-guide-profile-status,
    .servers-guide-profile-grid,
    .servers-guide-infra-facts {
        grid-template-columns: 1fr;
    }

    .servers-guide-infra {
        padding: 24px;
    }

    .servers-guide-profile-body {
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .servers-guide-actions .btn,
    .servers-guide-profile-actions .btn,
    .servers-guide-profile-actions .bz-text-link,
    .servers-guide-profile-actions .connect-copy {
        width: 100%;
        max-width: none;
    }

    .servers-guide-profile-actions {
        align-items: stretch;
    }
}

/*
 * ---------------------------------------------
 * Admin Panel
 * ---------------------------------------------
 */

.rust-login-container .login-heading {
    color: rgb(220, 211, 202);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 20px;
}

/*
 * ---------------------------------------------
 * BattleZone 2026 redesign
 * ---------------------------------------------
 */

:root {
    --bz-bg: rgb(8, 12, 12);
    --bz-bg-soft: rgba(13, 18, 18, 0.94);
    --bz-panel: rgba(18, 24, 23, 0.92);
    --bz-panel-strong: rgb(22, 28, 26);
    --bz-line: rgba(165, 156, 138, 0.16);
    --bz-line-strong: rgba(166, 205, 99, 0.32);
    --bz-text: rgb(225, 218, 207);
    --bz-muted: rgb(151, 151, 141);
    --bz-faint: rgb(98, 104, 96);
    --bz-red: rgb(205, 58, 40);
    --bz-red-dark: rgb(122, 37, 30);
    --bz-green: rgb(166, 205, 99);
    --bz-gold: rgb(205, 169, 93);
    --bz-bluegray: rgb(84, 104, 107);
    --bz-radius: 6px;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bz-bg) !important;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
    background-size: 52px 52px;
    opacity: 0.35;
    z-index: -1;
}

.background-gradient {
    background:
        radial-gradient(circle at 70% 10%, rgba(205, 58, 40, 0.2), transparent 36%),
        radial-gradient(at center -10%, rgba(0,0,0,0) 25%, rgba(8,12,12,1) 72%),
        rgba(8, 12, 12, 0.88);
}

.btn {
    border-radius: 4px;
    letter-spacing: 0.02em;
}

.btn.btn-danger {
    background: linear-gradient(180deg, var(--bz-red), var(--bz-red-dark));
    color: rgb(255, 235, 226);
}

.btn.btn-success {
    background: rgba(91, 118, 45, 0.92);
    color: rgb(221, 249, 172);
}

.btn.btn-secondary {
    background: rgba(55, 59, 56, 0.94);
    color: rgb(218, 211, 201);
}

.bz-topbar-wrap {
    position: relative;
    z-index: 20;
    padding-top: 22px;
}

.bz-topbar {
    min-height: 74px;
    padding: 0 18px;
    background: linear-gradient(180deg, rgba(16, 20, 20, 0.98), rgba(10, 14, 14, 0.96));
    border: 1px solid var(--bz-line);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.bz-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 184px;
    color: var(--bz-text);
    text-decoration: none;
}

.bz-brand:hover {
    color: var(--bz-text);
}

.bz-brand-mark {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgb(5, 7, 7);
}

.bz-brand-name {
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.bz-nav-collapse {
    align-items: center;
}

.bz-nav-list {
    gap: 4px;
    align-items: center;
    margin-right: auto;
}

.bz-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 12px;
    color: rgb(163, 164, 155);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
}

.bz-nav-link::before {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 2px;
    height: 2px;
    background: var(--bz-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.18s ease;
}

.bz-nav-link:hover,
.bz-nav-link.active {
    color: var(--bz-text);
}

.bz-nav-link:focus {
    outline: 0;
    box-shadow: none;
}

.bz-nav-link:focus-visible {
    outline: 2px solid rgba(205, 58, 40, 0.65);
    outline-offset: 4px;
}

.bz-nav-link:hover::before,
.bz-nav-link.active::before,
.bz-menu-dropdown.show .bz-nav-link::before {
    transform: scaleX(1);
}

.bz-nav-link i {
    color: var(--bz-muted);
    font-size: 13px;
}

.bz-menu-dropdown {
    position: relative;
}

.bz-menu-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 12px;
}

.bz-menu-dropdown .dropdown-toggle::after {
    width: 6px;
    height: 6px;
    margin-left: 4px;
    vertical-align: 0.12em;
    border: 0;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    opacity: 0.7;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.bz-menu-dropdown.show .dropdown-toggle::after {
    transform: translateY(2px) rotate(225deg);
    opacity: 1;
}

.bz-menu-dropdown:hover .bz-nav-link {
    color: var(--bz-text);
}

.bz-menu-dropdown:hover .bz-nav-link::before {
    transform: scaleX(1);
}

.bz-menu-dropdown:hover > .bz-dropdown-menu {
    display: block;
}

.bz-dropdown-menu {
    min-width: 210px;
    margin-top: 10px !important;
    padding: 8px;
    background: rgb(13, 17, 17);
    border: 1px solid var(--bz-line);
    border-radius: 6px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.5);
    z-index: 2000;
}

.bz-dropdown-menu .dropdown-item {
    padding: 10px 12px;
    color: rgb(180, 177, 166);
    border-radius: 4px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.bz-dropdown-menu .dropdown-item:hover,
.bz-dropdown-menu .dropdown-item:focus {
    background: rgba(205, 58, 40, 0.15);
    color: var(--bz-text);
}

.bz-discord-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 42px;
    padding: 0 14px;
    background: linear-gradient(180deg, rgb(218, 66, 46), rgb(141, 42, 33));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 5px;
    color: rgb(255, 244, 238);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.bz-discord-btn:hover {
    color: #fff;
    filter: brightness(1.08);
}

.bz-discord-btn .discord-icon {
    width: 18px;
    height: 18px;
}

.bz-discord-btn .discord-counter {
    padding: 2px 7px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 99px;
    font-size: 11px;
    text-transform: none;
}

.bz-nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--bz-line);
    padding: 10px;
}

.bz-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--bz-text);
}

.bz-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 34px;
    min-height: 560px;
    margin-top: 26px;
    padding: 70px 26px 26px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--bz-line);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(8, 12, 12, 0.94) 0%, rgba(8, 12, 12, 0.72) 42%, rgba(8, 12, 12, 0.18) 100%),
        url("../img/background.webp") center / cover no-repeat;
    box-shadow: inset 0 -90px 110px rgba(8, 12, 12, 0.92), 0 28px 80px rgba(0, 0, 0, 0.36);
}

.bz-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(166, 205, 99, 0.42), transparent);
}

.bz-hero-content {
    max-width: 650px;
    align-self: center;
    position: relative;
    z-index: 1;
}

.bz-hero h1 {
    margin: 0;
    color: var(--bz-text);
    font-size: clamp(54px, 8vw, 96px);
    line-height: 0.92;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

.bz-hero h1 span {
    display: block;
}

.bz-hero-subtitle {
    margin: 24px 0 12px;
    color: var(--bz-green);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.1;
    font-weight: 700;
}

.bz-hero-copy {
    max-width: 40ch;
    margin: 0;
    color: rgb(196, 190, 181);
    font-size: 19px;
    line-height: 1.5;
}

.bz-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.bz-hero-actions .btn {
    min-width: 150px;
    padding: 13px 18px;
}

.bz-hero-panel {
    align-self: end;
    position: relative;
    z-index: 1;
    padding: 20px;
    background: rgba(9, 14, 14, 0.82);
    border: 1px solid var(--bz-line);
    border-radius: 8px;
    backdrop-filter: blur(6px);
}

.bz-hero-panel-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: var(--bz-muted);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.bz-hero-panel-head strong {
    color: var(--bz-green);
}

.bz-hero-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 18px;
}

.bz-hero-stat-grid div {
    padding: 14px 10px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.055);
}

.bz-hero-stat-grid strong,
.bz-hero-stat-grid span {
    display: block;
    text-align: center;
}

.bz-hero-stat-grid strong {
    color: var(--bz-text);
    font-size: 30px;
    line-height: 1;
}

.bz-hero-stat-grid span {
    margin-top: 6px;
    color: var(--bz-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bz-hero-route {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 18px;
    color: var(--bz-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bz-hero-route i {
    flex: 1;
    height: 1px;
    background: var(--bz-line);
}

.bz-section {
    margin-top: 90px;
}

.bz-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.bz-section-head h2,
.bz-support-copy h2 {
    margin: 0;
    color: var(--bz-text);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.bz-section-head p {
    max-width: 58ch;
    margin: 10px 0 0;
    color: var(--bz-muted);
    font-size: 18px;
    line-height: 1.5;
}

.bz-centered-head {
    justify-content: center;
    text-align: center;
}

.bz-text-link {
    color: var(--bz-green);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.bz-text-link:hover {
    color: var(--bz-text);
}

.bz-server-board {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    padding: 22px;
    background: linear-gradient(180deg, rgba(12, 17, 17, 0.88), rgba(8, 12, 12, 0.82));
    border: 1px solid var(--bz-line);
    border-radius: 8px;
}

.bz-server-column {
    min-width: 0;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 8px;
}

.bz-server-column-pvp {
    border-top: 3px solid var(--bz-red);
}

.bz-server-column-pve {
    border-top: 3px solid var(--bz-green);
}

.bz-server-column-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--bz-line);
}

.bz-server-column-head strong,
.bz-server-column-head span {
    display: block;
}

.bz-server-column-head strong {
    color: var(--bz-text);
    font-size: 25px;
    line-height: 1;
    text-transform: uppercase;
}

.bz-server-column-head span {
    max-width: 22ch;
    color: var(--bz-muted);
    line-height: 1.35;
    text-align: right;
}

.bz-server-list {
    display: grid;
    gap: 12px;
}

.bz-server-row {
    position: relative;
    display: grid;
    grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
    grid-template-areas:
        "media main"
        "media metrics"
        "actions actions";
    align-items: start;
    gap: 10px 12px;
    min-height: 192px;
    padding: 12px;
    background: rgba(18, 23, 23, 0.9);
    border: 1px solid var(--bz-line);
    border-left: 3px solid var(--bz-red);
    border-radius: var(--bz-radius);
    transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.bz-server-row:hover {
    transform: translateY(-1px);
    background: rgba(23, 29, 28, 0.96);
    border-color: rgba(205, 58, 40, 0.45);
}

.bz-server-pve {
    border-left-color: var(--bz-green);
}

.bz-server-media {
    grid-area: media;
    width: 100%;
    aspect-ratio: 2 / 1;
    overflow: hidden;
    background: rgb(4, 7, 7);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.bz-server-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bz-server-main {
    grid-area: main;
    min-width: 0;
}

.bz-server-main h3 {
    margin: 0;
    color: var(--bz-text);
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}

.bz-server-main p {
    margin: 7px 0 0;
    color: var(--bz-muted);
    font-size: 15px;
}

.bz-server-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
}

.bz-server-tags span {
    padding: 3px 7px;
    background: rgba(205, 169, 93, 0.14);
    border: 1px solid rgba(205, 169, 93, 0.2);
    color: rgb(220, 196, 141);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.bz-server-metrics {
    grid-area: metrics;
    display: grid;
    grid-template-columns: 1fr 74px;
    gap: 8px 12px;
    align-items: center;
}

.bz-server-metrics div strong,
.bz-server-metrics div span {
    display: block;
}

.bz-server-metrics div strong {
    color: var(--bz-text);
    font-size: 24px;
    line-height: 1;
}

.bz-server-metrics div span {
    color: var(--bz-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.bz-server-progress {
    grid-column: 1 / -1;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.bz-server-progress i {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--bz-green), rgb(214, 224, 131));
}

.bz-offline {
    grid-column: 1 / -1;
    padding: 10px;
    background: rgba(205, 58, 40, 0.18);
    color: rgb(238, 150, 137);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.bz-server-actions {
    grid-area: actions;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    align-self: end;
}

.bz-server-actions .connect-copy {
    grid-column: 1 / -1;
}

.connect-copy {
    display: flex;
    min-width: 0;
}

.connect-copy input {
    min-width: 0;
    flex: 1;
    height: 34px;
    padding: 0 10px;
    background: rgba(4, 7, 7, 0.85);
    border: 1px solid var(--bz-line);
    color: rgb(196, 190, 181);
    font-size: 12px;
    font-family: "Roboto Condensed", Arial, sans-serif;
}

.connect-copy button {
    min-width: 42px;
    height: 34px;
    border: 1px solid var(--bz-line);
    border-left: 0;
    background: rgba(35, 40, 38, 0.92);
    color: var(--bz-text);
    font-weight: 700;
    text-transform: uppercase;
}

.bz-server-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 6px 10px;
    font-size: 14px;
}

.bz-support-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.95fr);
    gap: 28px;
    padding: 34px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(11, 15, 15, 0.98), rgba(12, 16, 15, 0.78)),
        rgba(12, 16, 15, 0.96);
    border: 1px solid var(--bz-line);
    border-radius: 8px;
}

.bz-support-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 72% 28%, rgba(205, 58, 40, 0.16), transparent 34%);
    pointer-events: none;
}

.bz-support-copy,
.bz-support-media,
.bz-support-grid {
    position: relative;
    z-index: 1;
}

.bz-support-copy h2 {
    color: var(--bz-red);
}

.bz-support-lead {
    margin: 14px 0 10px;
    color: var(--bz-green);
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
}

.bz-support-copy p:not(.bz-support-lead) {
    max-width: 48ch;
    color: rgb(196, 190, 181);
    font-size: 18px;
    line-height: 1.55;
}

.bz-support-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.bz-support-actions .btn {
    padding: 13px 18px;
}

.bz-support-media {
    min-height: 310px;
    overflow: hidden;
    border: 1px solid var(--bz-line);
    border-radius: 8px;
    background: rgb(5, 8, 8);
}

.bz-support-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.05) saturate(0.86);
}

.bz-support-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 8px;
}

.bz-support-grid div {
    min-height: 136px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.075);
}

.bz-support-grid i {
    color: rgb(205, 169, 93);
    font-size: 28px;
    margin-bottom: 18px;
}

.bz-support-grid strong,
.bz-support-grid span {
    display: block;
}

.bz-support-grid strong {
    color: var(--bz-text);
    font-size: 16px;
    text-transform: uppercase;
}

.bz-support-grid span {
    margin-top: 8px;
    color: var(--bz-muted);
    font-size: 14px;
    line-height: 1.35;
}

.bz-support-grid .bz-perks {
    border-color: rgba(166, 205, 99, 0.24);
}

.bz-accordion .accordion-item,
.rules .accordion-item,
.faq .accordion-item {
    background: rgba(15, 20, 20, 0.88);
    border: 1px solid var(--bz-line);
    border-radius: 6px !important;
    overflow: hidden;
    margin-bottom: 10px;
}

.bz-accordion .accordion-header .accordion-button,
.rules .accordion-header .accordion-button,
.faq .accordion-header .accordion-button {
    background: rgba(255, 255, 255, 0.025);
    color: var(--bz-text);
    font-size: 22px;
    letter-spacing: 0.02em;
}

.bz-accordion .accordion-header .accordion-button:not(.collapsed),
.rules .accordion-header .accordion-button:not(.collapsed),
.faq .accordion-header .accordion-button:not(.collapsed) {
    color: var(--bz-green);
}

.bz-accordion .accordion-body,
.rules .accordion-body,
.faq .accordion-body {
    color: rgb(190, 184, 176);
    line-height: 1.5;
}

.bz-server-modal .modal-content {
    border-radius: 8px;
    border-width: 1px;
    border-color: var(--bz-line);
}

.bz-server-modal .modal-footer {
    align-items: center;
    gap: 8px;
    padding: 10px;
}

.bz-server-modal .connect-copy {
    flex: 1 1 240px;
}

.rust-stats-container {
    padding: 38px 0 0;
}

.rust-stats-container .stats-heading {
    margin: 0;
    color: var(--bz-text);
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1;
    letter-spacing: 0.02em;
}

.rust-stats-container .stats-heading + p,
.rust-stats-container .text-light {
    color: var(--bz-muted) !important;
}

.rust-stats-container iframe {
    display: block;
    min-height: 1080px;
    margin-top: 24px;
    background: rgba(8, 12, 12, 0.74);
    border: 1px solid var(--bz-line);
    border-radius: 8px;
}

@media (max-width: 1199px) {
    .bz-topbar {
        padding: 10px 14px;
    }

    .bz-nav-collapse {
        padding-top: 16px;
    }

    .bz-nav-list {
        align-items: stretch;
        gap: 2px;
    }

    .bz-nav-link {
        width: 100%;
        justify-content: flex-start;
    }

    .bz-discord-btn {
        margin-top: 12px;
        width: 100%;
    }

    .bz-menu-dropdown .dropdown-toggle::after {
        margin-left: auto;
    }

    .bz-dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
        min-width: 0;
        margin: 0 0 8px 0 !important;
        padding: 6px;
        box-shadow: none;
    }

    .bz-dropdown-menu .dropdown-item {
        white-space: normal;
    }

    .bz-server-row {
        grid-template-columns: minmax(130px, 150px) minmax(0, 1fr);
    }

    .bz-server-main h3 {
        font-size: 21px;
    }

    .bz-support-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .bz-hero,
    .bz-support-section {
        grid-template-columns: 1fr;
    }

    .bz-hero {
        min-height: auto;
        padding-top: 56px;
    }

    .bz-hero-panel {
        align-self: stretch;
    }

    .bz-section-head {
        display: block;
    }

    .bz-text-link {
        display: inline-block;
        margin-top: 14px;
    }

    .bz-server-board {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .bz-topbar-wrap {
        padding-top: 12px;
    }

    .bz-brand {
        min-width: 0;
    }

    .bz-brand-name {
        display: none;
    }

    .bz-hero {
        margin-top: 16px;
        padding: 42px 18px 18px;
    }

    .bz-hero h1 {
        font-size: 52px;
    }

    .bz-hero-stat-grid,
    .bz-support-grid {
        grid-template-columns: 1fr;
    }

    .bz-server-board {
        padding: 14px;
    }

    .bz-server-row {
        grid-template-columns: 1fr;
        grid-template-areas:
            "main"
            "media"
            "metrics"
            "actions";
        align-items: start;
        min-height: 0;
    }

    .bz-server-main h3 {
        font-size: 24px;
    }

    .bz-server-actions {
        grid-template-columns: 1fr;
    }

    .bz-support-section {
        padding: 22px;
    }

    .bz-support-media {
        min-height: 220px;
    }
}

