﻿

  body {
    margin: 0 !important;
    padding: 0 !important;
  }


  .__xbyd-hdr-wrapper,
  .__xbyd-hdr-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "League Spartan", sans-serif;
   
  }


  .__xbyd-hdr-wrapper {
    background-color: #202020;
    color: #ffffff;
    height: 60px;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 0 40px; 
    margin: 0 !important;  
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    position: relative; 
    width: 100%;
    z-index: 9999;
  }

 
  .__xbyd-mob-checkbox,
  .__xbyd-mob-drop-cb {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
  }

 
  .__xbyd-hdr-logo img {
      height: 50px; 
      display: block;
  }


  .__xbyd-desktop-nav {
    font-size: 18px;
    display: flex;
    height: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .__xbyd-desk-list {
    display: flex;
    list-style: none;
    height: 100%;
    justify-content: center;
    gap: 40px; 
  }

  .__xbyd-desk-item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 10px;
    cursor: pointer;
  }

  .__xbyd-desk-item > a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s;
    font-weight: 500;
  }

  .__xbyd-desk-item:hover > a {
    opacity: 0.8; 
  }

 
  .__xbyd-desk-dropdown {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: #000000e6;
    list-style: none;
    min-width: 220px;
    padding: 10px 0;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.6);
    border-radius: 0 0 4px 4px;
  }

  .__xbyd-desk-item.has-drop:hover .__xbyd-desk-dropdown {
    display: block;
  }

  .__xbyd-desk-drop-item {
    position: relative;
  }

  .__xbyd-desk-drop-item > a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    font-size: 15px;
    transition: background-color 0.2s;
  }

  .__xbyd-desk-drop-item:hover > a {
    background-color: rgba(255, 255, 255, 0.1); 
  }

  
  .__xbyd-desk-sub-dropdown {
    display: none;
    position: absolute;
    top: 0; 
    left: 100%;
    background-color: #000000e6;
    list-style: none;
    min-width: 220px;
    padding: 10px 0;
    box-shadow: 4px 8px 16px rgba(0,0,0,0.6);
    border-radius: 4px;
  }

  .__xbyd-desk-drop-item.has-sub:hover .__xbyd-desk-sub-dropdown {
    display: block;
  }

  .__xbyd-desk-active {
    color: #ffffff !important;
    font-weight: 500 !important;
  }

  
  .__xbyd-hdr-right {
    display: flex; 
    align-items: center;
    gap: 20px;
    font-size:16px;
  }

  .__xbyd-tools {
      display: flex;
      align-items: center;
      gap: 20px;
      font-size:16px;
  }

  .__xbyd-tools a {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #ffffff;
      text-decoration: none;
      font-weight: 500;
      transition: opacity 0.2s;
  }

  .__xbyd-tools a:hover {
      opacity: 0.8;
  }

  
  .__xbyd-mob-btn {
    display: none; 
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    cursor: pointer;
  }

  .__xbyd-mob-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  
  .__xbyd-mob-menu {
    position: absolute;
    top: 60px; 
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    max-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    transition: max-height 0.4s ease-in-out;
    box-shadow: 0 8px 16px rgba(0,0,0,0.5);
  }

  @media (min-width: 992px) {
    .__xbyd-mob-menu {
      display: none !important;
    }
  }

  .__xbyd-mob-list,
  .__xbyd-mob-sublist {
    list-style: none;
    display: block; 
  }

  .__xbyd-mob-item {
    border-top: 1px solid #333333;
  }

  .__xbyd-mob-link,
  .__xbyd-mob-drop-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
  }

  .__xbyd-mob-link:hover,
  .__xbyd-mob-drop-label:hover {
    background-color: #2a2a2a;
    color: #ffffff; 
  }

  .__xbyd-mob-drop-label::after {
    content: '+';
    font-size: 18px;
    font-weight: bold;
  }
  .__xbyd-mob-drop-cb:checked + .__xbyd-mob-drop-label::after {
    content: '-';
  }
  .__xbyd-mob-drop-cb:checked + .__xbyd-mob-drop-label {
    color: #ffffff;
    font-weight: 500; 
  }

  .__xbyd-mob-sublist {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    background-color: #121212;
  }
  
  .__xbyd-mob-drop-cb:checked ~ .__xbyd-mob-sublist {
    max-height: 1200px; 
  }
  
  .__xbyd-mob-sublist .__xbyd-mob-link,
  .__xbyd-mob-sublist .__xbyd-mob-drop-label {
    padding-left: 40px;
    font-size: 14px;
    border-top: 1px solid #222;
  }
  .__xbyd-mob-sublist .__xbyd-mob-sublist .__xbyd-mob-link {
    padding-left: 60px;
    background-color: #0a0a0a;
  }

  .__xbyd-mob-active {
    color: #ffffff !important; 
    font-weight: 500 !important;
  }

 
  @media (max-width: 991px) {
    .__xbyd-hdr-wrapper {
        padding: 0 20px; 
    }

    .__xbyd-desktop-nav {
      display: none;
    }

    .__xbyd-mob-btn {
      display: flex; 
    }

    .__xbyd-tools a span {
        display: none; 
    }

    .__xbyd-mob-checkbox:checked ~ .__xbyd-hdr-right .__xbyd-mob-btn .__xbyd-mob-line:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }
    .__xbyd-mob-checkbox:checked ~ .__xbyd-hdr-right .__xbyd-mob-btn .__xbyd-mob-line:nth-child(2) {
      opacity: 0;
    }
    .__xbyd-mob-checkbox:checked ~ .__xbyd-hdr-right .__xbyd-mob-btn .__xbyd-mob-line:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }

    .__xbyd-mob-checkbox:checked ~ .__xbyd-mob-menu {
      max-height: calc(100vh - 60px); 
    }
  }
