@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap");
nav.header {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 100px;
  gap: 75px;
  z-index: 15;
}
nav.header img {
  width: 81px;
  height: 81px;
}
nav.header ul {
  display: flex;
  gap: 25px;
  color: #fff;
  margin: 0;
}
nav.header ul li {
  font-weight: 600;
  font-size: 20px;
  padding: 5px 10px;
  margin: 0;
  transition: color 0.35s ease;
  text-decoration: none;
  list-style: none;
  white-space: nowrap;
}
nav.header ul li:hover {
  color: rgba(255, 255, 255, 0.75);
}
nav.header .burger-menu {
  display: none;
}
@media (max-width: 1024px) {
  nav.header {
    box-sizing: border-box;
    padding: 0 30px;
    gap: 25px;
    justify-content: space-between;
  }
  nav.header ul {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    margin: 0;
    background-color: rgba(26, 26, 26, 0.75);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    padding: 60px 15px;
    box-sizing: border-box;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    border-radius: 0 0 15px 15px;
    transform: translateY(-100%);
  }
  nav.header ul:not(.no-animation) {
    transition: all 0.5s ease;
  }
  nav.header ul li {
    width: 80%;
  }
  nav.header .burger-menu {
    display: block;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    z-index: 2;
    color: #fff;
  }
  nav.header .burger-menu i {
    font-size: 25px;
  }
  nav.header .burger-menu:hover {
    color: rgba(255, 255, 255, 0.75);
  }
  nav.header .burger-menu:active {
    outline: none;
    border: none;
    color: rgb(255, 255, 255);
  }
  nav.header .burger-menu:focus {
    outline: none;
    border: none;
    color: rgb(255, 255, 255);
  }
  nav.header .burger-menu.active .burger-icon {
    transform: rotate(45deg);
  }
  nav.header.active ul {
    transform: translateY(0);
    transition: all 0.5s ease;
  }
}

footer {
  /*display: flex;
  align-items: center;
  justify-content: center;*/
  margin-top: 50px;
  padding: 0 100px;
  box-sizing: border-box;
  height: 70px;
  width: 100%;
  background: #343236;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  text-align: center;
}
/**
@media (max-width: 1024px) {
  footer {
    display: none;
  }
}
**/






















body {
  position: relative;
  color: #fff;
  min-height: 100vh;
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
  background: #303030; /* Fond foncé */
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8); /* Assombrissement du fond */
  background-image: linear-gradient(rgba(30, 29, 29, 0.6), rgba(30, 29, 29, 0.6)), url("../assets/wallpaper_site.jpg"), url("../assets/wallpaper_site.jpg");
  background-repeat: repeat-x; /* Répéter l'image de fond horizontalement */
  background-size: auto 100%; /* Garder les proportions de l'image et ajuster la hauteur */
  background-position: 0 0;
  filter: blur(10px);
  -webkit-filter: blur(10px);
  z-index: -1;
  background-attachment: fixed;
  animation: animatedBackground 400s linear infinite; /* Accélérer l'animation */
}

@keyframes animate {
    0%{
        opacity: 0;
        transform: rotate(45deg) translate(-1vw,-1vw);
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
        transform: rotate(45deg) translate(1vw,1vw);
    }
}

@keyframes animatedBackground {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: 10000px 0;
    }
}

@keyframes scaleLogo {
    0% { 
        transform: scale(100%);
    }
    50% { 
        transform: scale(107%);
    }
    100% {
        transform: scale(100%);
    }
}

main {
  flex: 1;
  margin-top: 55px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  min-height: 100%;
}



























.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #6C32C1;
  box-shadow: inset 0px 0px 14px rgba(255, 255, 255, 0.21);
  border-radius: 5px;
  border: none;
  outline: none;
  padding: 12px 48px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}
.btn i {
  font-size: 18px;
  margin: 0;
}
.btn:active {
  transform: translateY(1px);
}
.btn:hover {
  cursor: pointer;
  opacity: 85%;
}
.btn.account {
  background: #6d32c7;
}
.btn.twitch {
  background: #9146FF;
}
.btn.discord {
  background: #5865F2;
}

.selectMenu {
  position: relative;
  width: 220px;
  height: 15px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}
.selectMenu .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  padding: 10px 10px;
  background: rgba(19, 19, 19, 0.75);
  border-radius: 5px;
}
.selectMenu .header i {
  margin-right: 10px;
  font-size: 16px;
  transition: all 0.2s ease;
}
.selectMenu .header .placeholder {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  margin-left: 10px;
}
.selectMenu .header .placeholder span {
  height: 12px;
  width: 12px;
  border-radius: 100%;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.35);
}
.selectMenu .header .placeholder p {
  margin: 0;
  font-size: 14px;
}
.selectMenu .header .placeholder.rarity::after {
  font-size: 14px;
  content: "Rareté";
}
.selectMenu .header .placeholder.commun span {
  background-color: rgb(164, 232, 179);
  box-shadow: 0px 0px 5px rgba(164, 232, 179, 0.35);
}
.selectMenu .header .placeholder.commun::after {
  content: "Commun";
}
.selectMenu .header .placeholder.rare span {
  background-color: rgb(12, 182, 255);
  box-shadow: 0px 0px 5px rgba(12, 182, 255, 0.35);
}
.selectMenu .header .placeholder.rare::after {
  content: "Rare";
}
.selectMenu .header .placeholder.epic span {
  background-color: rgb(138, 43, 226);
  box-shadow: 0px 0px 5px rgba(138, 43, 226, 0.35);
}
.selectMenu .header .placeholder.epic::after {
  content: "Épique";
}
.selectMenu .header .placeholder.legendaire span {
  background-color: rgb(255, 188, 18);
  box-shadow: 0px 0px 5px rgba(255, 188, 18, 0.35);
}
.selectMenu .header .placeholder.legendaire::after {
  content: "Légendaire";
}
.selectMenu .header .placeholder.unique span {
  background-color: rgb(237, 37, 193);
  box-shadow: 0px 0px 5px rgba(237, 37, 193, 0.35);
}
.selectMenu .header .placeholder.unique::after {
  content: "Unique";
}
.selectMenu .header .placeholder.event span {
  background-color: rgb(244, 57, 59);
  box-shadow: 0px 0px 5px rgba(244, 57, 59, 0.35);
}
.selectMenu .header .placeholder.event::after {
  content: "Event";
}
.selectMenu .header:hover {
  cursor: pointer;
}
.selectMenu .options {
  position: absolute;
  top: 56px;
  width: 100%;
  padding: 10px 10px;
  display: none;
  flex-direction: column;
  gap: 2.5px;
  background: rgba(19, 19, 19, 0.75);
  border-radius: 5px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 1;
}
.selectMenu .options .option {
  display: flex;
  flex-direction: row;
  padding: 6px 10px;
  border-radius: 5px;
}
.selectMenu .options .option a {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  color: rgba(255, 255, 255, 0.5);
}
.selectMenu .options .option a span {
  height: 12px;
  width: 12px;
  border-radius: 100%;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.35);
}
.selectMenu .options .option a p {
  margin: 0;
  font-size: 14px;
}
.selectMenu .options .option a.commun span {
  background-color: rgb(164, 232, 179);
  box-shadow: 0px 0px 5px rgba(164, 232, 179, 0.35);
}
.selectMenu .options .option a.rare span {
  background-color: rgb(12, 182, 255);
  box-shadow: 0px 0px 5px rgba(12, 182, 255, 0.35);
}
.selectMenu .options .option a.epic span {
  background-color: rgb(138, 43, 226);
  box-shadow: 0px 0px 5px rgba(138, 43, 226, 0.35);
}
.selectMenu .options .option a.legendaire span {
  background-color: rgb(255, 188, 18);
  box-shadow: 0px 0px 5px rgba(255, 188, 18, 0.35);
}
.selectMenu .options .option a.unique span {
  background-color: rgb(237, 37, 193);
  box-shadow: 0px 0px 5px rgba(237, 37, 193, 0.35);
}
.selectMenu .options .option a.event span {
  background-color: rgb(244, 57, 59);
  box-shadow: 0px 0px 5px rgba(244, 57, 59, 0.35);
}
.selectMenu .options .option a:hover {
  cursor: pointer;
}
.selectMenu .options .option .radio {
  display: none;
}
.selectMenu .options .option:hover {
  background-color: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}
.selectMenu.active .header i {
  transform: rotate(90deg);
  transition: all 0.2s ease;
}
.selectMenu.active .options {
  display: flex;
}

.inputIcon {
  width: 220px;
  padding: 9.5px 10px;
  height: 20px;
  background: rgba(19, 19, 19, 0.75);
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 7.5px;
}
.inputIcon i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}
.inputIcon input {
  background: none;
  border: none;
  outline: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}
.inputIcon input::-moz-placeholder {
  font-size: 14px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
.inputIcon input::placeholder {
  font-size: 14px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

@media (min-width: 1024px) {
  main {
    margin-bottom: 100px;
  }
}
@media (max-width: 1024px) {
  main {
    margin-bottom: 50px;
  }
}
a {
  text-decoration: none;
  color: #fff;
}

.rankingSelector {
  display: flex;
  width: 400px;
  height: 40px;
}
.rankingSelector .item {
  flex: 1;
  background: #4D3570;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 21px;
  gap: 6px;
  font-size: 14px;
}
.rankingSelector .item i {
  font-size: 16px;
}
.rankingSelector .item:first-child {
  border-radius: 5px 0 0 5px;
}
.rankingSelector .item:last-child {
  border-radius: 0 5px 5px 0;
}
.rankingSelector .item.selected {
  background: #6C32C1;
  color: rgb(255, 255, 255);
}
.rankingSelector .item:hover {
  cursor: pointer;
}

h2 {
  font-weight: 600;
  font-size: 18px;
  margin: 0;
}
h2 sup {
  font-size: 12px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #6C32C1;
  border-radius: 5px;
  border: none;
  outline: none;
  padding: 8px 26px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}
.btn i {
  font-size: 16px;
  margin: 0;
}
.btn:active {
  transform: translateY(1px);
}
.btn:hover {
  cursor: pointer;
  opacity: 85%;
}

.rankList {
  display: table;
  width: 550px;
}
.rankList .header {
  display: table-row;
}
.rankList .header div {
  display: table-cell;
  text-align: left;
  vertical-align: middle;
  font-weight: 500;
  font-size: 14px;
}
.rankList .header .rank {
  height: 35px;
  width: 35px;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
.rankList .header .username {
  gap: 10px;
  padding: 0 10px;
  width: 100%;
}
.rankList .header .level {
  text-align: center;
}
.rankList .item {
  display: table-row;
}
.rankList .item div {
  display: table-cell;
  vertical-align: middle;
  font-size: 18px;
  font-weight: 600;
}
.rankList .item .rank {
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1B1B1B;
  font-weight: 800;
}
.rankList .item .rank img {
  height: 28px;
  width: 28px;
}
.rankList .item .username {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
  width: 50px;
  max-width: 50px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 18px;
  font-weight: 600;
  padding: 0 15px;
  background: #2E2E2E;
}
.rankList .item .username:hover {
  opacity: 75%;
}
.rankList .item .level {
  text-align: center;
  padding: 0 15px;
  background: #6C32C1;
  font-size: 20px;
}
.rankList .item .exp {
  text-align: center;
  padding: 0 15px;
  background: #5D329D;
  font-size: 20px;
}

.rankList .item.selected .rank {
  background: #58496D;
}
.rankList .item.selected .username {
  background: #705E8A;
}
.rankList.coins {
  width: 550px;
}
.rankList.coins .header .goldenCoins {
  padding: 0 10px;
  box-sizing: border-box;
  white-space: nowrap;
}
.rankList.coins .header .coins {
  width: 140px;
  padding: 0 10px;
  box-sizing: border-box;
}
.rankList.coins .item .goldenCoins {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 10px;
  box-sizing: border-box;
  background: #5D329D;
  white-space: nowrap;
}
.rankList.coins .item .goldenCoins img {
  height: 20px;
  width: 20px;
  vertical-align: middle;
}
.rankList.coins .item .goldenCoins span {
  vertical-align: middle;
}
.rankList.coins .item .coins {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 10px;
  box-sizing: border-box;
  background: #6C32C1;
  white-space: nowrap;
}
.rankList.coins .item .coins img {
  height: 20px;
  width: 20px;
  vertical-align: middle;
}
.rankList.coins .item .coins span {
  vertical-align: middle;
}

@media (max-width: 1024px) {
  main {
    padding: 0 30px;
  }
  .rankingSelector {
    height: 35px;
    width: 100%;
  }
  .rankingSelector .item {
    gap: 10px;
    font-size: 14px;
  }
  .rankingSelector .item i {
    font-size: 16px;
  }
  a {
    width: 100%;
  }
  .btn {
    width: 100%;
    padding: 12px 26px;
    font-size: 13px;
  }
  .btn i {
    font-size: 14px;
  }
  .rankList {
    width: 100%;
  }
  .rankList .item .username {
    width: 50px;
    max-width: 50px;
  }
  .rankList.coins {
    width: 100%;
  }
  .rankList.coins .header .goldenCoins {
    white-space: normal;
  }
}/*# sourceMappingURL=classement.css.map */