<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.site-header {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 12px;
  margin-top: 0;
  margin-bottom: 0;
  height: 100%;
}

.site-header .container .menu-header-container {
  padding-top: 15px;
  padding-bottom: 4px;
}

.site-branding {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-logo-link img {
  max-height: 50px !important;
  width: auto;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  position: absolute;
  top: 28px;
  right: 20px;
  z-index: 160;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
}

.hamburger-icon .line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.main-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  background-color: #dd2984;
}

.main-navigation div {
  width: 100%;
  height: 100%;
}

.list-menu-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
}

.list-menu-header .menu-item {
  display: flex;
  align-items: center;
  min-width: max-content;
  height: 100%;
  position: relative;
}

.list-menu-header .menu-item a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: white;
  text-align: center;
  font-size: 15px;
  gap: 6px;
  padding: 13px 6px 11px 6px;
}

.list-menu-header .menu-item a .arrow-down {
  width: 13px;
  height: 10px;
  margin-left: 4px;
}

.list-menu-header .menu-item a img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.list-menu-header &gt; .menu-item.current-menu-item &gt; a {
  color: #c55bee;
}

.list-menu-header .menu-item:hover &gt; a {
  background-color: #ffffff69;
}

.list-menu-header .sub-menu {
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #101010;
  border-radius: 0 0 12px 12px;
  z-index: 100;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, auto);
  column-gap: 20px;
  pointer-events: none;
  min-width: 280px;
  padding: 6px;
}

.list-menu-header .sub-menu::after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 50%;
  width: 1px;
  background-color: #303030;
}

.list-menu-header .menu-item:hover .sub-menu {
  opacity: 1;
  transform: scaleY(1);
  pointer-events: auto;
}

.list-menu-header .sub-menu .menu-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  height: auto;
  border-bottom: none;
}

.list-menu-header .sub-menu .menu-item a {
  display: flex;
  width: 100%;
  height: 100%;
  color: white;
  text-align: left;
  border-radius: 0;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
  transition: color 0.3s ease;
}

.list-menu-header .sub-menu .menu-item a:hover {
  color: #c55bee;
  background-color: transparent !important;
}

.list-menu-header .sub-menu .menu-item a img {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

.list-menu-header .sub-menu .menu-item:hover &gt; a {
  background-color: transparent !important;
  color: #c55bee;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -80%;
  width: 80%;
  height: 100%;
  background-color: var(--primary-color);
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease;
  z-index: 200;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 12px;
}

.mobile-sidebar.open {
  left: 0;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 150;
}

.modal-overlay.active {
  display: block;
}

.mobile-list-menu-header {
  display: flex;
  flex-direction: column;
  margin-top: 12px;
}

.mobile-list-menu-header .menu-item {
  width: 100%;
  position: relative;
}

.mobile-list-menu-header .menu-item a {
  padding: 12px;
  font-size: 16px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: white;
  gap: 10px;
}

.mobile-list-menu-header .menu-item a img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.mobile-list-menu-header .menu-item a:hover {
  color: #101010;
}

.mobile-list-menu-header .sub-menu {
  margin-left: 24px;
  border-radius: 8px;
  margin-right: 10px;
}

.mobile-list-menu-header .sub-menu .menu-item a {
  position: relative;
  justify-content: flex-start;
  padding: 8px 0;
  gap: 8px;
}

.mobile-list-menu-header .sub-menu .menu-item a img {
  width: 16px;
  height: 16px;
}

.mobile-list-menu-header .submenu-arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
  cursor: pointer;
  margin-left: 10px;
}

.mobile-list-menu-header .submenu-arrow::before {
  content: "â–¶";
  display: inline-block;
  color: white;
  padding: 6px;
}

.mobile-list-menu-header .submenu-arrow.open::before {
  content: "â–¼";
  color: white;
  padding: 6px;
}

.mobile-list-menu-header .sub-menu {
  display: none;
  flex-direction: column;
}

.mobile-list-menu-header .sub-menu.open {
  display: flex;
}

.btn-login {
  background: linear-gradient(180deg, #2a2437 0%, #676078 100%);
  border: 1px solid #676078;
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  height: max-content;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-register {
  background: linear-gradient(180deg, #471c4f 0%, #b754c8 100%);
  border: 1px solid #b754c8;
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  height: max-content;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-login:hover {
  background: linear-gradient(180deg, #463d52 0%, #9e8ea1 100%);
  border-color: #9e8ea1;
}

.btn-register:hover {
  background: linear-gradient(180deg, #59206d 0%, #c378d9 100%);
  border-color: #c378d9;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.fast-link {
  font-size: 16px;
  font-weight: 500;
  background: #323232;
  padding: 8px 12px;
  border-radius: 5px;
  height: max-content;
  cursor: pointer;
  transition: all 0.3s;
}

.fast-link:hover {
  background-color: var(--primary-color);
}

.ring-live {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 6px;
}

.ring-container {
  position: relative;
  width: 16px;
  height: 16px;
}

.ringring {
  border: 2px solid #62bd19;
  -webkit-border-radius: 30px;
  height: 20px;
  width: 20px;
  position: absolute;
  left: -2px;
  top: -2px;
  -webkit-animation: pulsate 1s ease-out;
  -webkit-animation-iteration-count: infinite;
  opacity: 0;
}

.circle {
  width: 8px;
  height: 8px;
  background-color: #62bd19;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 4px;
}

.text-live {
  font-size: 15px;
  font-weight: 500;
  color: white;
}

@keyframes pulsate {
  0% {
    opacity: 1;
    transform: scale(0.5);
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

@media screen and (max-width: 1280px) {
  .list-menu-header {
    overflow-x: auto;
  }
}

@media screen and (max-width: 1024px) {
  .main-navigation {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
  }

  .site-header .container {
    justify-content: space-between;
    padding: 10px 15px;
    flex-wrap: wrap;
  }

  .menu-header-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
  }

  .header-logo {
    gap: 6px;
  }

  .custom-logo-link img {
    max-height: 24px !important;
  }

  .fast-link {
    font-size: 12px;
    padding: 5px 8px;
  }

  .header-buttons {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 10px;
    width: 100%;
    justify-content: center;
  }

  .btn-login,
  .btn-register {
    padding: 8px 15px;
    font-size: 14px;
    flex: 1;
    text-align: center;
    display: flex;
    justify-content: center;
    border-radius: 5px;
  }

  .mobile-sidebar {
    width: 85%;
    left: -85%;
    padding: 60px 15px 15px;
  }

  .site-branding {
    position: absolute;
    top: 20px;
    left: 15px;
  }
}

@media screen and (max-width: 480px) {
  .header-buttons {
    flex-direction: row;
  }

  .btn-login,
  .btn-register {
    padding: 8px 10px;
    font-size: 13px;
  }
}
</pre></body></html>