body {
  background: #0c0c0c;
  background-image: linear-gradient(rgba(12, 12, 12, 0.75), rgba(12, 12, 12, 0.75)), url("/content/backgrounds/shades-of-the-abyss.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

nav.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #1a1a1a;
  padding: 0px 32px;
  height: 50px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

ul.navbar-unordered-list {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

ul.navbar-unordered-list > li {
  background-color: #222222;
  color: #fff;
  border-radius: 2px;
  cursor: pointer;
  text-align: center;
}

ul.navbar-unordered-list > li.latest-announcement {
  overflow: hidden;
  height: 36px;
  width: clamp(30px, 100%, 2000px);
  align-items: center;
  display: flex;
}

ul.navbar-unordered-list > li.latest-announcement > a {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  flex-shrink: 0;
  padding: 0 12px;
  white-space: nowrap;
  transform: translateX(100%);
  animation: scroll-left 12s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(250%);
  }
  100% {
    transform: translateX(-100%);
  }
}
ul.navbar-unordered-list > li:hover {
  background-color: #444444;
}

ul.navbar-unordered-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 12px;
  white-space: nowrap;
  color: #fff;
  text-decoration: none;
}

ul.navbar-unordered-list > li > a.hamburger-btn {
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 36px;
  padding: 0;
  font-size: 24;
  line-height: 1;
  text-decoration: none;
}

ul.navbar-unordered-list > li > a:hover {
  color: #c154c1;
}

ul.navbar-unordered-list > li:has(.icon-pfp) {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

ul.navbar-unordered-list > li > span.icon-pfp {
  display: block;
  background: url("/content/generic/icon-pfp.webp");
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

section.sidebar {
  top: 50px;
  width: 240px;
  height: calc(100svh - 50px);
  position: fixed;
  background-color: #1a1a1a;
  overflow-y: auto;
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.2s ease;
}

section.sidebar.open {
  transform: translateX(0);
}

.sidebar-backdrop {
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.sidebar-backdrop.visible {
  opacity: 1;
  pointer-events: auto;
}

ul.sidebar-unordered-list > li {
  display: inline-block;
  background-color: #222222;
  border-radius: 2px;
  width: 100%;
}

ul.sidebar-unordered-list > li.breakline {
  display: inline-block;
  background-color: #222222;
  border-radius: 2px;
  width: 100%;
  height: 0px;
}

ul.sidebar-unordered-list > li.hoverable:hover {
  background-color: #444444;
  cursor: pointer;
}

ul.sidebar-unordered-list > li > a {
  display: block;
  color: #fff;
  padding-left: 32px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  text-decoration: none;
}

ul.sidebar-unordered-list > li > p {
  display: block;
  color: #fff;
  padding-left: 32px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  text-decoration: none;
}

ul.sidebar-unordered-list > li > a:hover {
  color: #c154c1;
}

section.page-content {
  min-height: calc(100svh - 150px);
}

footer {
  min-height: 100px;
  background: #1a1a1a;
  color: #fff;
  text-align: center;
  font-weight: lighter;
  font-size: small;
}

footer > p {
  padding-top: 16px;
}

footer > ul > li {
  display: inline-block;
  margin-top: 8px;
  background: #222222;
  width: auto;
}

footer > ul > li:hover {
  background: #444444;
}

footer > ul > li > a {
  color: #fff;
}

footer > ul > li > a:hover {
  color: #c154c1;
}

div.pagination {
  display: flex;
  width: 100%;
  gap: 8px;
  background: #1a1a1a;
}

div.pagination > button {
  flex: 1;
  background: #222222;
  color: #fff;
  cursor: pointer;
}

div.pagination > button:hover {
  flex: 1;
  background: #444444;
  color: #c154c1;
}

.highlight {
  font-weight: bolder;
}

.hidden {
  display: none;
}

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