.mobile-menu-container {
  display: none;
}

.mobile-menu-toggle {
  display: none;
}

@media (max-width:994px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }

  .server-section {
    width: fit-content;
    margin: 0 auto;
  }

  .server-left {
    width: 324px;
  }

  .content-left {
    width: 100%;
  }

  .userpanel-block {
    width: 324px;
    margin: 0 auto;
  }

  .stats-block {
    width: 324px;
    margin: 0 auto;
  }

  .rankingblock {
    width: 324px;
    margin: 0 auto;
  }

  .content-right {
    margin-top: 50px;
    width: 100%;
  }

  .loginblock {
    width: 324px;
    margin: 0 auto;
  }

  .welcome-section {
    min-width: 100%;
    min-height: auto !important;
  }

  .welcome-section .welcomebox {
    width: 100% !important;
    background-size: contain;
    height: 100px !important;
    background-position: center;
  }

  .welcome-button ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
  }

  .sitelogo img {
    height: 60px;
  }

  .header-right {
    display: none;
  }

  .header {
    padding: 0 15px;
  }

  .mobile-menu-toggle {
    display: none;
    position: absolute;
    right: 25px;
    top: 25px;
    cursor: pointer;
    z-index: 999;
  }

  .hamburger-icon {
    display: inline-block;
    width: 30px;
    height: 24px;
    position: relative;
  }

  .hamburger-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #ffffff;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
  }

  .hamburger-icon span:nth-child(1) {
    top: 0px;
  }

  .hamburger-icon span:nth-child(2) {
    top: 10px;
  }

  .hamburger-icon span:nth-child(3) {
    top: 20px;
  }

  .mobile-menu-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    overflow-y: auto;
    transition: all 0.3s ease;
  }

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-menu-close {
    color: #fff;
    font-size: 30px;
    cursor: pointer;
  }

  .mobile-menu-content {
    padding: 20px;
  }

  .mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
  }

  .mobile-nav li {
    margin-bottom: 15px;
  }

  .mobile-nav li a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    display: block;
    padding: 10px 0;
  }

  .mobile-language {
    margin-bottom: 30px;
  }

  .mobile-language p {
    color: #fff;
    margin-bottom: 10px;
  }

  .mobile-language ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
  }

  .mobile-language li a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .mobile-signin {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .mobile-login-btn,
  .mobile-register-btn {
    display: block;
    padding: 12px 20px;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
  }

  .mobile-login-btn {
    background-color: #000;
    color: #fff !important;
  }

  .mobile-register-btn {
    background-color: #000;
    color: #fff !important;
  }

  @media (max-width: 991px) {

    .navigation,
    .language,
    .signin-box {
      display: none;
    }

    .mobile-menu-toggle {
      display: block;
    }

    .sitelogo {
      max-width: 120px;
    }
  }

  .mobile-menu-open {
    overflow: hidden;
  }

  .mobile-menu-open .mobile-menu-container {
    display: block;
  }

  .mobile-menu-open .hamburger-icon span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
  }

  .mobile-menu-open .hamburger-icon span:nth-child(2) {
    opacity: 0;
    left: -60px;
  }

  .mobile-menu-open .hamburger-icon span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
  }
}