@charset "UTF-8";
* {
  box-sizing: border-box;
}

.top-nav {
  position: relative;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: flex-end;
  background: rgb(10, 10, 10);
  border-bottom: 1px #222 solid;
  z-index: 10;
  padding: 0.5rem;
}
.top-nav .top-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  padding: 1.1rem;
  border-radius: 4px;
  text-decoration: none;
  border: 1px #cfa552 solid;
  background-color: rgba(12, 12, 12, 0.16);
}
.top-nav .top-btn span {
  position: relative;
  top: 0.05rem;
  right: 0.3rem;
  text-decoration: none;
  color: rgba(213, 164, 101, 0.93);
  font-size: 1.2rem;
}
.top-nav .top-btn label {
  text-decoration: none;
  color: rgba(213, 164, 101, 0.93);
  font-family: "Roboto", system-ui;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.02rem;
  text-transform: uppercase;
}
.top-nav .top-btn .logout {
  position: relative;
  top: 0.05rem;
  right: 0 !important;
  text-decoration: none;
  color: rgba(213, 164, 101, 0.93);
  font-size: 1.2rem;
}
.top-nav .top-btn:hover {
  background-color: rgba(230, 175, 103, 0.63);
  cursor: pointer;
}
.top-nav .top-btn:hover label {
  cursor: pointer;
  color: #EEE;
}
.top-nav .top-btn:hover span {
  cursor: pointer;
  color: #EEE;
}
@media (max-width: 600px) {
  .top-nav .top-btn label {
    display: none;
    visibility: hidden;
  }
  .top-nav .top-btn span {
    position: relative;
    top: 0.05rem;
    right: 0;
    text-decoration: none;
    color: rgba(213, 164, 101, 0.93);
    font-size: 1.2rem;
  }
}

.nav-toggle {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle:checked ~ .nav .menu-bar {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 20, 20, 0.9);
  border-bottom: 1px #222 solid;
  border-top: 1px #333 solid;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  margin-top: 1rem;
  pointer-events: auto;
  display: flex;
  width: 100%;
}

.nav-wrap {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0.2rem;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 0;
}
.brand .menu-title {
  font-family: "Roboto", system-ui;
  font-weight: 500;
  font-size: 1rem;
  text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.07rem;
  color: rgb(227, 177, 83);
}
.brand .menu-title span {
  color: #CCC;
  font-weight: 500;
}

.logo {
  display: block;
}

.logo-mobile {
  display: none;
}

.mobile-menu-trigger {
  display: none;
  user-select: none;
  cursor: pointer;
  padding: 1rem 0.6rem;
  border-radius: 8px;
  background: #111;
  border: 1px solid #333;
  color: #EEE;
}

.mobile-menu-trigger:hover {
  filter: brightness(1.1);
}

.mobile-menu-trigger-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02rem;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
  padding-left: 2rem;
}

@media (max-width: 1000px) {
  .social-links-desktop {
    display: none;
  }
  .social-links-mobile {
    display: flex;
    margin-left: auto;
    gap: 0.5rem;
  }
  .social-links-mobile .bi-discord, .social-links-mobile .bi-facebook, .social-links-mobile .bi-youtube, .social-links-mobile .bi-instagram, .social-links-mobile .bi-globe2, .social-links-mobile .bi-mortarboard-fill {
    font-size: 1.2rem;
    color: rgba(230, 175, 103, 0.69);
    border: 2.5px rgba(230, 175, 103, 0.71) solid;
    padding: 0.4rem;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #111;
  }
  .social-links-mobile .bi-discord:hover, .social-links-mobile .bi-facebook:hover, .social-links-mobile .bi-youtube:hover, .social-links-mobile .bi-instagram:hover, .social-links-mobile .bi-globe2:hover, .social-links-mobile .bi-mortarboard-fill:hover {
    color: #e6af67;
    border: 2.5px rgba(230, 175, 103, 0.85) solid;
  }
}
@media (min-width: 1000px) {
  .social-links-mobile {
    display: none;
  }
  .social-links-desktop {
    display: flex;
    margin-left: auto;
    gap: 0.5rem;
  }
  .social-links-desktop .bi-discord, .social-links-desktop .bi-facebook, .social-links-desktop .bi-youtube, .social-links-desktop .bi-instagram, .social-links-desktop .bi-globe2, .social-links-desktop .bi-mortarboard-fill {
    font-size: 1.2rem;
    color: rgba(230, 175, 103, 0.69);
    border: 2.5px rgba(230, 175, 103, 0.71) solid;
    padding: 0.4rem;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #111;
  }
  .social-links-desktop .bi-discord:hover, .social-links-desktop .bi-facebook:hover, .social-links-desktop .bi-youtube:hover, .social-links-desktop .bi-instagram:hover, .social-links-desktop .bi-globe2:hover, .social-links-desktop .bi-mortarboard-fill:hover {
    color: #e6af67;
    border: 2.5px rgba(230, 175, 103, 0.85) solid;
  }
}
.menu-link {
  display: inline-flex;
  width: 100%;
  align-items: center;
  height: 44px;
  padding: 0 0.75rem;
  border-radius: 5px;
  color: #EEE;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 500;
  letter-spacing: 0.3px;
  font-size: 0.95rem;
  white-space: nowrap;
}

.menu-link:hover,
.menu-link:focus {
  background: rgba(46, 46, 46, 0.44);
  outline: none;
}

.important {
  width: auto;
  color: #CCC;
  border: 2.5px rgba(230, 175, 103, 0.71) solid;
  font-weight: 400;
}

.important:hover {
  border: 2.5px rgba(230, 175, 103, 0.85) solid;
  color: #CCC !important;
}

.has-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.has-dropdown > .menu-link::after {
  content: "▾";
  margin-left: 0.35rem;
  font-size: 0.8rem;
  opacity: 0.8;
}

.dropdown,
.dropdown-wide {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 0;
  padding: 0.6rem;
  background: #111;
  border: 1px #222 solid;
  border-radius: 5px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  display: none;
  pointer-events: auto;
  min-width: 220px;
}

.dropdown-wide {
  min-width: 640px;
  display: none;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
}

.dropdown .submenu,
.dropdown-wide .submenu {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.dropdown .submenu a,
.dropdown-wide .submenu a {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 0.4rem 0.6rem;
  border-radius: 5px;
  color: #EEE;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: normal;
  font-size: 0.9rem;
  letter-spacing: 0.02rem;
}

.dropdown .submenu a:hover,
.dropdown-wide .submenu a:hover,
.dropdown .submenu a:focus,
.dropdown-wide .submenu a:focus {
  background: rgba(230, 175, 103, 0.51);
  outline: none;
}

@media (hover: hover) {
  .has-dropdown:hover > .dropdown,
  .has-dropdown:hover > .dropdown-wide {
    display: flex;
  }
  .has-dropdown > .dropdown:hover,
  .has-dropdown > .dropdown-wide:hover {
    display: flex;
  }
}
.has-dropdown:focus-within > .dropdown,
.has-dropdown:focus-within > .dropdown-wide {
  display: flex;
}

.has-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}

.dropdown-title {
  margin: 0.25rem 0 0.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: bold;
  font-size: 0.8rem;
  letter-spacing: 0.02rem;
  color: #AAA;
  text-transform: uppercase;
}

.dropdown-col {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
  flex: 1 1 0;
}

.top-rank {
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid #333;
  border-radius: 5px;
  padding: 0.6rem;
  margin-bottom: 0.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: bold;
  font-size: 0.8rem;
  letter-spacing: 0.02rem;
  color: #EEE;
}

.top-rank-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: normal;
  font-size: 0.8rem;
  letter-spacing: 0.02rem;
}

.top-rank-icon {
  width: 30px;
  height: 30px;
  display: block;
}

.top-rank-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.top-rank-avatar {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid #333;
  background: #000;
}

.top-rank-name {
  color: #EEE;
}

.only-mobile {
  display: none;
}

img {
  max-width: 100%;
  height: auto;
}

.nav,
.nav-wrap,
.menu-bar {
  overflow: visible;
}

@media (max-width: 1000px) {
  .logo-desktop {
    display: none;
  }
  .logo-mobile {
    display: block;
  }
  .mobile-menu-trigger {
    display: inline-flex;
  }
  .brand {
    order: 1;
  }
  .mobile-menu-trigger {
    order: 0;
  }
  .menu-bar {
    position: fixed;
    left: 0;
    right: 0;
    top: 136px;
    background: rgba(20, 20, 20, 0.9);
    border-top: 1px solid #333;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s 0.2s, max-height 0.2s ease;
  }
  .nav-toggle:checked ~ .nav .menu-bar {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    z-index: 1000;
    max-height: 90vh;
    overflow: auto;
    transform: translateY(0);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s 0s, max-height 0.2s ease;
  }
  .menu-link {
    height: 44px;
    padding: 0 0.9rem;
  }
  .has-dropdown > .dropdown,
  .has-dropdown > .dropdown-wide {
    position: static;
    display: none;
    margin: 0.25rem 0 0.5rem;
    box-shadow: none;
    border-radius: 10px;
    width: 100%;
  }
  .has-dropdown:focus-within > .dropdown,
  .has-dropdown:focus-within > .dropdown-wide {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .dropdown-wide {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 1000;
  }
  .only-mobile {
    display: list-item;
  }
}

/*# sourceMappingURL=menu.css.map */
