:root {
  --bs-body-bg-2: #070707 ;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bs-body-bg);
  overflow-x: hidden;
}
@media (max-width: 768px) {
  body {
    padding: 6px;
  }
}

.home-card {
  width: 420px;
}
@media (max-width: 767px) {
  .home-card {
    width: 100%;
  }
}

.base-content {
  position: relative;
  overflow-y: auto;
  max-height: calc(100dvh - 32px);
  overflow-x: hidden;
  min-height: calc(100dvh - 32px);
  grid-template-rows: 90px auto;
  display: grid;
  border: none !important;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  scroll-snap-stop: always;
}
.base-content::-webkit-scrollbar {
  display: none;
}
.base-content:after {
  z-index: -1;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: linear-gradient(183deg, rgba(0, 0, 0, 0) 0%, var(--bs-body-bg) 100%), linear-gradient(7deg, rgba(var(--bs-body-rgb), 0.5) 0%, rgba(0, 0, 0, 0) 100%), var(--bg-url) center/cover no-repeat;
  opacity: var(--bg-opacity, 0.5);
  filter: blur(var(--bg-blur, 7px));
}
@media (max-width: 767px) {
  .base-content {
    min-height: calc(100dvh - 16px);
  }
}
.base-wrapper {
  position: relative;
  border: none !important;
}
.base-wrapper #app {
  position: relative;
  overflow: hidden;
  max-height: 100%;
  padding-top: 32px;
  padding-bottom: 64px;
}
.base-wrapper header {
  position: relative;
  margin-bottom: 64px;
}
.base-wrapper header nav {
  position: sticky;
  padding: 16px;
  z-index: 9;
  width: 100% !important;
  top: 17px;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
}
@media (max-width: 767px) {
  .base-wrapper header nav {
    width: 100% !important;
  }
}
.base-wrapper header nav .navbar-content {
  border-radius: 500px;
  background: rgba(var(--bs-body-bg-rgb), 0.2);
  border: solid 1px rgba(var(--bs-white-rgb), 0.2);
  box-shadow: 0 0 40px rgba(var(--bs-primary-rgb), 0.4), inset 0 1px 0 rgba(var(--bs-white-rgb), 0.2);
  backdrop-filter: blur(10px);
}
@media (max-width: 767px) {
  .base-wrapper header nav .navbar-content {
    border-radius: 16px;
  }
}
.base-wrapper header nav .navbar-brand img {
  height: 32px;
}
.base-wrapper header nav .nav-link {
  position: relative;
}
.base-wrapper header nav .nav-link::before {
  content: "";
  position: absolute;
  bottom: -16px;
  right: 0;
  width: 0;
  height: 64px;
  background: radial-gradient(49.93% 24.26% at 50% 100%, rgba(var(--bs-tertiary-rgb), 0.32) 0, rgba(136, 180, 245, 0) 100%);
}
.base-wrapper header nav .nav-link.active::before {
  width: 100%;
}
@media (max-width: 767px) {
  .base-wrapper header nav .nav-link::before {
    display: none;
  }
}
.base-wrapper footer {
  position: fixed;
  z-index: 9;
  right: 23px;
  bottom: 16px;
  padding: 8px 32px;
  border-top-left-radius: 16px;
  background-color: var(--bs-body-bg);
}
.base-wrapper footer a {
  display: grid;
  place-items: center;
}
@media (max-width: 768px) {
  .base-wrapper footer {
    right: 5px;
    bottom: 10px;
  }
}
.base-wrapper footer .corner-top {
  position: absolute;
  content: "";
  width: 32px;
  height: 32px;
  background-color: var(--bs-body-bg);
  right: 0;
  top: 0;
  transform: translate(60%, -40%);
  border-radius: 50%;
}
.base-wrapper footer .corner-top::after {
  position: absolute;
  content: "";
  width: 32px;
  height: 32px;
  background: transparent;
  left: -1px;
  top: 0;
  transform: translate(-60%, -60%);
  border-bottom-right-radius: 50%;
}
.base-wrapper footer .corner-bottom {
  position: absolute;
  content: "";
  width: 32px;
  height: 32px;
  background-color: var(--bs-body-bg);
  left: 0;
  bottom: 0;
  transform: translate(-34%, 60%);
  border-radius: 50%;
}
.base-wrapper footer .corner-bottom::after {
  position: absolute;
  content: "";
  width: 32px;
  height: 32px;
  background: transparent;
  left: 0;
  top: 0;
  transform: translate(-65%, -59%);
  border-bottom-right-radius: 50%;
}

#app main h1 {
  margin-bottom: 32px;
}
#app main > *:first-child > * {
  margin: 64px 0;
}
@media (max-width: 767px) {
  #app main > *:first-child > * {
    margin: 32px 0;
  }
}

.discord {
  height: auto;
  min-height: 300px;
}

.text-xs {
  font-size: 12px;
}
.text-sm {
  font-size: 14px;
}
.text-white {
  color: var(--bs-white) !important;
}

[data-skin-url] {
  cursor: grab;
}

.social {
  color: #ffffff !important;
}

.gradient-circle {
  pointer-events: none;
  z-index: 1;
  position: absolute;
  display: block;
  width: 200px;
  height: 200px;
  background: var(--gradient-clair, linear-gradient(180deg, var(--bs-tertiary) 0%, var(--bs-tertiary) 100%));
  filter: blur(175px);
  opacity: 0.3;
}
.gradient-circle.top {
  top: 0;
  right: 0;
}
.gradient-circle.bottom {
  bottom: 0;
}

/* Width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
/* Handle */
::-webkit-scrollbar-thumb {
  background: #ebebeb;
  -webkit-transition: background 0.123s linear;
  transition: background 0.123s linear;
  border-radius: 12px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(235, 235, 235, 0.95);
}

/* Launcher Button Styling */
a.btn-launcher,
button.btn-launcher {
  box-sizing: border-box !important;
  border-radius: 500px !important;
  background: rgba(26, 26, 26, 0.7) !important;
  border: solid 1px rgba(var(--bs-white-rgb), 0.15) !important;
  box-shadow: 0 0 40px rgba(var(--bs-primary-rgb), 0.25), inset 0 1px 0 rgba(var(--bs-white-rgb), 0.1) !important;
  transition: all 0.3s ease !important;
  color: #fff !important;
  padding: 12px 40px !important;
  backdrop-filter: blur(10px) !important;
}

a.btn-launcher:hover,
button.btn-launcher:hover {
  border-color: rgba(var(--bs-white-rgb), 0.25) !important;
  box-shadow: 0 0 60px rgba(var(--bs-primary-rgb), 0.6), inset 0 1px 0 rgba(var(--bs-white-rgb), 0.15) !important;
  transform: translateY(-2px) !important;
  background: #003366 !important;
  color: #fff !important;
}

a.btn-launcher:active,
a.btn-launcher.active,
button.btn-launcher:active,
button.btn-launcher.active {
  transform: translateY(0) !important;
  color: #fff !important;
}

/* Center launcher content on pages */
main > div > div.text-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

main a.btn-primary,
main button.btn-primary {
  box-sizing: border-box !important;
  border-radius: 500px !important;
  background: rgba(26, 26, 26, 0.7) !important;
  border: solid 1px rgba(var(--bs-white-rgb), 0.15) !important;
  box-shadow: 0 0 40px rgba(var(--bs-primary-rgb), 0.25), inset 0 1px 0 rgba(var(--bs-white-rgb), 0.1) !important;
  transition: all 0.3s ease !important;
  color: #fff !important;
  padding: 12px 40px !important;
  backdrop-filter: blur(10px) !important;
}

main a.btn-primary:hover,
main button.btn-primary:hover {
  border-color: rgba(var(--bs-white-rgb), 0.25) !important;
  box-shadow: 0 0 60px rgba(var(--bs-primary-rgb), 0.6), inset 0 1px 0 rgba(var(--bs-white-rgb), 0.15) !important;
  transform: translateY(-2px) !important;
  background: rgba(0, 51, 102, 0.8) !important;
  color: #fff !important;
}

/* FIX PLUGINS FRONT */
#wiki_category_page .card-body {
  overflow: hidden;
}
#wiki_category_page .card-body img[width="17"][height="17"] {
  -o-object-fit: contain;
     object-fit: contain;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
}

/* Home Page Sections - Scroll Snap */
.home-section {
  scroll-snap-align: start;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#hero-section {
  padding-top: 0;
  padding-bottom: 100px;
}

#hero-section .container-fluid {
  position: relative;
  height: 100%;
  width: 100%;
}

#howto-section {
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
}

.step-card {
  background: rgba(var(--bs-body-bg-rgb), 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(var(--bs-white-rgb), 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.step-card h4 {
  white-space: nowrap;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(var(--bs-primary-rgb), 0.3);
  border-color: rgba(var(--bs-white-rgb), 0.2);
}

.step-number {
  width: 50px;
  height: 50px;
  background: rgba(var(--bs-primary-rgb), 0.2);
  border: 2px solid var(--bs-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--bs-primary);
  margin-bottom: 1rem;
}

.scroll-indicator {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 100;
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-indicator.hidden {
  opacity: 0;
  visibility: hidden;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

.edition-badge {
  background: rgba(var(--bs-primary-rgb), 0.2);
  border: 1px solid var(--bs-primary);
  padding: 0.5rem 1.5rem;
  border-radius: 500px;
  font-weight: 600;
  color: var(--bs-primary);
}

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