@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");
body {
  background-color: #050a0d !important;
}

* {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

html,
body {
  margin: 0;
  padding: 0;
  font-size: 90%;
}

/* GLOBAL SCROLLBAR */
/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #324A5F #0C1821;
}

/* Chrome / Edge / Safari */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #0C1821;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #324A5F, #1B2A41);
  border-radius: 4px;
  border: 2px solid #0C1821;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #405f7a, #273d5e);
}

::-webkit-scrollbar-corner {
  background: #0C1821;
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100% !important;
}

p {
  color: #CCC9DC;
}

b {
  color: #CCC9DC;
}

h2 {
  color: white !important;
}

h3 {
  color: #CCC9DC !important;
}

h4 {
  color: #CCC9DC !important;
}

h5 {
  color: #CCC9DC !important;
}

h6 {
  color: #CCC9DC !important;
}

.aniSection {
  width: 100%;
  margin-bottom: 100px;
  max-width: 2000px;
}
.aniSection--xxxl {
  width: 80%;
}
.aniSection--xxxxl {
  width: 90%;
}

.aniBtn {
  border-radius: 4px;
  padding-top: 0.25rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
}
.aniBtn:hover {
  cursor: pointer;
  border: 1px white solid;
}
.aniBtn--primary {
  background-color: #1B2A41;
  color: #CCC9DC;
  border-color: #324A5F;
}
.aniBtn--secondary {
  background-color: #324A5F;
  color: white;
}

.aniLink:hover {
  cursor: pointer;
}

.aniCheckbox {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.aniCheckbox label {
  color: #CCC9DC;
}
.aniCheckbox input {
  transform: scale(1.5);
}

.aniInput {
  border-radius: 4px !important;
  padding: 0.5rem 1rem;
  border: 1px solid transparent;
  outline: none;
  transition: all 0.2s ease;
  font-size: 1rem;
  width: 100%;
}
.aniInput::placeholder {
  color: rgba(204, 201, 220, 0.7);
}
.aniInput:focus {
  transform: translateY(-1px);
}
.aniInput--primary {
  background-color: #1B2A41;
  color: #CCC9DC;
  border-color: #324A5F;
}
.aniInput--primary:hover {
  background-color: #223653;
}
.aniInput--primary:focus {
  border-color: #1B2A41;
  box-shadow: 0 0 0 3px rgba(27, 42, 65, 0.25);
}
.aniInput--secondary {
  background-color: #324A5F;
  color: #CCC9DC;
  border-color: #405f7a;
}
.aniInput--secondary:hover {
  background-color: #3b5770;
}
.aniInput--secondary:focus {
  border-color: #CCC9DC;
  box-shadow: 0 0 0 3px rgba(204, 201, 220, 0.15);
}
.aniInput:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.h-100 {
  height: 100% !important;
}

.aniHeader__main {
  width: 100%;
  height: 5rem;
  position: sticky;
  top: 0;
  background-color: #0C1821;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-shadow: 1px 1px 1px #324A5F;
  z-index: 2000;
}
.aniHeader__main h5 {
  padding-top: 0.25rem;
}
.aniHeader__profile {
  width: 10rem;
  height: 3rem;
  background-color: #324A5F;
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  padding: 0.5rem;
  position: relative;
  cursor: pointer;
  user-select: none;
}
.aniHeader__profile b {
  padding-bottom: 0.3rem;
}
.aniHeader__profile img {
  width: 40px;
  height: auto;
  border-radius: 50px;
}
.aniHeader__profile__mobile {
  background-color: #0C1821;
}
.aniHeader__profile--dropdown:hover, .aniHeader__profile--dropdown.is-open {
  background-color: #3b5770;
}
.aniHeader__profile__chevron {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.aniHeader__profile.is-open .aniHeader__profile__chevron {
  transform: rotate(180deg);
}
.aniHeader__profile__menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 11rem;
  background-color: #1B2A41;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  z-index: 2100;
  padding: 0.3rem 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.4rem);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.aniHeader__profile.is-open .aniHeader__profile__menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.aniHeader__profile__menu__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  padding-bottom: 0.6rem;
  color: rgba(204, 201, 220, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.aniHeader__profile__menu__item svg {
  flex-shrink: 0;
  margin-bottom: 0.1rem;
}
.aniHeader__profile__menu__item:hover {
  background-color: rgba(255, 255, 255, 0.07);
  color: white;
}
.aniHeader__profile__menu__item--danger {
  color: rgba(135, 14, 14, 0.85) !important;
}
.aniHeader__profile__menu__item--danger:hover {
  background-color: rgba(135, 14, 14, 0.12);
  color: #e31818 !important;
}
.aniHeader__profile__menu__divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.08);
  margin: 0.3rem 0;
}
.aniHeader__searchbutton {
  padding-top: 0.6rem !important;
  padding-bottom: 0.66rem !important;
  border: 1px solid #324A5F;
}
.aniHeader__left {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  width: 90%;
}
.aniHeader__breadcrumbWrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0.75rem;
}
.aniHeader__breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  min-height: 34px;
  padding: 0.45rem 0.9rem;
  padding-bottom: 0.55rem;
  border-radius: 4px;
  background: linear-gradient(180deg, #1f314c, #1B2A41);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  font-size: 0.9rem;
  line-height: 1;
  gap: 0.15rem;
}
.aniHeader__breadcrumb a {
  color: rgba(204, 201, 220, 0.82);
  text-decoration: none;
  padding-right: 0.5rem;
  padding-bottom: 0.2rem;
  border-radius: calc(4px / 1.5);
  transition: all 0.18s ease;
  display: inline-flex;
  align-items: center;
}
.aniHeader__breadcrumb a:hover {
  color: white;
}
@media (max-width: 576px) {
  .aniHeader__breadcrumb--MobileInvisible {
    display: none;
  }
}
@media (max-width: 576px) {
  .aniHeader__breadcrumb--MobileVisible {
    display: block;
  }
}
.aniHeader__breadcrumb--MobileVisible a {
  text-decoration: none;
  text-decoration-color: #CCC9DC;
  color: #CCC9DC;
  font-weight: bold;
}
.aniHeader__breadcrumb--MobileVisible a:hover {
  cursor: pointer;
}
@media (min-width: 500px) {
  .aniHeader__breadcrumb a:last-child {
    color: white;
    font-weight: 600;
    pointer-events: none;
    cursor: default;
    text-align: center;
    padding: 0.2rem;
    padding-top: 0.1rem;
    padding-bottom: 0.2rem;
  }
}
.aniHeader__link {
  text-decoration: none;
}
.aniHeader__link:hover {
  cursor: pointer;
  font-weight: bold;
  text-decoration: underline;
  text-decoration-color: white;
  color: white;
}
.aniHeader__burger {
  margin-bottom: 0.3rem;
}
.aniHeader__mobileburger {
  display: flex;
  flex-direction: column;
}
.aniHeader__mobileburger__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #1B2A41;
  width: 100%;
  height: 4rem;
  box-shadow: 0px 1px 5px #000000;
}
.aniHeader__mobileburger__content {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.aniHeader__mobileburger__content__divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.08);
  margin: 0.2rem 0;
}
.aniHeader__mobileburger__content__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-bottom: solid 1px #CCC9DC;
  height: 40px;
  padding-top: 0.9rem;
  padding-left: 1rem;
  padding-right: 1rem;
  text-decoration: none;
}
.aniHeader__mobileburger__content__item svg {
  margin-bottom: 0.9rem;
}
.aniHeader__mobileburger__content__item--danger p {
  color: rgba(135, 14, 14, 0.85);
}
.aniHeader__mobileburger__content__item--danger svg {
  color: rgba(135, 14, 14, 0.85);
}
.aniHeader__mobileburger__content__item--danger:hover {
  background-color: rgba(135, 14, 14, 0.1);
}
.aniHeader__mobileburger__content__item--danger:hover p {
  color: #e31818;
}
.aniHeader__mobileburger__content__item--danger:hover svg {
  color: #e31818;
}
.aniHeader__mobile__burgermenu {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  background-color: #0C1821;
  display: none;
  box-shadow: 3px 16px 12px #000000;
}
.aniHeader__mobile__burgermenu:hover {
  cursor: pointer;
}
@media (max-width: 768px) {
  .aniHeader__mobile__burgermenu {
    display: block;
  }
}

.aniStart {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.aniStart .aniTile__wrapper {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, 275px);
  gap: 1rem;
}
.aniStart .aniTile__tile {
  width: 225px;
  height: 275px;
}
.aniStart__section {
  background-color: #0C1821 !important;
  width: 100%;
  height: 600px;
  border-radius: 4px;
  border-top-left-radius: 0;
  padding: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  align-content: start;
}
.aniStart__section__heading {
  background-color: #0C1821 !important;
  width: 200px;
  height: 2.55rem;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aniStart__section__heading p {
  padding: 0 !important;
  margin-bottom: 0.3rem;
  font-weight: bold;
}
.aniStart__header {
  position: relative;
  width: 100%;
  min-height: 120px;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.aniStart__header__herobackground {
  margin-top: 1rem;
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  border-radius: 4px;
}
.aniStart__header__herobackground img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: blur(2px);
  transform: scale(1.08);
}
.aniStart__header__herobackground::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.aniStart__header h2,
.aniStart__header h5 {
  position: relative;
  z-index: 2;
  color: white;
  margin: 0;
}
.aniStart__header h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.aniStart__header h5 {
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.9;
}
.aniStart__topTiles__container {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, 275px);
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
}
.aniStart__top10__table {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1rem;
  padding-bottom: 2rem;
  max-height: 600px;
  overflow-y: auto;
}
.aniStart__top10__table__row {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100px;
  background-color: #324A5F;
  border-radius: 4px;
  flex-shrink: 0;
  overflow: hidden;
  padding: 0 1rem;
}
.aniStart__top10__table__row img {
  position: absolute;
  inset: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  object-fit: cover;
  filter: blur(4px) brightness(0.6);
  z-index: 1;
}
.aniStart__top10__table__row::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
}
.aniStart__top10__table__row h3 {
  position: relative;
  z-index: 3;
  color: white;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}
.aniStart__top10__table__row p {
  position: relative;
  z-index: 3;
  color: white;
  margin: 0;
  font-weight: 600;
}
.aniStart__genres {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  width: 100%;
}
.aniStart__genres__tile {
  min-height: 50px;
  background-color: #324A5F;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 4px;
  transition: transform 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
}
.aniStart__genres__tile:hover {
  transform: translateY(-2px);
  background-color: #3b5770;
}
.aniStart__genres__tile p {
  margin-top: 0.7rem;
}

.aniBrowse__row {
  position: relative;
  width: 100%;
  height: 100px;
  background-color: #324A5F;
  border-radius: 4px;
  overflow: hidden;
}
.aniBrowse__row img {
  position: absolute;
  inset: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  object-fit: cover;
  filter: blur(4px) brightness(0.6);
  z-index: 1;
}
.aniBrowse__row__contentwrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 2;
}
.aniBrowse__wrapper__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.aniBrowse__upper {
  display: inline-flex;
  height: 37px;
  flex-direction: row;
  gap: 1rem;
  align-self: flex-start;
}
.aniBrowse__upper__element {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #1B2A41;
  color: #CCC9DC;
  border-radius: 4px;
  border: #324A5F 1px solid;
  padding: 0 0.8rem;
}
.aniBrowse__upper__element p {
  margin: 0 !important;
  margin-bottom: 0.1rem !important;
}
.aniBrowse__upper__element:hover {
  cursor: pointer;
}
.aniBrowse__upper__element--active {
  border: 1px #CCC9DC solid;
}

.aniAccount__form {
  width: 100%;
  background-color: #0C1821;
  display: flex;
  padding: 1rem;
  border-radius: 4px;
  border: 1px solid #324A5F;
  margin-top: 11%;
}
@media (min-width: 700px) {
  .aniAccount__form {
    width: 50%;
    padding: 4rem;
  }
}
.aniAccount__form__register {
  margin-top: 8% !important;
}
.aniAccount__form__error {
  background-color: rgb(135, 14, 14);
  color: #CCC9DC;
  padding: 0.5rem;
  border-radius: 4px;
}

.aniSavedList__sidebar {
  width: 300px;
  height: 80vh;
  background-color: #1B2A41;
  border-radius: 4px;
  border: 1px solid #324A5F;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .aniSavedList__sidebar {
    width: 100%;
    height: auto;
  }
}
.aniSavedList__sidebar__actionbtns {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.aniSavedList__sidebar__content {
  width: 100%;
  flex: 1;
  min-height: 0;
  padding: 1rem;
  border-top: 1px solid #324A5F;
  display: flex;
  flex-direction: column;
  overflow: auto;
  gap: 0.5rem;
}
.aniSavedList__sidebar__content__item {
  padding: 0.5rem 0.75rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  border-radius: 4px;
  transition: all 0.15s ease;
  background-color: rgba(50, 74, 95, 0.85);
  border: 1px solid transparent;
}
.aniSavedList__sidebar__content__item:nth-child(even) {
  background-color: #2f455b;
}
.aniSavedList__sidebar__content__item:hover {
  transform: translateY(-1px);
  border-color: rgba(164, 202, 255, 0.35);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
.aniSavedList__sidebar__content__item:active {
  transform: translateY(0px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.aniSavedList__sidebar__content__item--active {
  border: 1px solid #CCC9DC;
}
.aniSavedList__sidebar__content__item--delete {
  border: rgb(135, 14, 14) solid 1px !important;
}
.aniSavedList__main {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .aniSavedList__main {
    flex-direction: column;
  }
}
.aniSavedList__mainfield {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 768px) {
  .aniSavedList__mainfield {
    height: auto;
  }
}
.aniSavedList__mainfield h3 {
  grid-column: 1/-1;
  text-align: center;
  align-self: center;
  justify-self: center;
}
.aniSavedList__mainfield__actions {
  width: 40px;
  height: 40px;
  background-color: #1B2A41;
  border-radius: 4px;
  border: 1px solid #324A5F;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  padding: 0.3rem;
}
.aniSavedList__mainfield__actions:hover {
  cursor: pointer;
}
.aniSavedList__listDelete--active {
  border: 3px rgb(135, 14, 14) solid !important;
}
.aniSavedList__listDelete--active:hover {
  background-color: red;
}
.aniSavedList__newList {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  max-width: 90%;
  padding: 1.5rem;
  background-color: #324A5F;
  border-radius: 4px;
  border: 1px solid #1B2A41;
  z-index: 1000;
}
.aniSavedList__newList .closeAddList:hover {
  cursor: pointer;
}
.aniSavedList__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999;
}

.aniTile__link {
  text-decoration: none;
  display: block;
}
.aniTile__tile {
  height: 290px;
  width: 100%;
  border-radius: 4px;
  background-color: #324A5F;
  border: solid 1px #324A5F;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.aniTile__tile img {
  width: 100%;
  display: block;
  transition: transform 0.35s ease;
}
.aniTile__tile p {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  max-height: 34px;
  overflow: hidden;
  padding: 0.5rem;
  margin-bottom: 0;
  color: white;
  z-index: 2;
  background: rgba(15, 11, 53, 0.651);
  backdrop-filter: blur(14px);
  transition: max-height 0.5s ease, background 0.35s ease;
  text-align: center;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.aniTile__tile:hover p {
  max-height: 150px;
  background: rgba(0, 0, 0, 0.55);
}
.aniTile__tile:hover img {
  transform: scale(1.03);
}
.aniTile__tile__addList {
  right: 0;
  background: rgba(0, 0, 0, 0.35);
  position: absolute;
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 0.8rem;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.aniTile__tile:hover .aniTile__tile__addList {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.aniTile__tile__navBtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  cursor: pointer;
}
.aniTile__tile:hover .aniTile__tile__navBtn {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.aniTile__tile__addInterface {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1100;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.aniTile__tile__addInterface select {
  width: 100%;
  padding: 0.6rem 0.9rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: #0C1821;
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 20 20'%3E%3Cpath d='M5.5 7l4.5 5 4.5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  background-size: 14px;
  padding-right: 2rem;
}
.aniTile__tile__addInterface select:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background-color: #10202c;
}
.aniTile__tile__addInterface select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15);
}
.aniTile__tile__addInterface select option {
  background-color: #0C1821;
  color: #fff;
}
.aniTile__wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 225px));
  gap: 1rem;
  width: 100%;
  justify-content: start;
}
@media (max-width: 768px) {
  .aniTile__wrapper {
    grid-template-columns: 1fr;
  }
  .aniTile__tile {
    width: 100%;
  }
}

.aniDetail {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
  /* ---------- Tablet / kleinere Screens ---------- */
  /* ---------- Smartphones ---------- */
}
.aniDetail__banner {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: 4px;
  overflow: hidden;
  background-color: #324A5F;
}
.aniDetail__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.aniDetail__banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.85));
}
.aniDetail__head {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 1.5rem;
  padding: 0 1.5rem;
  margin-top: -120px;
  position: relative;
  z-index: 2;
}
.aniDetail__head__info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
  min-width: 0;
}
.aniDetail__head__title {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}
.aniDetail__head__subtitle {
  margin: 0;
  font-weight: 400;
  opacity: 0.8;
  overflow-wrap: anywhere;
}
.aniDetail__cover {
  flex-shrink: 0;
  width: 200px;
  height: 285px;
  border-radius: 4px;
  overflow: hidden;
  background-color: #324A5F;
  border: 1px solid #324A5F;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.aniDetail__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.aniDetail__genres {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.6rem;
}
.aniDetail__genre {
  background-color: #1B2A41;
  border: 1px solid #324A5F;
  border-radius: 4px;
  padding: 0.25rem 0.8rem;
}
.aniDetail__genre p {
  margin: 0 !important;
  font-size: 0.85rem;
  color: #CCC9DC;
}
.aniDetail__body {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
  width: 100%;
}
.aniDetail__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 280px;
  flex-shrink: 0;
  background-color: #0C1821;
  border-radius: 4px;
  padding: 1.5rem;
  position: sticky;
  top: 5.5rem;
}
.aniDetail__stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #1B2A41;
}
.aniDetail__stat:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.aniDetail__stat__label {
  color: #324A5F;
  font-weight: 600;
  font-size: 0.9rem;
}
.aniDetail__stat__value {
  color: #CCC9DC;
  font-weight: 700;
  text-align: right;
}
.aniDetail__main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}
.aniDetail__section {
  width: 100%;
}
.aniDetail__section__heading {
  background-color: #0C1821;
  width: 200px;
  height: 2.55rem;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aniDetail__section__heading p {
  padding: 0 !important;
  margin-bottom: 0.3rem;
  font-weight: bold;
}
.aniDetail__section__body {
  background-color: #0C1821;
  border-radius: 4px;
  border-top-left-radius: 0;
  padding: 1.5rem;
}
.aniDetail__description p {
  margin: 0;
  line-height: 1.6;
  color: #CCC9DC;
}
.aniDetail__trailer {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  background-color: #1B2A41;
}
.aniDetail__trailer iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.aniDetail__characters {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
@media (max-width: 768px) {
  .aniDetail {
    gap: 1rem;
    margin-top: 1rem;
  }
  .aniDetail__banner {
    height: 200px;
  }
  .aniDetail__head {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 0 1rem;
    margin-top: -90px;
  }
  .aniDetail__head__info {
    align-items: center;
    width: 100%;
  }
  .aniDetail__head__title {
    font-size: 1.6rem;
  }
  .aniDetail__head__subtitle {
    font-size: 0.95rem;
  }
  .aniDetail__cover {
    width: 150px;
    height: 214px;
  }
  .aniDetail__genres {
    justify-content: center;
  }
  .aniDetail__body {
    flex-direction: column;
    gap: 1rem;
  }
  .aniDetail__sidebar {
    width: 100%;
    position: static;
    top: auto;
  }
  .aniDetail__main {
    gap: 1rem;
  }
  .aniDetail__section__body {
    padding: 1rem;
  }
  .aniDetail__characters {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}
@media (max-width: 576px) {
  .aniDetail__banner {
    height: 160px;
  }
  .aniDetail__head {
    margin-top: -70px;
    padding: 0 0.5rem;
  }
  .aniDetail__head__title {
    font-size: 1.35rem;
  }
  .aniDetail__head__subtitle {
    font-size: 0.9rem;
  }
  .aniDetail__cover {
    width: 120px;
    height: 170px;
  }
  .aniDetail__genre {
    padding: 0.2rem 0.6rem;
  }
  .aniDetail__genre p {
    font-size: 0.8rem;
  }
  .aniDetail__stat__label, .aniDetail__stat__value {
    font-size: 0.85rem;
  }
  .aniDetail__characters {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  }
}

.aniBtn--danger {
  background-color: rgb(135, 14, 14);
  color: white;
}
.aniBtn--ghost {
  background-color: transparent;
  color: #CCC9DC;
  border: 1px solid #324A5F;
}

.aniSettings {
  margin: 2rem auto 0;
  max-width: 1200px;
}
.aniSettings__head {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(50, 74, 95, 0.4);
}
.aniSettings__head__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.aniSettings__head__title {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 700;
  color: white;
}
.aniSettings__head__subtitle {
  margin: 0;
  color: #CCC9DC;
  opacity: 0.8;
  font-weight: 500;
}
.aniSettings__body {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  align-items: start;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .aniSettings__body {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.aniSettings__sidebar {
  position: sticky;
  top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media (max-width: 768px) {
  .aniSettings__sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.4rem;
  }
}
.aniSettings__navLink {
  color: #CCC9DC;
  text-decoration: none;
  padding: 0.55rem 0.9rem;
  border-radius: 4px;
  border-left: 3px solid transparent;
  font-weight: 500;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.aniSettings__navLink:hover, .aniSettings__navLink.is-active {
  background-color: #0C1821;
  border-left-color: #324A5F;
  cursor: pointer;
}
@media (max-width: 768px) {
  .aniSettings__navLink {
    border-left: none;
    border-bottom: 3px solid transparent;
  }
  .aniSettings__navLink:hover, .aniSettings__navLink.is-active {
    border-left-color: transparent;
    border-bottom-color: #324A5F;
  }
}
.aniSettings__main {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  min-width: 0;
}
.aniSettings__section {
  background-color: #0C1821;
  border: 1px solid rgba(50, 74, 95, 0.45);
  border-radius: 4px;
  overflow: hidden;
}
.aniSettings__section--danger {
  border-color: rgba(135, 14, 14, 0.6);
}
.aniSettings__section__heading {
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid rgba(50, 74, 95, 0.35);
  background-color: #1B2A41;
}
.aniSettings__section__heading p {
  margin: 0;
  color: #CCC9DC;
  font-weight: 700;
  font-size: 1.15rem;
}
.aniSettings__section__body {
  padding: 1.5rem;
}
@media (max-width: 576px) {
  .aniSettings__section__body {
    padding: 1.25rem 1.1rem;
  }
}
.aniSettings__hint {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: #CCC9DC;
  opacity: 0.7;
}
.aniSettings__actions {
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .aniSettings__head__title {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  .aniSettings {
    margin-top: 1.25rem;
  }
}

.aniField {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.aniField:last-child {
  margin-bottom: 0;
}
.aniField__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #CCC9DC;
  opacity: 0.85;
}

.aniRow {
  display: flex;
  gap: 0.75rem;
  align-items: flex-end;
  flex-wrap: wrap;
}
.aniRow .aniInput {
  flex: 1;
  min-width: 180px;
}
@media (max-width: 576px) {
  .aniRow .aniBtn {
    width: 100%;
  }
}

.aniAvatar {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.aniAvatar__frame {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #324A5F;
  background: linear-gradient(160deg, #1B2A41, #324A5F);
  flex: none;
}
.aniAvatar__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.aniAvatar__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: #CCC9DC;
}
.aniAvatar__meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.aniAvatar__file {
  display: none;
}

.aniThemes {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .aniThemes {
    flex-direction: column;
  }
}

.aniTheme {
  flex: 1;
  min-width: 150px;
  border: 2px solid transparent;
  border-radius: 4px;
  background-color: #1B2A41;
  padding: 0.85rem;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.1s ease;
}
.aniTheme:hover {
  transform: translateY(-2px);
}
.aniTheme.is-selected {
  border-color: #CCC9DC;
}
.aniTheme__swatches {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 0.6rem;
}
.aniTheme__swatch {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.25);
}
.aniTheme__name {
  color: white;
  font-weight: 700;
}
.aniTheme__state {
  font-size: 0.8rem;
  color: #CCC9DC;
  opacity: 0.75;
}

.aniOrder {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.aniOrder__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #1B2A41;
  border: 1px solid #324A5F;
  border-radius: 4px;
  padding: 0.6rem 0.85rem;
  cursor: grab;
}
.aniOrder__item.is-dragging {
  opacity: 0.5;
  cursor: grabbing;
}
.aniOrder__item.is-over {
  border-color: #CCC9DC;
}
.aniOrder__grip {
  color: #CCC9DC;
  opacity: 0.55;
  font-size: 1.1rem;
  line-height: 1;
  user-select: none;
}
.aniOrder__pos {
  font-size: 0.8rem;
  color: #CCC9DC;
  opacity: 0.6;
  min-width: 1.5rem;
  text-align: center;
}
.aniOrder__label {
  flex: 1;
  color: #CCC9DC;
  font-weight: 600;
}
.aniOrder__move {
  display: flex;
  gap: 0.25rem;
}

.aniIconBtn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: none;
  background-color: #324A5F;
  color: white;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1;
}
.aniIconBtn:hover {
  filter: brightness(1.15);
}
.aniIconBtn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.aniDanger {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.aniDanger__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(50, 74, 95, 0.4);
}
.aniDanger__action:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.aniDanger__text strong {
  display: block;
  color: white;
}
.aniDanger__text span {
  font-size: 0.85rem;
  color: #CCC9DC;
  opacity: 0.7;
}
.aniDanger__confirm {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.aniDanger__confirm span {
  color: #CCC9DC;
  font-size: 0.9rem;
}

.aniToast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  background-color: #324A5F;
  color: white;
  padding: 0.7rem 1.4rem;
  border-radius: 4px;
  border: 1px solid #CCC9DC;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.aniToast.is-shown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

[hidden] {
  display: none !important;
}

@keyframes anispin {
  to {
    transform: rotate(360deg);
  }
}
.aniSpinner {
  display: inline-block;
  width: 1em;
  height: 1em;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: white;
  border-radius: 50%;
  animation: anispin 0.6s linear infinite;
  flex: none;
}

.aniBtn.is-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  pointer-events: none;
  opacity: 0.85;
}

.aniTheme.is-loading {
  position: relative;
  pointer-events: none;
}
.aniTheme.is-loading::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  border-radius: inherit;
}
.aniTheme.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 26px;
  height: 26px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: anispin 0.6s linear infinite;
}

.aniAvatar__frame.is-uploading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.aniAvatar__spinner {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 30px;
  height: 30px;
  border: 3px solid rgba(255, 255, 255, 0.35);
  border-top-color: white;
  border-radius: 50%;
  animation: anispin 0.6s linear infinite;
  z-index: 2;
}

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