.header-top {
    display: flex;
    background: repeating-conic-gradient(from 45deg, #161616 0% 25%, #1C1C1C 0% 50%);
    background-size: 28px 28px;
    background-color: #1C1C1C;
    height: 80px;
    align-items: center;
    padding: 0 15%;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.login-form {
    display: flex;
    gap: 10px;
}

.login-form input {
    width: 150px;
    padding: 5px 10px;
}

.login-form button {
    border: none;
    font-weight: bold;
    padding: 0 25px;
    border-radius: 4px;
}

.btn-red {
    background-color: #A02225;
    color: white;
}

.btn-blue {
    background-color: #1ECAF8;
    color: black;
}

.header-bottom {
    background-color: #F3DD29;
    height: 35px;
    display: flex;
    align-items: center;
    padding: 0 20%;
    font-weight: 500;
}

.header-bottom a {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 15px;
    text-transform: uppercase;
    color: black;
    text-decoration: none;
    text-wrap: nowrap;
}

.header-bottom a:hover {
    background-color: #A02225 !important;
    color: #F3DD29
}

.banner-area {
    z-index: 1;
    position: relative
}

.banner-area .carousel-item,
.banner-area .carousel-inner {
    background-color: #010101;
}

.banner-area img {
    height: 500px;
    width: 100%;
    object-fit: contain;
}

#banner-slide .carousel-control-next,
#banner-slide .carousel-control-prev {
    width: fit-content;
    padding: 0 70px;
}

#banner-slide .carousel-control-next-icon,
#banner-slide .carousel-control-prev-icon {
    filter: brightness(0) saturate(100%) invert(75%) sepia(37%) saturate(773%) hue-rotate(10deg) brightness(103%) contrast(108%);
    height: 50px;
    width: 50px;
}

.content-area {
    background: repeating-conic-gradient(from 45deg, #161616 0% 25%, #1C1C1C 0% 50%);
    background-size: 28px 28px;
    background-color: #1C1C1C;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: #F3DD29 1px solid;
}

.content-area img {
    padding: 20px;
}

.new-info {
    padding: 6px 17%;
    display: flex;
    text-wrap: nowrap;
    color: white;
    background-color: black;
    width: 100%;
    position: relative;
    z-index: 1;
}

.new-info span {
    padding: 0 10px;
    color: #F3DD29;
}


.player-record {
    padding: 20px 15%;
    display: flex;
    justify-content: center;
    gap: 2%;
    background-image: url(../img/darkwood-bg.jpg);
    border-bottom: #F3DD29 1px solid;
}

.record-table {
    display: flex;
    flex-direction: column;
    background-color: #202020;
    padding: 5px 20px 15px 20px;
    border: 1px solid #000;
    box-shadow: #676767 0 0 3px;
}

.record-table span {
    font-size: 22px;
    font-weight: 500;
    color: #F3DD29;
}

.record-table table {
    color: #F3DD29;
    text-align: center;
    margin: 5px 0;
}

.record-table table td,
.record-table table th {
    padding: 6px 35px;
}

.record-table table tr:nth-child(odd) {
    background-color: #292929;
}

.record-table table tr:nth-child(even) {
    background-color: #3A3939;
}

.record-table table tr:nth-child(1) {
    background-color: #F3DD29;
    color: black;
}

.record-table table tr td:nth-child(2) {
    color: white;
}

.bank-offline {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    border-bottom: #F3DD29 1px solid;
    background: repeating-conic-gradient(from 45deg, #161616 0% 25%, #1C1C1C 0% 50%);
    background-size:28px 28px;
    background-color: #1C1C1C;
}

.bank-offline table {
    color: white;
    text-wrap: nowrap;
    border: 1px solid #F3DD29;
}

.bank-offline table tr:nth-child(1)>th:nth-child(1) {
    background-color: #F3DD29;
    font-size: 22px;
    font-weight: 500;
    color: #000;
    text-align: left;
}

.bank-offline table th {
    background-color: #20201F;
    text-align: center;
    color: #F3DD29;
    border: 1px solid #F3DD29;
}

.bank-offline table td {
    background-color: rgba(0, 0, 0, 0);
    font-size: 14px;
    border: 1px solid #F3DD29;
}

.bank-offline table th,
.bank-offline table td {
    padding: 5px 15px;
}


.footer-area {
    background: #0F0F0F;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 0;
    font-size: 14px;
    font-weight: 500;
}

.floating-sidebar {
    position: fixed;
    z-index: 999;
    left: 0;
    top: 20%;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.floating-icon {
    background-color: #202020;
    color: #F3DD29;
    width: 55px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    border-radius: 2px;
    cursor: pointer;
}