/* Transição de fade para início do jogo */
.job-fade-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #1a0933 url('../assets/images/jobs/bg-2.png') center center no-repeat;
  background-size: cover;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s cubic-bezier(.7,.2,.3,1);
}
.job-fade-transition.active {
  opacity: 1;
  pointer-events: all;
}
.job-fade-transition.hidden {
  display: none;
}
.choose-job-grid-custom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 900px;
  margin: 50px auto;
  gap: 2.5rem;
  align-self: center;
}

.choose-job-row-top {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.5rem;
  width: 60%;
  margin: 0 auto;
  justify-content: center;
}
.choose-job-row-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  width: 60%;
  margin: 0 auto;
  justify-content: center;
}
.choose-job-row-top .choose-job-card,
.choose-job-row-bottom .choose-job-card {
  width: 180px;
  height: 220px;
  background: linear-gradient(180deg, #1a1027 70%, #2a1747 100%);
  border-radius: 24px;
  border: 3px solid #ff2b7c;
  box-shadow: 0 0 0 4px #7c2fff, 0 8px 32px #000a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.choose-job-row-top .choose-job-card:hover,
.choose-job-row-bottom .choose-job-card:hover {
  border-color: #ffe12b;
  box-shadow: 0 0 0 6px #ffe12b, 0 8px 32px #000a;
  cursor: pointer;
  
}
.choose-job-row-top,
.choose-job-row-bottom {
  animation: fadeInSlideUp 0.8s ease both;
}

@keyframes fadeInSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.choose-job-row-top .choose-job-card:empty {
  background: none;
  border: none;
  box-shadow: none;
  
}
.choose-job-icon-center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 220px;
}

.choose-job-icon-img {
  width: 180px;
  height: 180px;
  image-rendering: pixelated;
  filter: drop-shadow(0 0 12px #ff2b7c);
  animation: floatY 2.5s ease-in-out infinite;
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* ===== CHOOSE YOUR JOB SCREEN ===== */
.choose-job-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background: #2a1747 url('../assets/images/jobs/bg-2.png') center center no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: 'MortalKombat1Font', 'Press Start 2P', monospace;
}

/* Modal lateral do job */
.job-modal-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 50vw;
  max-width: 900px;
  min-width: 480px;
  height: 100vh;
  z-index: 900;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  animation: job-modal-slide-in 0.4s cubic-bezier(.7,.2,.3,1) forwards;
  transition: right 0.4s cubic-bezier(.7,.2,.3,1), opacity 0.4s cubic-bezier(.7,.2,.3,1);
}

.job-modal-sidebar.slide-out {
  animation: job-modal-slide-out 0.4s cubic-bezier(.7,.2,.3,1) forwards;
}

@keyframes job-modal-slide-out {
  from {
    right: 0;
    opacity: 1;
  }
  to {
    right: -600px;
    opacity: 0;
  }
}
.job-modal-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/images/jobs/slide-bar.png') center;
  background-size: cover;
  z-index: 0;
  pointer-events: none;
}
.job-modal-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 3rem 3rem 2.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 100vh;
}
.job-modal-title {
  font-family: 'MortalKombat1Font', 'Press Start 2P', monospace;
  font-size: 3.2rem;
  color: #ffe12b;
  text-shadow: 2px 2px 0 #7c2fff, 4px 4px 0 #ff2b7c;
  margin-bottom: 2.2rem;
  letter-spacing: 0.12em;
  text-align: left;
  width: 100%;
}
.job-modal-description {
  font-family: 'Press Start 2P', monospace;
  font-size: 1.3rem;
  color: #fff;
  text-shadow: 2px 2px 0 #7c2fff;
  margin-bottom: 2.2rem;
  text-align: left;
  width: 100%;
  line-height: 1.6;
}
.job-modal-difficulty {
  font-family: 'MortalKombat1Font', 'Press Start 2P', monospace;
  font-size: 2rem;
  color: #ffe12b;
  text-shadow: 2px 2px 0 #7c2fff;
  margin-bottom: 2.2rem;
  text-align: left;
  width: 100%;
}
.job-modal-hearts {
  font-size: 2.2rem;
  color: #ff2b7c;
  margin-left: 0.7rem;
}
 .job-modal-back-container {
  position: absolute;
  left: 0.9rem;
  bottom: 2rem;
  z-index: 10;
  width: auto;
  pointer-events: auto;
}
.job-modal-play-container {
  position: absolute;
  right: 0.9rem;
  bottom: 1.6rem;
  z-index: 10;
  width: auto;
  pointer-events: auto;
}
.job-modal-back, .job-modal-play {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.2s;
}
.job-modal-back:hover, .job-modal-play:hover {
  filter: drop-shadow(0 0 24px #ffe12b);
  transform: scale(1.1);
}
@keyframes job-modal-slide-in {
  from {
    right: -600px;
    opacity: 0;
  }
  to {
    right: 0;
    opacity: 1;
  }
}

.job-modal-back .btn-icon,
.job-modal-play .btn-icon {
  width: 110px;
  height: 70px;
  filter: drop-shadow(0 0 12px #7c2fff);
}
.job-modal-back .arrow-icon {
  width: 32px;
  height: 32px;
  margin-right: 0.7rem;
  filter: drop-shadow(0 0 6px #7c2fff);
  border-radius: 24px;
}
.job-modal-play .play-arrow {
  width: 32px;
  height: 32px;
  margin-left: 0.7rem;
  filter: drop-shadow(0 0 6px #7c2fff);
  border-radius: 24px;
}

.choose-job-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

/* Triângulos BG laterais */
.choose-job-bg-triangle-left {
  position: absolute;
  top: 50%;
  left: -10%;
  width: 32vw;
  height: 40vh;
  background: url('../assets/images/jobs/bg-triangulo.png') no-repeat left center;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
  transform: translateY(-50%);
}
.choose-job-bg-triangle-right {
  position: absolute;
  top: 50%;
  right: -10%;
  width: 32vw;
  height: 40vh;
  background: url('../assets/images/jobs/bg-triangulo.png') no-repeat right center;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
  transform: translateY(-50%);
}

/* Naipes nos cantos da tela de escolha de job */
.choose-job-bg-copas {
  position: absolute;
  top: 3.5rem;
  left: 3.5rem;
  width: 150px;
  height: 150px;
  background: url('../assets/images/jobs/copas.png') no-repeat center center;
  background-size: contain;
  z-index: 1;
  pointer-events: none;
}
.choose-job-bg-espadas {
  position: absolute;
  bottom: 3.5rem;
  left: 3.5rem;
  width: 150px;
  height: 150px;
  background: url('../assets/images/jobs/espadas.png') no-repeat center center;
  background-size: contain;
  z-index: 1;
  pointer-events: none;
}
.choose-job-bg-ouros {
  position: absolute;
  top: 3.5rem;
  right: 3.5rem;
  width: 150px;
  height: 150px;
  background: url('../assets/images/jobs/ouros.png') no-repeat center center;
  background-size: contain;
  z-index: 1;
  pointer-events: none;
}
.choose-job-bg-paus {
  position: absolute;
  bottom: 3.5rem;
  right: 3.5rem;
  width: 150px;
  height: 150px;
  background: url('../assets/images/jobs/paus.png') no-repeat center center;
  background-size: contain;
  z-index: 1;
  pointer-events: none;
}

.choose-job-content {
  position: relative;
  z-index: 1;
  width: 100vw;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
}

.choose-job-title {
  font-family: 'MortalKombat1Font', 'Press Start 2P', monospace;
  font-size: 3rem;
  color: #ffe12b;
  text-shadow: 2px 2px 0 #7c2fff, 4px 4px 0 #ff2b7c;
  margin-bottom: 2.5rem;
  margin-top: 3rem;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
  z-index: 2;
  animation: slideDownFade 0.7s ease-out both;
  animation: pulseTitle 2s ease-in-out infinite;
}

@keyframes pulseTitle {
  0%, 100% {
    text-shadow:
      2px 2px 0 #7c2fff,
      4px 4px 0 #ff2b7c;
    transform: scale(1);
  }
  50% {
    text-shadow:
      3px 3px 0 #ffe12b,
      5px 5px 0 #ff2b7c;
    transform: scale(1.05);
  }
}

@keyframes slideDownFade {
  from {
    transform: translateY(-40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.choose-job-title::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 85%;
  transform: translate(-50%, -55%);
  width: 160px;
  height: 160px;
  background: url('../assets/images/jobs/estrela.png') no-repeat center center;
  background-size: contain;
  z-index: -1;
  opacity: 0.85;
  pointer-events: none;
  animation: pulseStar 2s ease-in-out infinite;
}

@keyframes pulseStar {
  0%, 100% {
    transform: translate(-50%, -55%) scale(1);
    opacity: 0.85;
  }
  50% {
    transform: translate(-50%, -55%) scale(1.1);
    opacity: 1;
  }
}



.choose-job-card {
  width: 180px;
  height: 220px;
  background: linear-gradient(180deg, #1a1027 70%, #2a1747 100%);
  border-radius: 24px;
  border: 3px solid #ff2b7c;
  box-shadow: 0 0 0 4px #7c2fff, 0 8px 32px #000a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
  animation: fadeInZoom 0.6s ease forwards;
  opacity: 0;
  transform: scale(0.8);
}

@keyframes fadeInZoom {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.choose-job-card:hover {
  border-color: #ffe12b;
  box-shadow: 0 0 0 6px #ffe12b, 0 8px 32px #000a;
  cursor: pointer;
  transform: translateY(-8px) scale(1.03);
  transition: transform 0.3s ease;
}

.choose-job-img {
  width: 120px;
  height: 120px;
  image-rendering: pixelated;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  display: block;
  object-fit: contain;
}

.choose-job-name {
  font-family: 'MortalKombat1Font', 'Press Start 2P', monospace;
  font-size: 1.3rem;
  color: #ffe12b;
  text-shadow: 2px 2px 0 #7c2fff;
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
  text-align: center;
}
/* LOADING SCREEN */
#loading-screen {
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #13002d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.loading-bg {
    z-index: 3;
    background-image: url("../assets/images/bg-dec.png");
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background-size: contain;
}

.loading-clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('../assets/images/clouds.png') repeat-x;
    background-size: cover;
    opacity: 0.8;
    animation: loading-moveClouds 60s linear infinite;
    z-index: 2;
}
.loading-clouds.clouds2 {
    top: 40px;
    opacity: 0.5;
    animation-duration: 90s;
}

@keyframes loading-moveClouds {
    from { background-position-x: 0; }
    to { background-position-x: -1000px; }
}

.loading-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.loading-logo {
    width: 16rem;
    margin-bottom: 2.5rem;
    filter: drop-shadow(0 0 16px #fdd201);
}

.loading-title {
    font-family: MortalKombat1Font, Arial, sans-serif;
    color: #fdd201;
    font-size: 5rem;
    letter-spacing: .18em;
    text-align: center;
    text-shadow: 3px 3px 1px #c93ed8;
    margin-bottom: 2.5rem;
}

.loading-bar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
}

.loading-text {
    color: #d0e8ff;
    font-size: 2.1rem;
    margin-bottom: 1.2rem;
    letter-spacing: 0.15em;
    font-family: MortalKombat1Font, Arial, sans-serif;
    text-shadow: 2px 2px 1px #b14dd0;
}

.loading-bar-blocks {
    display: flex;
    flex-direction: row;
    gap: 0.3rem;
    width: auto;
    height: 28px;
    background: none;
    border-radius: 0;
    box-shadow: none;
    margin-top: 0.2rem;
}

.loading-block {
    width: 24px;
    height: 24px;
    border-radius: 3px;
    background: #ffb6c1;
    box-shadow: 0 2px 0 #1a0030, 0 0 0 2px #1a0030;
    display: inline-block;
}
.loading-block-pink {
    background: linear-gradient(180deg, #ffb6c1 60%, #ff6cfb 100%);
}
.loading-block-blue {
    background: linear-gradient(180deg, #7ecbff 0%, #3e8ed8 100%);
}

.loading-footer {
    position: absolute;
    right: 2.5rem;
    bottom: 1.5rem;
    color: #d0e8ff;
    font-size: 1.3rem;
    font-family: Arial, sans-serif;
    opacity: 0.8;
    z-index: 20;
}
body{
    height: 100vh;
    font-family: MortalKombat1Font;
    background: #13002d;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 4rem;
}

.logo {
    width: 14rem;
    z-index: 10;
    animation: pulseLogo 4s ease-in-out infinite;
}

@keyframes pulseLogo {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0px #fdd201);
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 10px #fdd201);
    }
}


.title {
    z-index: 10;
    letter-spacing: .35rem;
    text-align: center;
    font-size: 5rem;
    color: #fdd201;
    text-shadow: 3px 3px 1px #c93ed8;
    animation: pulseTitle 3s ease-in-out infinite;
}

@keyframes pulseTitle {
    0%, 100% {
        transform: scale(1);
        text-shadow: 3px 3px 1px #c93ed8;
    }
    50% {
        transform: scale(1.05);
        text-shadow: 4px 4px 4px #ff6cfb;
    }
}


.bg-dec {
    z-index: 3;
    background-image: url("../assets/images/bg-dec.png");
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background-size: contain;
    animation: twinkle .25s infinite normal;
}

@keyframes twinkle {
    0% {
        opacity: .7;
    }

    100% {
        opacity: 1;
    }
}
.mountain {
    z-index: 2;
    background-image: url("../assets/images/mountain.png");
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom; /* ou uma posição específica */
}
.clouds {
    z-index: 5;
    background-image: url("../assets/images/clouds.png");
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background-size: cover;
    background-repeat: repeat-x;
    animation: moveClouds 60s linear infinite;
}

@keyframes moveClouds {
    from {
        background-position-x: 0;
    }
    to {
        background-position-x: -1000px;
    }
}


.menu-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 500px;
    margin-top: 4rem;
    z-index: 4;
}

.menu-options .option {
    color: white;
    letter-spacing: .25rem;
    background: transparent;
    cursor: pointer;
    font-family: MortalKombat1Font;
    text-shadow: 2px 2px 1px #d87add;
    position: relative;
    font-size: 2.5rem;
    border: 0;
    transition: .1s ease;
    width: 100%;
}

.menu-options .option .star-hover {
    width: 4rem;
    opacity: 0;
    position: absolute;
    top: -1rem;
    left: 8.5rem;
    transition: .1s ease;
}

.menu-options .option:nth-child(2) .star-hover {
    left:7.5rem;
}

.menu-options .option:nth-child(3) .star-hover, .menu-options .option:nth-child(4) .star-hover {
    left:6rem;
}

.menu-options .option:hover {
    color: #fdd201;
    transform: scale(1.1);
}

.menu-options .option:hover .star-hover {
    opacity: 1;
}

footer {
    position: absolute;
    bottom: 0;
    right: 0;
    padding-bottom: 1rem;
    padding-right: 1rem;
}

footer span {
    font-size: 1.5rem;
    font-weight: 500;
    color: rgb(196, 158, 227);
}

.dialog-overlay {
    z-index: 999;
    opacity: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    pointer-events: none;
    transition: .25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dialog-overlay.active {
    opacity: 1;
    pointer-events: auto;
    background-color: rgba(24, 5, 50, 0.674);
}

.dialog-box {
    position: relative;
    padding: 1.5rem 8rem;
    background: #2e1a5a;
  background-image: url("../assets/images/bg-3.png");
    background-size: 120%;
    background-repeat: no-repeat;
    background-position: -4rem top;
}

.quadradinhos-1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 1rem;
    background-image: url('../assets/images/quadradinhos.png');
    width: 10px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1000;
    height: 550px;
}

.quadradinhos-2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1rem;
    background-image: url('../assets/images/quadradinhos.png');
    width: 10px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1000;
    height: 550px;
}

.gatinho {
    bottom: 1.5rem;
    position: absolute;
    left: 2.5rem;

    background-image: url('../assets/images/rules/gatinho.png');
    width: 65px;
    height: 60px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.rules {
    display: flex;
    gap: 2rem;
    flex-direction: column;
}

.rules:not(.active), .credits:not(.active), .options:not(.active) {
    opacity: 0;
    display: none;
}

.credits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    border-radius: 1.5rem;
    max-width: 950px;
    min-width: 600px;
}

.credits .dialog-section-title {
    align-items: center;
    gap: 1rem;
    position: relative;
    background: url('../assets/images/options/background.png') center center no-repeat;
    background-size: contain;
    min-height: 60px;
    width: 450px;
    max-width: 100%;
    padding: 0.5rem 0;
    z-index: 1;
    border-radius: 0.7rem;
    color: #d0e8ff;
    text-shadow: 2px 2px 1px #b14dd0;
    text-align: center;
    display: flex;
    font-size: 2.5rem;
    margin: 0 auto 1rem auto;
    justify-content: center;
}

.credits .dialog-section-title img {
    height: 5rem;
    width: 5rem;
    min-width: 5rem;
    min-height: 5rem;
    object-fit: contain;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    filter: drop-shadow(1px 2px 0 #b14dd0);
}

.credits-devs-list {
    display: flex;
    flex-direction: row;
    gap: 3.5rem;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 1.5rem;
}

.credits-devs-list .dev {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #feedfe;
    text-shadow: 2px 2px 1px #b246c9;
    font-size: 2rem;
}

.credits-devs-list .dev-name {
    font-size: 2.1rem;
    font-weight: bold;
    letter-spacing: 0.1rem;
    color: #feedfe;
    text-shadow: 2px 2px 1px #b14dd0;
}

.credits-devs-list .dev-surname {
    font-size: 1.5rem;
    color: #feedfe;
    margin-top: 0.2rem;
    letter-spacing: 0.08rem;
}

.credits-advisor {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.advisor-name {
    color: #feedfe;
    font-size: 2.3rem;
    text-shadow: 2px 2px 1px #b246c9;
    margin-top: 0.5rem;
    text-align: center;
}

.credits-special-thanks {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.special-thanks-text {
    color: #feedfe;
    font-size: 2rem;
    text-shadow: 2px 2px 1px #b246c9;
    margin-top: 0.5rem;
    text-align: center;
    max-width: 700px;
}

.rules .dialog-section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: url('../assets/images/options/background.png') center center no-repeat;
    background-size: 550px;
    height: 40px;
}

.options .dialog-section-title {
    align-items: center;
    gap: 1rem;
    position: relative;
    background: url('../assets/images/options/background.png') center center no-repeat;
    background-size: contain;
    min-height: 60px;
    min-width: 450px;
    padding: 0.5rem 2.5rem;
    z-index: 1;
    border-radius: 0.7rem;
}

 .options .dialog-section-title img {
    height: 4.5rem;
    width: 4.5rem;
    min-width: 4.5rem;
    min-height: 4.5rem;
    object-fit: contain;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    filter: drop-shadow(1px 2px 0 #b14dd0);
}

.options {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    border-radius: 1.5rem;
    /* box-shadow: 0 0 1.5rem #b14dd0; */
    max-width: 950px;
    min-width: 800px;
    /* margin: 1.5rem auto 0 auto; */
    /* border: 3px solid #b14dd0; */
}

.options-music, .options-rounds, .options-fullscreen {
    background: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 0.3rem;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0.2rem;
}

.options-music-controls, .options-fullscreen-controls {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    margin-top: 0;
    font-size: 1.5rem;
    align-items: center;
    justify-content: center;
    margin-left: 0;
}

.options-music-controls label, .options-fullscreen-controls label {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #feedfe;
    font-size: 1.5rem;
    cursor: pointer;
}

.options-rounds-controls {    
    font-size: 1.6rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #feedfe;
    gap: 1rem;
}

.options-rounds-controls label {
    justify-content: center;
    width: 100%;
}

.options input[type="number"] {
    width: 3.5rem;
    font-size: 1.5rem;
    border-radius: 0.4rem;
    border: 1px solid #b14dd0;
    background: #2e1a5a;
    color: #feedfe;
    text-align: center;
    margin: 0 0.3rem;
    font-family: MortalKombat1Font;
}

.options input[type="checkbox"] {
    width: 1.5rem;
    height: 1.5rem;
    accent-color: #7be14c;
    margin-right: 0.3rem;
}

.checkbox-custom {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: MortalKombat1Font;
  color: white;
}

.checkbox-custom label {
  font-size: 2rem;
  margin-top: -0.3rem;
  text-shadow: 2px 2px 1px #d87add;
}

/* Hide the browser's default radio button */
.checkbox-custom input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: transparent;
  border: 4px solid white;
}

/* On mouse-over, add a grey background color */
.checkbox-custom:hover input ~ .checkmark {
  background-color: #cccccc6d;
}

/* When the radio button is checked, add a blue background */
/* .checkbox-custom input:checked ~ .checkmark {
  background-image: url('../assets/images/options/check.png');
} */

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.checkbox-custom input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.checkbox-custom .checkmark:after {
  top: -8px;
  left: -8px;
  background-size: cover; /* Adjusts image to cover the pseudo-element */
  background-position: center; /* Centers the image */
  background-repeat: no-repeat; /* Prevents image repetition */
  width: 36px;
  height: 36px;
  z-index: 10;
  background-image: url('../assets/images/options/check.png');
}

.checkbox-custom.off .checkmark::after {
  background-image: url('../assets/images/options/x.png');
}

.dialog-close {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    cursor: pointer;
    background: none;
    border: 0;
    transition: .2s ease;
}

.dialog-close img {
    width: 70%;
}

.dialog-close:hover {
    transform: scale(1.1);
}

.dialog-section-title {
    color: #d0e8ff;
    text-shadow: 2px 2px 1px #b14dd0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    gap: 1rem;
    font-size: 2.5rem;
}

.dialog-box p {
    color: #feedfe;
    text-shadow: 2px 2px 1px #b246c9;
    font-size: 1.8rem;
}

.dialog-box .highlight {
    color: #c9edfe;
}

.game-specs {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.rounds-specs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    align-items: center;
}

.rounds-specs p {
    width: 700px;
}

.tutorial {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 999999;
  animation: tutorial-show 1.5s 1 normal forwards;
}

@keyframes tutorial-show {
  0% {
    opacity: 0;
  }

  99% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.tutorial a {
  text-decoration: none;
  cursor: pointer;
  display: flex;
  transition: .2s ease;
  transform: scale(0.9);
}

.tutorial a:hover {
  transform: scale(1);
}