.header {
  background: linear-gradient(130deg, #1f3f2a 0%, rgb(31, 34, 47) 25.38%);
  display: flex;
  align-items: center;
  padding: 12px;
  color: rgb(255, 255, 255);
  font-size: 0.9rem;
}

.row {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  gap: 12px;
}

.authButtons {
  align-items: center;
  display: flex;
  gap: 12px;
  cursor: pointer;
}

.authButton {
  font-weight: 500;
}

.chat {
  background-color: rgba(35, 39, 53, 1);
  border: 2px solid rgba(39, 43, 58, 1);
  border-radius: 50%;
  width: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.section {
  align-items: center;
  display: flex;
  gap: 8px;
}

.appNotify {
  background-color: rgba(35, 39, 53, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
}

.title {
  font-size: 0.8rem;
  color: rgba(226, 226, 240, 1);
  font-weight: 500;
}

.subtitle {
  font-size: 0.7rem;
  color: rgba(118, 128, 163, 1);
}

.button {
  --height: 32px;
  height: var(--height);
  background: rgba(39, 195, 92, 1);
  border: 2px solid rgba(37, 245, 108, 1);
  padding: 12px 24px;
  border-radius: 8px;
  color: rgb(255, 255, 255);
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  box-shadow: 0 3px 16px rgba(37, 245, 108, .7), inset 0 4px 3px #ffffff4d;
}

.button:hover {
  transform: scale(1.1);
}

.openApk {
  text-decoration: none;
}

.full {
  --height: 48px;
  width: 100%;
  height: var(--height);
  text-align: center;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.close {
  --size: 24px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  border: 2px solid rgba(39, 43, 58, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  padding: 12px;
}

.wheelContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.description {
  width: 80%;
  color: rgba(255, 255, 255);
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.descriptionText {
  font-size: clamp(0.7rem, 1.2vw, 1.2rem);
  font-weight: 500;
}

.wheel {
  background: url(./assets/wheel-border.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 80vw;
  height: 80vw;

  max-width: 400px;
  max-height: 400px;

  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.wheelItems {
  background: url(./assets/wheel-items.webp);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}

.wheelContent {
  position: absolute;
  width: 90%;
  height: 90%;

  animation: Base 3s ease-in-out infinite;
}

.rotate {
  animation: rotate 2s forwards linear;
}

.item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 25%;
  height: 100%;

  text-align: center;
  font-size: 0.6rem;
  white-space: nowrap;
  font-weight: 600;
  padding: 8px 0;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
}

.bold {
  font-size: 0.8rem;
}

.second {
  transform: translate(-50%, -50%) rotate(45deg);
}
.third {
  transform: translate(-50%, -50%) rotate(90deg);
}

.fourth {
  transform: translate(-50%, -50%) rotate(135deg);
}
.fifth {
  transform: translate(-50%, -50%) rotate(180deg);
}
.sixth {
  transform: translate(-50%, -50%) rotate(225deg);
}
.seventh {
  transform: translate(-50%, -50%) rotate(270deg);
}
.eighth {
  transform: translate(-50%, -50%) rotate(315deg);
}

.arrow {
  background: url(./assets/wheel-win-frame.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  z-index: 3;
}

.centerButton {
  background: url(./assets/wheel-btn.webp);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  z-index: 4;

  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  text-align: center;
  font-weight: 700;
  padding: 24px;
  cursor: pointer;
}

.categories {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255);
  margin-bottom: 12px;
}

.category {
  padding: 0 6px 12px;
  font-weight: 500;
  font-size: 0.8rem;
  white-space: nowrap;
}

.chosen {
  border-bottom: 2px solid rgba(245, 187, 37);
}

.search {
  background: rgba(31, 34, 47, 0.5);
  border: 2px solid rgba(39, 43, 58, 1);
  border-radius: 16px;
  padding: 2px 12px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  width: 100%;
}

.searchInput,
.searchInput::placeholder {
  background-color: initial;
  color: rgba(81, 88, 113);
  font-size: 0.9rem;
  font-weight: 500;
  width: 100%;
}

.loupe {
  --size: 24px;
  width: var(--size);
  height: var(--size);
}

.games {
  grid-gap: 6px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 130px;
  overflow-x: auto;
  margin-bottom: 12px;
}

.game {
  height: 150px;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}

.gameImg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
}

.footer {
  align-items: center;
  background: rgb(31, 34, 47);
  border-top: 2px solid rgb(39, 43, 58);
  display: flex;
  flex-direction: column;
  padding-bottom: 60px;
  width: 100%;
}

.textBlock {
  color: rgba(81, 88, 113);
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.documentsContainer {
  padding: 12px;
  width: 100%;
}

.docTitle {
  font-size: 1rem;
  width: 100%;
  color: rgb(118, 128, 163);
  padding: 12px;
  padding-bottom: 0;
}

.titleText {
  color: rgb(255, 255, 255);
  font-size: 1.1rem;
}

.footerContent {
  padding: 12px;
}

.wrapperAccordion {
  border-bottom: 1px solid rgb(39, 43, 58);
  color: rgb(255, 255, 255);
  margin-bottom: 6px;
  width: 100%;
}

.titleWrapper {
  align-items: center;
  border: 2px solid rgb(39, 43, 58);
  border-radius: 6px;
  display: flex;
  font-size: 1.1rem;
  justify-content: space-between;
  padding: 12px;
}

.accordionList {
  padding: 12px 0;
  border: 2px solid rgb(39, 43, 58);
  border-top: none;
  border-bottom: none;
  display: none;
}

.itemRow {
  display: flex;
  position: relative;
  margin-bottom: 12px;
  font-size: 16px;
  padding-left: 12px;
  color: rgb(255, 255, 255);
}

.itemRow:last-child {
  margin-bottom: 0;
}

.accordionArrow,
.button {
  cursor: pointer;
}

.dot {
  padding-left: 24px;
}

.dot::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: rgb(37, 245, 108);
  border-radius: 50%;
  width: 5px;
  height: 5px;
}

.license {
  width: 100%;
  padding: 12px;
  background: rgb(23, 25, 36);
  border-radius: 12px;
  margin-bottom: 12px;
  border: 2px solid rgb(39, 43, 58);
  display: flex;
  justify-content: center;
  align-items: center;
}

.frame {
  height: 50px;
}

.footerLogo {
  height: 48px;
}

.navBar {
  --height: 60px;
  width: 100%;
  height: var(--height);
  display: flex;
  align-items: center;
  background: rgba(31, 34, 47, 1);
  border-top: 2px solid rgba(39, 43, 58, 0.45);
  bottom: 0;
  left: 0;
  position: fixed;
  padding: 4px 8px;
  z-index: 4;
}

.navButton {
  align-items: center;
  color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  font-size: 0.6rem;
  height: 100%;
  justify-content: center;
  text-decoration: none;
  width: 100%;
}

.active {
  background-color: rgb(44, 49, 66);
  border: 2px solid rgb(39, 43, 58);
  border-radius: 6px;
  transition: 0.5s;
}

.wrapperModal {
  bottom: 0;
  left: 0;
  position: fixed;
  width: 100%;
  z-index: 5;
  display: none;
}

.modal {
  align-items: center;
  background-color: rgb(23, 25, 36);
  border-radius: 15px;
  border-top: 2px solid rgb(39, 43, 58);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 24px;
  gap: 24px;
  animation: moveToUp 1s forwards;
}

.modalTitle {
  color: rgb(255, 255, 255);
}

.modalButtons {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 0.8rem;
}

.back {
  background-color: initial;
  border: 2px solid rgb(39, 43, 58);
  color: rgb(81, 88, 113);
  box-shadow: none;
}

.black {
  background-color: rgb(23, 25, 36, 0.9);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 4;
  animation: fadeIn 1s forwards;
  display: none;
}

/* DIALOG  */

.dialog-reg {
  position: fixed;
  top: 0%;
  left: 0%;
  
  width: 100%;
  height: 100%;


  justify-content: center;
  align-items: center;

  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9;
  display: none;
}

.show {
  display: flex;
}

.show iframe {
  max-width: 450px;
  max-height: 680px;
  width: 100%;
  height: 100%;
}

@keyframes Base {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }

  100% {
    transform: rotate(-4deg);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(800deg);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes moveToUp {
  0% {
    transform: translateY(100%);
  }

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

@media screen and (min-width: 768px) {
  .navBar,
  .appNotify {
    display: none;
  }

  .content {
    width: 80%;
    margin: 0 auto;
  }

  .full {
    width: 25%;
    min-width: 350px;
    margin: 36px auto 24px;
  }

  .categories,
  .search {
    width: 25%;
  }

  .filterGames {
    display: flex;
    justify-content: space-between;
  }

  .games {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    grid-gap: 12px;
  }

  .game {
    height: 250px;
  }

  .wheelContainer {
    flex-direction: row;
    justify-content: space-around;
    margin: 0 auto;
    margin-bottom: 36px;
    width: 100%;
    position: relative;
  }

  .description {
    width: 40%;
  }

  .wrapperModal {
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  .modal {
    width: 500px;
    border: 2px solid rgb(39, 43, 58);
  }
}

@media screen and (min-width: 1024px) {
  .description {
    width: 24%;
    position: absolute;
    left: 0px;
  }
}


