.header-container {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
}

.header-container .header {
    width: calc(100vw - 40px);
    padding: 20px 20px;
    max-width: 1380px;
    height: 40px;
    display: flex;
    justify-content: space-between;
    position: fixed;
    z-index: 3;
    background: rgba(9, 15, 30, 0.9);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    -o-backdrop-filter: blur(6px);
    -moz-backdrop-filter: blur(6px);
}
.header-container .header .left {
    display: flex;
    align-items: center;
    gap: 30px;
}
.logotype {
    font-family: 'Leckerli One';
    font-size: 32px;
    cursor: pointer;
    color: #fff;
}
.header-container .header .left .separator {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.05);
}
.information-button {
    width: 179px;
    height: 40px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.information-button  .details {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 10px;
}
.information-button  .details span {
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
}
.information-button  .details svg {
    opacity: 0.5;
}
.information-button.free-cash {
    background: linear-gradient(253deg, #635FF5 -17.61%, #892AF1 99.54%);
    box-shadow: 0px 0px 32.1px -2px rgba(128, 55, 242, 0.50);
}

.information-button.free-cash img {
    width: 72px;
    height: 50px;
    margin-top: -10px;
}

.header-container .header .left .navigation {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.header-container .header .left .navigation .navigation-list {
    display: flex;
    gap: 40px;
}
.header-container .header .left .navigation .navigation-list a {
    display: block;
    padding: 7px 10px;
    font-weight: 400;
    font-size: 14px;
    transition: all 300ms;
}
.header-container .header .left .navigation .navigation-list a.active {
    color: #fff;
    font-weight: 500;
    transition: all 300ms;
}

.header-container .header .left .navigation .navigation-list a:hover {
    color: #fff;
    transition: all 300ms;
}

.header-container .header .left .navigation .active-element {
    width: 42px;
    height: 3px;
    border-radius: 24px;
    background: #6517AA;
    box-shadow: 0px -1px 15px 5px rgba(101, 23, 170, 0.20);
    transition: all 300ms;
}

.header-container .header .right {
    display: flex;
}

.guest-buttons {
    display: flex;
    height: 40px;
    width: fit-content;
    gap: 10px;
}
.guest-buttons .button {
    height: 40px;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1C1F2D;
    border-radius: 14px;
    padding: 0px 20px;
    cursor: pointer;
}
.guest-buttons .button.signin {}

.guest-buttons .button.signup {
    background: linear-gradient(97.97deg, #4FACFE 0.49%, #4FACFE 36.66%, #71BDFF 50.41%, #6BBAFF 52.96%, #4FACFE 64.67%, #4FACFE 102.37%);;
    background-size: 500%;
    animation: 10s shine linear infinite;
    box-shadow: 0px 0px 32.1px -2px rgb(54 183 243 / 10%);
    transition: all 300ms;
}

.guest-buttons .button.signup:hover {
    box-shadow: 0px 0px 32.1px -2px rgb(54 183 243 / 30%);
    transition: all 300ms;
}

.header-container .header .right .user-header {
    display: flex;
    align-items: center;
    gap: 15px;
}
.header-container .header .right .user-header .balance-block {
    display: flex;
    width: fit-content;
    height: 38px;
    border: 1px solid #242737;
    background: #1C1F2D;
    border-radius: 14px;
    align-items: center;
}
.header-container .header .right .user-header .balance-block .amount {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    gap: 10px;
    padding: 0px 12px;
}
.header-container .header .right .user-header .balance-block .amount svg {}
.header-container .header .right .user-header .balance-block .wallet-button {
    border-radius: 14px;
    background: linear-gradient(97.97deg, #4FACFE 0.49%, #4FACFE 36.66%, #71BDFF 50.41%, #6BBAFF 52.96%, #4FACFE 64.67%, #4FACFE 102.37%);;
    background-size: 500%;
    animation: 10s shine linear infinite;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 21px;
    font-weight: 500;
    font-size: 14px;
    gap: 10px;
    box-shadow: 0px 0px 32.1px -2px rgb(54 183 243 / 10%);
    transition: all 300ms;
    cursor: pointer;
}

.header-container .header .right .user-header .balance-block .wallet-button.low_balance {
  position: relative;
  z-index: 1;
  animation: walletPulse 1.5s ease-in-out infinite;
}

.header-container .header .right .user-header .balance-block .wallet-button.low_balance::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(79,172,254, 0.7);
  animation: borderPulse 1.5s ease-in-out infinite;
}

@keyframes walletPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

@keyframes borderPulse {
  0%, 100% {
    border-color: rgba(79,172,254, 0.4);
  }
  50% {
    border-color: rgba(255,255,255, 0.6);
  }
}

.header-container .header .right .user-header .balance-block .wallet-button .bonus-pending {
    position: absolute;
    color: #fff;
    font-size: 12px;
    background: linear-gradient(94deg, #FE4F52 1%, #FE4F52 36%, #FF7189 51%, #FE4F52 64%, #FE4F52 100%);
    background-size: 500%;
    animation: 10s shine linear infinite;
    border-radius: 12px;
    padding: 2px 6px;
    font-weight: 600;
    transform: translate(46px, -13px) rotate(35deg);
}

.header-container .header .right .user-header .balance-block .wallet-button span {
    color: #fff;
}

.header-container .header .right .user-header .balance-block .wallet-button:hover {
    box-shadow: 0px 0px 32.1px -2px rgb(54 183 243 / 30%);
    transition: all 300ms;
}

.header-container .header .right .user-header .balance-block .wallet-button svg {}
.header-container .header .right .user-header .balance-block .wallet-button span {}

.header-container .header .right .user-header .profile {}
.header-container .header .right .user-header .profile .avatar-block {
    width: 39px;
    height: 39px;
    border: 1px solid #4FACFE;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.header-container .header .right .user-header .profile .avatar-block img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    margin-top: 7px;
}

.header-container .header .right .user-header .profile .avatar-block.no-arrow img {
    margin-left: 1px;
    margin-top: 1px;
}

.header-container .header .right .user-header .profile .avatar-block .arrow {
    width: 9px;
    height: 9px;
    background: #1C1F2D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    margin-top: -2px;
    justify-content: center;
}
.header-container .header .right .user-header .profile .avatar-block .arrow svg {}

.header-container .header .right .user-header .button {
    background: #1C1F2D;
    border: 1px solid #242737;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 300ms;
    cursor: pointer;
}
.header-container .header .right .user-header .notifications-block {}
.header-container .header .right .user-header .notifications-block {}
.header-container .header .right .user-header .notifications-block .dot {
    width: 8px;
    height: 8px;
    background: #ff5e00;
    border-radius: 50%;
    border: 2px solid #171926;
    position: absolute;
    margin-top: -32px;
    margin-left: 32px;
}

.header-container .header .right .user-header .button svg {
    stroke: #4F546A;
    fill: #4F546A;
    transition: all 300ms;
}

.header-container .header .right .user-header .button:hover svg, .header-container .header .right .user-header .button.active svg {
    stroke: #595E7A;
    fill: #595E7A;
    transition: all 300ms;
}

.header-container .header .right .user-header .button:hover, .header-container .header .right .user-header .button.active {
    border: 1px solid #595E7A;
    transition: all 300ms;
}

/* @media (max-width: 1170px) {
    .information-button {
        display: none !important;
    }
} */

@media (max-width: 1024px) {
    .information-button {
        display: flex !important;
    }

    .header-container .header .left .navigation {
        display: none !important;
    }
}

@media (max-width: 640px) {
    .information-button {
        display: none !important;
    }

    .header-container .header .left .separator {
        display: none !important;
    }
}

@media (max-width: 800px) {
    .header-container .header .right .user-header .balance-block .wallet-button .bonus-pending {
        transform: translate(0px, -22px) rotate(0deg) scale(0.7);
    }

    .header-container .header {
        width: calc(100vw - 30px) !important;
        padding: 20px 15px !important;
    }

    .header-container .header .right .user-header .balance-block .amount {
        padding: 0px 7px;
        padding-right: 10px;
    }

    .header-container .header .right .user-header .balance-block .wallet-button {
        padding: 0 !important;
        width: 40px;
        height: 40px;
        margin-right: -1px;
    }
    
    .header-container .header .right .user-header .balance-block .wallet-button span {
        display: none !important;
    }
}

@media (max-width: 500px) {
    .header-container .header .right .user-header .logout {
        display: none !important;
    }
}

@media (max-width: 400px) {
    .header-container .header .right .user-header .notifications-block {
        display: none !important;
    }
}