@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root[data-theme=light] {
  --white: #0F0F0F;
  --black: #ECECEC;
  --shadow: #C1BDBD;
}

:root[data-theme=dark] {
  --white: #FAFAFA;
  --black: #0F0F0F;
  --shadow: #4F4F4F;
}

:root[data-theme=oled] {
  --white: #FAFAFA;
  --black: #000000;
  --shadow: #404040;
}

::-webkit-scrollbar {
  width: 1rem;
}

::-webkit-scrollbar-thumb {
  background: var(--white);
}

.white {
  color: var(--white);
}

.black {
  color: var(--black);
}

.gray {
  color: #4F4F4F;
}

.pacific {
  color: #118AB2;
}

.easy {
  color: #06D6A0;
}

.normal {
  color: #FFD166;
}

.medium {
  color: #F48C06;
}

.harsh {
  color: #FB5607;
}

.harsher {
  color: #D00000;
}

.insane {
  color: #7F2982;
}

.atrocious {
  color: #4F0D51;
}

.extreme {
  color: #FF006E;
}

.fatal {
  color: #80FFDB;
}

select,
::picker(select) {
  transition: all 0.4s;
  appearance: base-select; /* включает кастом */
}

select {
  transition: all 0.4s;
  font-size: 0.8rem;
}

select:open {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  background: var(--black);
}

::search-text {
  background: var(--white);
  padding: 2px 4px;
  border-radius: 1.5rem;
  font-weight: 600;
}

/* Анимация появления */
::search-text {
  animation: highlight 0.3s ease-in-out;
}

@keyframes highlight {
  0% {
    background: transparent;
    transform: scale(0.95);
  }
  50% {
    background: var(--white);
    transform: scale(1.02);
  }
  100% {
    background: var(--white);
  }
}
::search-text {
  transition: all 0.2s ease;
  font-size: 1.1em;
  background: var(--white);
  color: var(--black);
}

/* Hover при фокусе поиска */
::search-text:hover,
::search-text:focus-within {
  background: var(--white);
  color: var(--black);
}

::picker(select) {
  transition: all 0.4s;
  border: none;
  border-radius: 0.75rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background: var(--black);
  color: var(--white);
  box-shadow: none;
  background: linear-gradient(190deg, var(--white) 0%, var(--black) 20%);
  border-left: 2px solid #4F4F4F;
  border-bottom: 2px solid #4F4F4F;
  border-bottom: none;
}

select::picker-icon {
  transition: all 0.4s;
  content: "▼";
  right: 1;
  color: var(--white);
  transition: transform 0.2s;
}

option {
  font-size: 0.8rem;
  padding: 0.25rem 0.25rem 0.25rem 1rem;
  color: var(--white) !important;
}

.progressbar {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 0;
  width: 100%;
}

.progressbar label {
  font-size: 0.75rem;
}

progress {
  transition: all 0.25s;
  transform: translateY(0rem);
  width: 100%;
  border-radius: 1rem;
  height: 1rem;
  margin: 0;
  margin-top: 0.5rem;
  padding: 0;
  overflow: hidden;
  border: none;
}

.progressbarText {
  display: block;
  z-index: 100;
  position: absolute;
  font-size: 1rem;
  text-align: center;
  font-weight: 700;
  color: var(--white);
  width: 100%;
  height: 100%;
}

progress:hover {
  transition: all 0.25s;
  transform: translateY(-0.15rem);
}

progress::-webkit-progress-bar {
  padding: 0;
  margin: 0;
  background: linear-gradient(182deg, var(--white) 0%, var(--black) 35%);
  border-left: 2px solid #4F4F4F;
  border-bottom: 2px solid #4F4F4F;
}

progress::-webkit-progress-value {
  position: absolute;
  padding: 0;
  margin: 0;
  left: 0;
  background: linear-gradient(182deg, var(--black) 0%, var(--white) 35%);
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 0;
  border-bottom-left-radius: 1.5rem;
  border-bottom-right-radius: 0;
}

select:open::picker-icon {
  transition: all 0.4s;
  transform: rotate(180deg);
  color: var(--white);
}

option:checked {
  transition: all 0.4s;
  background: linear-gradient(90deg, rgba(127, 41, 130, 0.2509803922) 0%, rgba(255, 0, 110, 0.2509803922) 100%);
  color: var(--white);
}

option::checkmark {
  position: absolute;
  color: var(--white);
  transition: all 0.4s;
  content: "✓";
  right: 1rem;
}

@media (max-width: 1200px) {
  select:open {
    border-bottom: none;
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  ::picker(select) {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    background: linear-gradient(-100deg, var(--white) 0%, var(--black) 20%);
    border-left: 2px solid #4F4F4F;
    border-bottom: 2px solid #4F4F4F;
  }
}
.scroll-top {
  transition: all 0.25s;
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: none;
  font-size: 2rem;
  font-size: 700;
  opacity: 0;
  visibility: hidden;
  transform: translateY(2rem);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(-100deg, var(--white) 0%, var(--black) 20%);
  border-left: 2px solid #4F4F4F;
  border-bottom: 2px solid #4F4F4F;
  z-index: 1000;
  color: var(--white);
}

.scroll-top:hover {
  transition: all 0.25s;
  transform: translateY(-0.25rem) !important;
}

/* Показать кнопку */
.scroll-top.show {
  transition: all 0.25s;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.circle {
  user-select: none;
  width: 25px;
  height: 25px;
  background-color: var(--white);
  color: transparent;
  border-radius: 50%;
}

.white .circle {
  background-color: var(--white);
}

.black .circle {
  background-color: var(--black);
}

.gray .circle {
  background-color: #4F4F4F;
}

.pacific .circle {
  background-color: #118AB2;
}

.easy .circle {
  background-color: #06D6A0;
}

.normal .circle {
  background-color: #FFD166;
}

.medium .circle {
  background-color: #F48C06;
}

.harsh .circle {
  background-color: #FB5607;
}

.harsher .circle {
  background-color: #D00000;
}

.insane .circle {
  background-color: #7F2982;
}

.atrocious .circle {
  background-color: #4F0D51;
}

.extreme .circle {
  background-color: #FF006E;
}

.fatal .circle {
  background-color: #80FFDB;
}

.white .line {
  background-color: var(--white);
}

.black .line {
  background-color: var(--black);
}

.gray .line {
  background-color: #4F4F4F;
}

.pacific .line {
  background-color: #118AB2;
}

.easy .line {
  background-color: #06D6A0;
}

.normal .line {
  background-color: #FFD166;
}

.medium .line {
  background-color: #F48C06;
}

.harsh .line {
  background-color: #FB5607;
}

.harsher .line {
  background-color: #D00000;
}

.insane .line {
  background-color: #7F2982;
}

.atrocious .line {
  background-color: #4F0D51;
}

.extreme .line {
  background-color: #FF006E;
}

.fatal .line {
  background-color: #80FFDB;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  cursor: default;
}

body, ol, ul {
  transition: all 0.25s;
  background-color: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0rem;
  width: 100%;
  overflow-x: hidden;
}

body {
  padding-bottom: 4rem;
}

ol, ul {
  background: none;
  overflow-y: hidden;
}

.card {
  position: relative;
  opacity: 0;
  transition: all 0.25s;
  transform: translateY(0rem);
  margin: 0 auto;
  width: 75%;
  border-radius: 1.5rem;
  min-height: 100px;
  height: 175px;
  max-height: 400px;
  padding: 1rem 2rem 1rem 5rem;
  color: var(--white);
  overflow: hidden;
  background: linear-gradient(188deg, var(--white) 0%, var(--black) 35%);
  border-left: 2px solid #4F4F4F;
  border-bottom: 2px solid #4F4F4F;
}

.card__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  width: 100%;
  height: 100%;
  gap: 1rem;
}

.card:nth-child(2) {
  background: linear-gradient(188deg, #662E9B 0%, var(--black) 35%);
  border-left: 4px solid #662E9B;
  border-bottom: 4px solid #4F0D51;
}

.card:nth-child(3) {
  background: linear-gradient(188deg, #B9F2FF 0%, var(--black) 35%);
  border-left: 4px solid #B9F2FF;
  border-bottom: 4px solid #80FFDB;
}

.card:nth-child(4) {
  background: linear-gradient(188deg, #ffd60a 0%, var(--black) 35%);
  border-left: 4px solid #ffd60a;
  border-bottom: 4px solid #ffc300;
}

.card:hover {
  transition: all 0.25s;
  transform: translateY(-0.15rem);
}

#fast li:nth-child(2) {
  font-weight: 800;
  color: #662E9B;
}

#fast li:nth-child(3) {
  font-weight: 700;
  color: #80FFDB;
}

#fast li:nth-child(4) {
  font-weight: 700;
  color: #ffd60a;
}

.trackName {
  font-size: 2rem;
}

h2 {
  font-size: 1rem;
}

.authorName {
  margin-left: 0.1rem;
  font-size: 1.25rem;
}

.detailedMusicMain {
  display: flex;
  flex-direction: row-reverse;
  justify-content: start;
  align-items: start;
  gap: 2rem;
  width: 90%;
  padding: 1rem;
  margin-top: 3rem;
}

.informationBlock {
  user-select: none;
  width: 20%;
}

.levels {
  transition: all 0.25s;
  width: 100%;
  background: linear-gradient(215deg, var(--white) 0%, var(--black) 25%);
  border-left: 2px solid #4F4F4F;
  border-bottom: 2px solid #4F4F4F;
  border-radius: 1.5rem;
  transform: translateY(0rem);
}

#repeatingsTotal {
  font-size: 1rem;
  margin-top: 1rem;
}

.search {
  margin-top: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 0.75rem;
}

#searchMenu {
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  width: 100%;
  min-height: 120px;
  height: 120px;
  overflow-y: auto;
  overflow-x: hidden;
  background: linear-gradient(205deg, var(--white) 0%, var(--black) 35%);
  border-left: 2px solid #4F4F4F;
  border-bottom: 2px solid #4F4F4F;
  border-radius: 1.5rem;
  transform: translateY(0rem);
  list-style: none;
  list-style-type: none;
}

#searchMenu::-webkit-scrollbar {
  width: 0.5rem;
}

#searchMenu::-webkit-scrollbar-thumb {
  background: var(--black);
}

#searchMenu li, #searchMenu p {
  padding: 1rem 1rem 2rem 1rem;
  transition: all 0.25s;
  background: transparent;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--white);
  text-align: left;
  width: 100%;
  min-height: 2rem;
  height: 2rem;
}

#searchMenu li:hover {
  transition: all 0.25s;
  background: linear-gradient(90deg, #4F4F4F 0%, transparent 100%);
}

#searchInput {
  transition: all 0.25s;
  width: 100%;
  background: linear-gradient(190deg, var(--white) 0%, var(--black) 35%);
  border-left: 2px solid #4F4F4F;
  border-bottom: 2px solid #4F4F4F;
  border-radius: 1.5rem;
  transform: translateY(0rem);
  padding: 0.5rem 1rem 0.5rem 1rem;
  font-weight: 700;
  color: var(--white);
  text-align: left;
}

#searchInput:hover,
#searchButton:hover,
#searchMenu:hover {
  transition: all 0.25s;
  transform: translateY(-0.15rem);
}

::-webkit-input-placeholder:hover {
  background: linear-gradient(235deg, var(--white) 0%, var(--black) 35%);
  border-left: 2px solid #4F4F4F;
  border-bottom: 2px solid #4F4F4F;
}

#searchInput:focus,
#searchInput::placeholder:focus,
t::-webkit-input-placeholder:focus {
  background: linear-gradient(235deg, var(--white) 0%, var(--black) 35%);
  border-left: 2px solid #4F4F4F;
  border-bottom: 2px solid #4F4F4F;
}

input::placeholder input::-webkit-input-placeholder {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--white);
  text-align: left;
}

.informations, .options {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 0;
}

.years {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.levels:hover {
  transition: all 0.25s;
  transform: translateY(-0.15rem);
}

.levels-img {
  width: 100%;
  height: 100%;
}

li, p, h1, h2, a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}

img {
  width: 35px;
  height: 35px;
  padding: 0;
  margin: 0;
}

h5 {
  text-transform: uppercase;
  font-style: italic;
  font-weight: 700;
  font-size: 3rem;
  text-align: center;
  margin-bottom: -1.5rem;
}

.navigation {
  user-select: none;
  position: fixed;
  top: 0;
  background-color: var(--black);
  z-index: 100;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  min-height: 70px;
  height: auto;
  gap: 0;
  margin: 0;
  padding: 0.5rem;
  box-shadow: 0 2px 500px var(--shadow);
}

#logotype {
  transition: all 0.25s;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 15%;
  height: 65px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

#logotype img {
  rotate: 0deg;
  width: 60%;
  height: 60%;
  animation: spinStep 1s 3s steps(4) infinite;
}

#logotype img:hover {
  transition: all 3s;
  animation: none;
}

@keyframes spinStep {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.navigation__links {
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  gap: 1rem;
}

.navigation__controls {
  width: 25%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.navigation__logo {
  width: 100%;
  height: 100%;
}

#prjctnkLogotype {
  margin-top: 10vw;
  width: 40%;
}

.burger {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0.5rem !important;
  background: none !important;
  border: none !important;
  width: 2rem !important;
  height: 30px !important;
  z-index: 10000 !important;
}

.burger-line {
  transition: all 0.3s ease !important;
  width: 100% !important;
  height: 0.15rem !important;
  background: var(--white) !important;
  border-radius: 2rem !important;
  transition: all 0.3s ease !important;
}

.burger-line:nth-child(1) {
  margin-top: 0.35rem !important;
}

.burger.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(0.25rem, 0.6rem) !important;
}

.burger.active .burger-line:nth-child(2) {
  opacity: 0 !important;
}

.burger.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(0.25rem, -0.6rem) !important;
}

.fresh {
  position: absolute;
  transform: rotate(15deg);
  width: 150px;
  height: 50px;
  display: block;
  margin: 0 auto;
  gap: 0;
  top: 1.55rem;
  right: 1rem;
  z-index: -1;
  background: var(--black);
  border-radius: 1rem;
  text-align: center !important;
  background: var(--black);
  border-left: 2px solid #4F4F4F;
  border-bottom: 2px solid #4F4F4F;
  padding: 1rem;
}

.freshTitle {
  display: block;
  margin: 0 auto;
  background: linear-gradient(90deg, #FF006E 0%, #80FFDB 75%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--black);
  font-weight: 900;
  font-size: 2rem;
}

@media (max-width: 1000px) {
  .fresh {
    width: 100px;
    height: 33px;
    border-radius: 0.75rem;
    padding: 0.5rem;
  }
  .freshTitle {
    font-size: 1.5rem;
  }
}
@media (max-width: 500px) {
  .fresh {
    width: 80px;
    height: 25px;
    border-radius: 0.75rem;
    top: 1rem;
    right: 0.5rem;
    padding: 0.25rem;
  }
  .freshTitle {
    font-size: 1rem;
  }
}
.nav {
  position: fixed;
  top: 82px;
  right: 0;
  background: var(--mobileHeader);
  backdrop-filter: blur(1rem);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 65vw !important;
  height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 2rem;
  gap: 2rem;
}

.nav.active {
  transform: translateX(0);
}

.nav-link {
  transition: all 0.25s;
  transform: translateY(0rem);
  text-align: center !important;
  font-size: 1rem !important;
}

.nav-link:hover {
  transition: all 0.25s;
  transform: translateY(-0.25rem);
}

/* ДЕСКТОП */
@media (min-width: 1000px) {
  .burger {
    display: none !important;
  }
  .nav {
    position: static !important;
    transform: none !important;
    background: transparent !important;
    height: auto !important;
    flex-direction: row !important;
    justify-content: space-around !important;
    align-items: center !important;
    gap: 2rem;
    padding: 0;
  }
  .navigation {
    justify-content: space-between;
  }
  #logotype {
    width: 35%;
  }
}
.title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 0;
  margin: 10rem 0 0 0;
  width: 100vw;
  user-select: none;
}

.title img {
  opacity: 0;
  animation: imageAppearance forwards 1s 1s 1 ease-in-out;
  width: 100%;
  height: 100%;
}

#fatalTitle {
  opacity: 0;
  animation: imageAppearance forwards 1s 1.5s 1 ease-in-out;
}

.indev__texts h1,
.indev__texts h2 {
  opacity: 0;
  animation: imageAppearance forwards 1s 1.5s 1 ease-in-out;
}

@keyframes imageAppearance {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hidden {
  opacity: 0;
  transform: translateY(3rem);
  transition: all 0.5s ease-in-out;
}

.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s ease-in-out;
}

#detailed {
  width: 100%;
  gap: 2rem;
  list-style-type: none;
  counter-reset: mycounter;
}

#detailed li {
  margin-left: -3.5rem;
  font-size: 1.5rem;
}

#detailed li::before {
  position: relative;
  top: 0.25rem;
  content: counter(mycounter);
  counter-increment: mycounter;
}

.card__title {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  width: 100%;
  gap: 0;
  height: 100px;
}

.card__title h1 {
  margin: 0;
  padding: 0;
  gap: 0;
  margin-top: -3rem;
  margin-left: 3.5rem;
}

.card__description {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  width: 100%;
  gap: 1rem;
  height: 100px;
}

.card__description div {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  text-align: left;
  font-size: 1.25rem;
  font-weight: 700;
}

.card__description div a {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  text-align: left;
  font-size: 1.25rem;
  font-weight: 700;
}

.card__description .difficulty {
  width: 20%;
}

.card__description .duration {
  width: 15%;
}

.card__description .foundYear {
  width: 15%;
}

.card__description .repeatings {
  width: 15%;
}

.card__description .link {
  width: 35%;
}

.difficulty {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  margin-top: 0.25rem;
}

.card__description div img,
.card__description div .circle {
  margin-right: 0.5rem;
}

ol h3 {
  font-size: 3rem;
}

#detailed h3 {
  text-align: left;
}

#fast h3 {
  font-size: 1.5rem;
  margin: 0;
  padding: 0;
  height: 1.5rem;
}

#fast {
  text-align: left;
  justify-content: start;
  align-items: start;
  width: 85%;
  gap: 0.5rem;
  padding-left: 3.5rem !important;
}

.line {
  position: relative;
  color: var(--black);
  background-color: var(--white);
  width: 50vw;
  top: -1.5rem;
  left: 15vw;
  overflow: hidden;
  height: 1rem;
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
}

button, button:hover, button:active {
  scale: 1;
  transition: all 0.25s;
}

#isBasedSolely {
  transition: all 0.25s;
}

button:hover {
  transition: all 0.25s;
  transform: translateY(-0.15rem);
}

button:active {
  transition: all 0.1s;
  scale: 0.8;
}

#isBasedSolely:hover {
  transition: all 0.25s;
  color: #80FFDB;
}

.open-modal {
  width: 30px;
  height: 30px;
  padding: 0;
  border: none;
  background: none;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  margin: 0;
}

.open-modal img {
  width: 100%;
  height: 100%;
}

/* Фон модалки */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none; /* по умолчанию скрыто */
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* когда добавлен класс show — показываем */
.modal.show {
  display: flex;
}

/* Окно */
.modal__dialog {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 1rem;
  position: relative;
  max-width: 50vw;
  width: 100%;
  padding: 1.5rem;
  animation: fadeInUp 0.25s ease-out;
  margin: 0 auto;
  border-radius: 1.5rem;
  min-height: 200px;
  height: auto;
  color: var(--white);
  background: linear-gradient(190deg, var(--white) 0%, var(--black) 35%);
  border-left: 2px solid #4F4F4F;
  border-bottom: 2px solid #4F4F4F;
}

.omg {
  transition: all 0.25s;
  animation: omg 0.5s ease-in-out infinite forwards;
}

/* Крестик */
.modal__close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: none;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: default;
}

.modal__title {
  margin: 0 0 0.5rem;
  font-size: 2rem;
}

.modal__text {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--white);
}

#themeToggle {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  width: 100px;
  height: 30px;
  font-weight: 700;
  border-radius: 1.5rem;
  background-color: var(--white);
  color: var(--black);
  border: none;
}

#colorMode {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin: 0 0.5rem;
}

#setYear, #showHideTitles, #searchButton {
  transition: all 0.25s;
  transform: translateY(0rem);
  margin: 0 auto;
  margin-top: 2rem;
  width: 100%;
  border-radius: 1.5rem;
  min-height: 25px;
  height: auto;
  padding: 0.5rem;
  color: var(--white);
  font-weight: 700;
  background: linear-gradient(190deg, var(--white) 0%, var(--black) 35%);
  border-left: 2px solid #4F4F4F;
  border-bottom: 2px solid #4F4F4F;
}

#setYear, #searchButton {
  margin-top: 0;
}

#setYear:hover,
#showHideTitles:hover {
  transition: all 0.25s;
  transform: translateY(-0.15rem);
}

select {
  transition: all 0.25s;
  transform: translateY(0rem);
  margin: 0 auto;
  margin-top: 2rem;
  width: 100%;
  border-radius: 1.5rem;
  min-height: 25px;
  height: auto;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  color: var(--white);
  font-weight: 700;
  background: linear-gradient(190deg, var(--white) 0%, var(--black) 35%);
  border-left: 2px solid #4F4F4F;
  border-bottom: 2px solid #4F4F4F;
}

option {
  font-weight: 700;
  color: #0F0F0F;
}

.range-control {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  width: 100%;
}

#heightRange {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(190deg, var(--white) 0%, var(--black) 35%);
  border-left: 2px solid #4F4F4F;
  border-bottom: 2px solid #4F4F4F;
  outline: none;
  -webkit-appearance: none;
}

#heightRange::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  background: linear-gradient(190deg, var(--white) 0%, var(--black) 35%);
  border-left: 2px solid #4F4F4F;
  border-bottom: 2px solid #4F4F4F;
}

#heightRange::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  background: linear-gradient(190deg, var(--white) 0%, var(--black) 35%);
  border-left: 2px solid #4F4F4F;
  border-bottom: 2px solid #4F4F4F;
}

input[type=range]::-webkit-scrollbar {
  width: 6px;
}

input[type=range]::-webkit-scrollbar-thumb {
  background: var(--white);
  border-radius: 3px;
}

label {
  font-weight: 700;
  color: var(--white);
}

.dark {
  background-color: #0F0F0F;
}

.oled {
  background-color: #000000;
}

.light {
  background-color: #FAFAFA;
}

.modal__action {
  margin: 0;
  width: 100px;
  border-radius: 1.5rem;
  min-height: 50px;
  height: 50px;
  padding: 0.5rem;
  color: var(--white);
  font-weight: 700;
  background: linear-gradient(190deg, var(--white) 0%, var(--black) 35%);
  border-left: 2px solid #4F4F4F;
  border-bottom: 2px solid #4F4F4F;
}

@keyframes omg {
  from {
    font-size: 1.5rem;
    color: #80FFDB;
  }
  10% {
    color: #FF006E;
  }
  20% {
    color: #4F0D51;
  }
  30% {
    color: #7F2982;
  }
  30% {
    color: #D00000;
  }
  50% {
    font-size: 5rem;
    color: #FB5607;
  }
  60% {
    color: #F48C06;
  }
  70% {
    color: #FFD166;
  }
  80% {
    color: #FFD166;
  }
  90% {
    color: #06D6A0;
  }
  to {
    font-size: 5rem;
    color: #118AB2;
  }
}
/* Простая анимация */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1600px) {
  .line {
    display: none;
  }
  .card {
    width: 60vw;
  }
}
@media (max-width: 1200px) {
  .detailedMusicMain {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 90%;
    padding: 0.5rem;
  }
  .informationBlock {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    gap: 1rem;
  }
  .informations {
    width: 60%;
  }
  .options {
    width: 40%;
  }
  .levels {
    margin-top: 0;
    width: 40%;
  }
  .year {
    width: 100%;
  }
  #detailed {
    justify-content: center;
    align-items: center;
  }
  .card {
    width: 85vw;
  }
}
@media (max-width: 900px) {
  .navigation__controls {
    width: 65%;
    gap: 0.75rem;
    justify-content: end;
  }
  #logotype {
    width: 20%;
    justify-content: start;
  }
  .navigation {
    justify-content: space-around;
  }
  .navigation__links {
    width: 10%;
    gap: 1.5rem;
  }
  .modal__dialog {
    gap: 1rem;
    max-width: 85vw;
    width: 100%;
    padding: 1rem;
    min-height: 200px;
    height: auto;
  }
  .modal__title {
    margin: 0 0 0.25rem;
    font-size: 1.5rem;
  }
  .modal__text {
    margin: 0 0 0.5rem;
    font-size: 1rem;
  }
  .card {
    width: 85vw;
    min-height: 100px;
    height: 150px;
  }
  .open-modal {
    min-width: 30px;
    min-height: 30px;
  }
  .trackName {
    font-size: 1.25rem;
  }
  ol h3 {
    font-size: 2rem;
  }
  h2 {
    font-size: 0.75rem;
  }
  .authorName {
    margin-left: 0.05rem;
    font-size: 1rem;
  }
  img, .circle {
    width: 20px;
    height: 20px;
  }
  #detailed {
    margin: 1rem;
    gap: 1rem;
    list-style-type: none;
    counter-reset: mycounter;
  }
  #detailed li {
    margin-left: -3.5rem;
    font-size: 1.5rem;
  }
  #detailed li::before {
    position: relative;
    width: 50px !important;
    height: 50px !important;
    top: 0;
    content: counter(mycounter);
    counter-increment: mycounter;
  }
  .card__title h1 {
    margin-bottom: 0rem;
    margin-left: 3.5rem;
  }
  .card__title {
    height: 50px;
  }
  .card__description div a,
  .card__description div {
    font-size: 0.75rem;
  }
  .card__description .difficulty {
    margin-top: 0;
  }
  .card__description {
    margin-top: 1rem;
  }
  .card {
    padding: 1rem 1rem 1rem 4.5rem;
  }
  .detailedMusicMain {
    margin-top: 3rem;
  }
  .levels {
    width: 60%;
  }
}
@media (max-width: 600px) {
  #fast {
    width: 90%;
    padding: 2rem !important;
  }
  #fast li {
    font-size: 0.5rem;
  }
  ::-webkit-scrollbar {
    display: none;
  }
  ::-webkit-scrollbar-thumb {
    display: none;
  }
  .no-scrollbar {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  #colorMode {
    width: 12px;
    height: 12px;
    margin: 0.3rem 0.2rem 0.3rem 0.3rem;
  }
  #themeToggle {
    font-size: 0.75rem;
  }
  img, .circle {
    width: 15px;
    height: 15px;
  }
  #detailed {
    padding: 0 0 0 0.5rem;
    margin: 0;
  }
  .detailedMusicMain {
    padding: 0;
    width: 100%;
  }
  .card {
    padding: 0.85rem 0.85rem 0.85rem 4.5rem;
    width: 90vw;
    min-height: 80px;
    height: auto;
  }
  #detailed li {
    margin-left: -3.5rem;
    font-size: 1.25rem;
  }
  #detailed li::before {
    position: relative;
    width: 20px !important;
    height: 20px !important;
    top: 0;
    content: counter(mycounter);
    counter-increment: mycounter;
  }
  .card__title {
    margin-bottom: 1rem;
  }
  .card__title h1 {
    margin-bottom: 0;
    margin-left: 3.5rem;
  }
  .card__description {
    height: auto;
  }
  .trackName {
    margin-top: 1.5rem;
    display: block;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    max-height: 40px;
  }
  ol h3 {
    font-size: 1.25rem;
  }
  h2 {
    font-size: 0.5rem;
  }
  .authorName {
    margin-left: 0.05rem;
    font-size: 0.75rem;
  }
  .card__description {
    gap: 0.5rem;
    margin-top: 0;
    flex-wrap: wrap;
  }
  .card__description .difficulty {
    width: 90%;
  }
  .card__description .duration {
    width: 17.5%;
  }
  .card__description .foundYear {
    width: 17.5%;
  }
  .card__description .repeatings {
    width: 17.5%;
  }
  .card__description .link {
    width: 37.5%;
  }
  .informationBlock {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .informations {
    width: 90%;
  }
  .levels {
    width: 70%;
  }
  .progressbar {
    width: 70%;
  }
  .options {
    width: 75%;
  }
  .year {
    width: 100%;
  }
  .card__inner {
    gap: 0.25rem;
  }
  #themeToggle {
    width: 28%;
  }
  .burger-line:nth-child(1) {
    margin-top: 0.2rem !important;
  }
  .navigation__links a {
    text-align: center;
    font-size: 0.85rem !important;
  }
  .navigation__controls {
    width: 55%;
    gap: 0.5rem;
    padding: 0;
  }
}
@media (max-width: 400px) {
  .card__description {
    gap: 0.5rem;
  }
  .card__description div,
  .card__description .link a {
    font-size: 0.15rem !important;
  }
  .card__description div img {
    margin-right: 0.1rem !important;
    width: 10px;
    height: 10px;
  }
  .card__description .difficulty {
    width: 90%;
  }
  .card__description .duration {
    width: 17.5%;
  }
  .card__description .foundYear {
    width: 17.5%;
  }
  .card__description .repeatings {
    width: 17.5%;
  }
  .card__description .link {
    width: 35%;
  }
  .navigation__controls {
    width: 75%;
    gap: 0.5rem;
  }
  .burger-line:nth-child(1) {
    margin-top: 0 !important;
  }
  #colorMode {
    width: 10px;
    height: 10px;
    margin: 0.2rem 0.2rem 0.2rem 0.4rem;
  }
  #themeToggle {
    font-size: 0.3rem;
    width: 22%;
  }
}
@media (max-width: 300px) {
  #logotype {
    width: 20%;
  }
  .navigation__links {
    width: 1%;
  }
  .navigation__controls {
    width: 75%;
    gap: 0.35rem;
  }
  #ThemeToggle {
    width: 60%;
  }
}
.indev {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  width: 80%;
  min-height: 800px;
  height: auto;
}

#prjctnkLogotypeTextless {
  margin: 0;
}

.indev__texts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 2rem;
}

#prjctnkLogotypeTextless {
  width: 30%;
}

@media (max-width: 600px) {
  #prjctnkLogotypeTextless {
    width: 50%;
  }
  .indev {
    flex-direction: column;
  }
  .indev__texts {
    align-items: center;
  }
  .indev__texts h1 {
    text-align: center;
    font-size: 3rem;
  }
  .indev__texts h2 {
    text-align: center;
    font-size: 1.25rem;
  }
}
@media (max-width: 450px) {
  .indev__texts h1 {
    text-align: center;
    font-size: 2rem;
  }
  .indev__texts h2 {
    text-align: center;
    font-size: 1rem;
  }
}
.mainPage {
  min-height: 150vh;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 1rem;
  padding: 204px 1rem 50px 1rem;
}

.mainPage h1 {
  font-size: 2.5vw;
  text-align: center;
}

.research {
  margin-top: 40vh;
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 1rem;
}

.research h2 {
  font-size: 3vw;
  text-align: center;
}

.research__links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.research__links a {
  background: linear-gradient(135deg, #FF006E 0%, #80FFDB 100%);
  /* Обрезаем фон по буквам */
  -webkit-background-clip: text;
  background-clip: text;
  /* Делаем текст прозрачным */
  -webkit-text-fill-color: transparent;
  color: transparent;
  /* Дополнительно */
  font-weight: 900;
  font-size: 2vw !important;
}

.research__links a:nth-child(1) {
  margin-top: 15vh;
}

.hiddenOthers {
  opacity: 0;
  transform: translateY(3rem);
  transition: all 1s ease-in-out;
}

.visibleOthers {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s ease-in-out;
}

.pictureslist {
  margin-top: 15vh;
  font-size: 1.75rem;
}

.pictureslistfast {
  display: none;
}/*# sourceMappingURL=styles.css.map */