/* [project]/src/components/layout/Header/Header.module.css [app-client] (css) */
.Header-module__85i50G__header {
  width: var(--width);
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  height: 75px;
  margin: 0 auto;
  display: flex;
}

.Header-module__85i50G__nav {
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  display: flex;
}

.Header-module__85i50G__logo {
  border-radius: 0;
  width: 50px;
  height: 50px;
}

.Header-module__85i50G__list, .Header-module__85i50G__dropdown {
  z-index: 999;
  visibility: hidden;
  background-color: var(--color-surface-dark);
  flex-direction: column;
  gap: 5px;
  width: 100%;
  height: 100%;
  padding: 0 15px 15px;
  display: flex;
  position: absolute;
  left: 0;
}

.Header-module__85i50G__list {
  top: 75px;
}

.Header-module__85i50G__dropdown {
  top: 0;
}

.Header-module__85i50G__list.Header-module__85i50G__active, .Header-module__85i50G__dropdown.Header-module__85i50G__active {
  visibility: visible;
  animation: .2s ease-out Header-module__85i50G__reveal-right;
}

.Header-module__85i50G__item {
  width: 100%;
  list-style-type: none;
}

.Header-module__85i50G__item:not(:last-child) {
  border-bottom: 1px solid var(--color-surface);
}

.Header-module__85i50G__link, .Header-module__85i50G__button {
  text-wrap: nowrap;
  cursor: pointer;
  width: 100%;
  color: var(--color-text);
  background-color: var(--color-surface-dark);
  border-radius: 5px;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
  padding: 15px;
  display: flex;
}

.Header-module__85i50G__button.Header-module__85i50G__active {
  color: var(--color-text-light);
}

.Header-module__85i50G__link:hover, .Header-module__85i50G__button:hover {
  color: var(--color-text-light);
  background-color: var(--color-surface);
  text-decoration: none;
}

.Header-module__85i50G__hamburger {
  width: 43px;
  height: 43px;
  color: var(--color-text);
  background: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.Header-module__85i50G__hamburger:hover {
  color: var(--color-text-light);
  background-color: var(--color-surface);
}

@keyframes Header-module__85i50G__reveal-right {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (min-width: 768px) {
  .Header-module__85i50G__list {
    visibility: visible;
    flex-direction: row;
    width: fit-content;
    height: auto;
    padding: 0;
    position: static;
  }

  .Header-module__85i50G__dropdown {
    border: 1px solid var(--color-surface);
    border-radius: 5px;
    width: max-content;
    height: auto;
    padding: 5px;
    top: calc(100% + 10px);
  }

  .Header-module__85i50G__dropdown.Header-module__85i50G__active {
    animation: .2s ease-out Header-module__85i50G__reveal-up;
  }

  .Header-module__85i50G__dropdown .Header-module__85i50G__item:not(:last-child) {
    border-bottom: 1px solid var(--color-surface);
  }

  .Header-module__85i50G__item {
    position: relative;
  }

  .Header-module__85i50G__item.Header-module__85i50G__back {
    display: none;
  }

  .Header-module__85i50G__list .Header-module__85i50G__item {
    border-bottom: none;
  }

  .Header-module__85i50G__link, .Header-module__85i50G__button {
    background: none;
    margin-bottom: 0;
    padding: 10px;
  }

  .Header-module__85i50G__dropdown .Header-module__85i50G__item:not(:last-child) .Header-module__85i50G__link, .Header-module__85i50G__dropdown .Header-module__85i50G__item:not(:last-child) .Header-module__85i50G__button {
    margin-bottom: 5px;
  }

  .Header-module__85i50G__dropdown .Header-module__85i50G__link:hover, .Header-module__85i50G__dropdown .Header-module__85i50G__button:hover {
    background-color: var(--color-surface);
  }

  .Header-module__85i50G__link:hover, .Header-module__85i50G__button:hover {
    background: none;
  }

  .Header-module__85i50G__hamburger {
    display: none;
  }

  @keyframes Header-module__85i50G__reveal-up {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* [project]/src/components/layout/Main/Main.module.css [app-client] (css) */
.Main-module__0L3xna__main {
  flex-direction: column;
  gap: 150px;
  margin-bottom: 150px;
  display: flex;
}

.Main-module__0L3xna__main.Main-module__0L3xna__margin-top {
  margin-top: 75px;
}

/* [project]/src/components/layout/Footer/Footer.module.css [app-client] (css) */
.Footer-module__hP-FLq__footer {
  width: var(--width);
  border-top: 1px solid var(--color-surface);
  flex-direction: column;
  gap: 30px;
  margin: auto auto 0;
  padding: 30px 0;
  display: flex;
}

.Footer-module__hP-FLq__links {
  text-wrap: nowrap;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  display: grid;
}

.Footer-module__hP-FLq__links ul {
  padding: 0;
}

.Footer-module__hP-FLq__links li {
  list-style-type: none;
}

.Footer-module__hP-FLq__copyright {
  align-items: center;
  column-gap: 10px;
  display: flex;
}

.Footer-module__hP-FLq__image {
  border-radius: 0;
  width: 40px;
  height: 40px;
}

@media (min-width: 768px) {
  .Footer-module__hP-FLq__footer {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* [project]/src/components/Tooltip/Tooltip.module.css [app-client] (css) */
.Tooltip-module__4iOEcW__container {
  display: inline-block;
  position: relative;
}

.Tooltip-module__4iOEcW__tooltip {
  z-index: 999;
  pointer-events: none;
  border: 1px solid;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: max-content;
  min-width: 150px;
  max-width: 300px;
  margin-bottom: 10px;
  padding: 5px 10px;
  display: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.Tooltip-module__4iOEcW__tooltip.Tooltip-module__4iOEcW__visible {
  animation: .2s ease-out Tooltip-module__4iOEcW__reveal-up;
  display: flex;
}

.Tooltip-module__4iOEcW__tooltip:after {
  content: "";
  border-style: solid;
  border-width: 8px 8px 0;
  border-color: var(--tooltip-arrow-border-color);
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes Tooltip-module__4iOEcW__reveal-up {
  0% {
    opacity: 0;
    transform: translateX(-50%)translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%)translateY(0);
  }
}

.Tooltip-module__4iOEcW__text {
  text-align: center;
}

/* [project]/src/app/[locale]/components/Hero/Hero.module.css [app-client] (css) */
.Hero-module__oD_OcW__hero {
  background: linear-gradient(var(--color-surface-dark) 0%, transparent 25%, transparent 75%, var(--color-surface-dark) 100%), url("/images/servers/event/lobby.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 25px;
  width: 100%;
  height: 700px;
  display: flex;
}

.Hero-module__oD_OcW__image {
  width: clamp(var(--min-width), 75%, 900px);
  height: auto;
}

.Hero-module__oD_OcW__discord {
  background-color: var(--color-brand-discord);
}

.Hero-module__oD_OcW__discord:hover {
  background-color: var(--color-brand-discord-dark);
}

/* [project]/src/components/Highlight/Highlight.module.css [app-client] (css) */
.Highlight-module__19keaa__highlight {
  color: var(--color-primary);
}

/* [project]/src/components/Note/Note.module.css [app-client] (css) */
.Note-module__54MoBW__wrapper {
  opacity: 0;
  pointer-events: none;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s, opacity .2s, transform .3s cubic-bezier(.34, 1.56, .64, 1);
  display: grid;
  overflow: hidden;
  transform: translateY(-10px)scale(.95);
}

.Note-module__54MoBW__wrapper.Note-module__54MoBW__show {
  opacity: 1;
  pointer-events: all;
  grid-template-rows: 1fr;
  margin-top: 12px;
  transform: translateY(0)scale(1);
}

.Note-module__54MoBW__inner {
  min-height: 0;
}

.Note-module__54MoBW__note {
  border-radius: 5px;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 8px 12px;
  display: flex;
}

.Note-module__54MoBW__icon {
  flex-shrink: 0;
  margin-top: 3px;
}

.Note-module__54MoBW__content {
  flex: 1;
  font-size: .9em;
  line-height: 1.4;
}

.Note-module__54MoBW__note.Note-module__54MoBW__success {
  color: var(--color-category-success);
  background-color: var(--color-category-success-background);
}

.Note-module__54MoBW__note.Note-module__54MoBW__info {
  color: var(--color-category-info);
  background-color: var(--color-category-info-background);
}

.Note-module__54MoBW__note.Note-module__54MoBW__warning {
  color: var(--color-category-warning);
  background-color: var(--color-category-warning-background);
}

/* [project]/src/app/[locale]/components/Servers/Servers.module.css [app-client] (css) */
.Servers-module___-BGuW__grid {
  grid-template-columns: 1fr;
  gap: 50px 30px;
  display: grid;
}

.Servers-module___-BGuW__cell {
  background-color: var(--color-surface);
  border-radius: 5px;
}

.Servers-module___-BGuW__image-wrapper {
  border-radius: 5px;
  overflow: hidden;
}

.Servers-module___-BGuW__image {
  aspect-ratio: 16 / 9;
  transition: all .2s;
}

.Servers-module___-BGuW__cell:hover .Servers-module___-BGuW__image {
  filter: brightness(75%);
  transform: scale(1.1);
}

.Servers-module___-BGuW__content {
  padding: 15px;
}

@media (min-width: 576px) {
  .Servers-module___-BGuW__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .Servers-module___-BGuW__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*# sourceMappingURL=src_4bf33dcf._.css.map*/