* {
  margin: 0;

  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

/* Default state: hide menu */
.mobile-menu {
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  position: relative;
  width: 100%;
  z-index: 30;
}

/* Show mobile menu when active */
.mobile-menu.active {
  display: flex;
}

.nav-fixed .nav-logo {
  display: block !important;
}

/* Custom breakpoint for 991px */
@media (max-width: 991px) {
  #nav-menu {
    display: none !important;
  }

  #menu-toggle {
    display: flex !important;
    cursor: pointer;
  }

  .menu-wrapper {
    padding-bottom: 0;
  }
}

@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }

  .nav-logo {
    margin-right: auto !important;
    margin-bottom: 0 !important;
  }

}

@media (min-width: 768px) and (max-width: 991px) {
  .menu-wrapper {
    padding-bottom: 0 !important;
  }
}

#menu-toggle.open span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

#menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

#menu-toggle.open span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

#menu-toggle span {
  transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 16px !important;
}

.lrm .swiper-button-next,
.lrm .swiper-button-prev {
  top: var(--swiper-navigation-top-offset, 60%) !important;
}

#videoModal {
  transition: opacity 0.3s ease;
}

.playerSwiper .swiper-slide {
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.playerSwiper .swiper-slide-active {
  transform: scale(1.05);
  opacity: 1;
}

.teamsSwiper {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}