html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #0b0c10;
}

* {
  box-sizing: border-box;
}

.hidden {
  display: none !important;
}

#screen-intro {
  width: 100vw;
  height: 100vh;
  background-image: url("/assets/images/intro-bg.png");
  background-color: #0b0c10;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
@media (max-width: 1200px) {
  #screen-intro {
    overflow-y: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    justify-content: safe center;
  }
}

.intro h1 {
  font-family: "Orbitron", sans-serif;
  color: #FFFFFF;
  font-size: 4rem;
  text-align: center;
  margin: 1rem 0;
}
.intro h3 {
  font-family: "Orbitron", sans-serif;
  color: #FFFFFF;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
  text-align: center;
}
.intro__planet {
  width: 15rem;
  height: auto;
}
.intro__options {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  width: 100%;
  max-width: 55rem;
}
@media (max-width: 768px) {
  .intro__options {
    flex-direction: column;
    gap: 1.5rem;
  }
}

#screen-game {
  width: 100vw;
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)), url("/assets/images/game-bg.png");
  background-color: #0b0c10;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 3rem;
}
@media (max-width: 1200px) {
  #screen-game {
    overflow-y: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    justify-content: safe center;
  }
}

.game {
  color: #FFFFFF;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 1200px) {
  .game {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
.game__oracleSection {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.game__oracleSection h2 {
  font-family: "Orbitron", sans-serif;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
  font-size: 3rem;
  margin: 0;
}
.game__avatar {
  width: 24rem;
  height: auto;
  border-radius: 50%;
  border: 3px solid #5BE3F4;
  box-shadow: #5BF468 0px 8px 16px, #A6F1FA 0px 8px 24px, #071C24 0px 24px 50px;
  filter: brightness(1) contrast(1) blur(0px);
  transition: filter 0.15s ease-out, opacity 0.15s ease-out;
}
.game__avatar.avatar-changing {
  opacity: 0.4;
  filter: brightness(1.8) contrast(1.5) hue-rotate(90deg) blur(4px);
}
.game__avatar:hover {
  box-shadow: #A6F1FA 0px 8px 16px, #5BF468 0px 8px 24px, #071C24 0px 24px 80px;
}

#screen-end {
  width: 100vw;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 3rem;
}
#screen-end.victory {
  --bg-image: url('/assets/images/victory-bg.webp');
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)), var(--bg-image);
}
#screen-end.defeat {
  --bg-image: url('/assets/images/defeat-bg.webp');
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)), var(--bg-image);
}
@media (max-width: 1200px) {
  #screen-end {
    overflow-y: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    justify-content: safe center;
  }
}

.end {
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.end__title {
  font-family: "Orbitron", sans-serif;
  font-size: 3.5rem;
  text-shadow: 0 0 8px #FFD04B;
  margin: 1rem 0;
}
.end__subtitle {
  font-family: "Barlow Condensed", sans-serif;
  text-align: center;
  font-size: 1.2rem;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
  margin: 0;
}

.intro__preamble {
  background: rgba(11, 12, 16, 0.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(102, 252, 241, 0.25);
  border-left: 4px solid #5BE3F4;
  border-radius: 4px;
  width: 100%;
  max-width: 45rem;
  padding: 1rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: left;
  font-family: "Inter", sans-serif;
  color: #FFFFFF;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(102, 252, 241, 0.05);
}
.intro__preamble h2 {
  font-family: "Orbitron", sans-serif;
  color: #5BE3F4;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(102, 252, 241, 0.4);
  margin-top: 0;
}
.intro__preamble p {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
}
.intro__preamble p strong {
  color: #f5a623;
  text-shadow: 0 0 8px rgba(245, 166, 35, 0.2);
}

.intro__button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: rgba(11, 12, 16, 0.7);
  border: none;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  width: 24rem;
  max-width: 90vw;
  position: relative;
  transition: all 0.3s ease;
  clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
}
.intro__button p {
  font-family: "Orbitron", sans-serif;
  color: #FFFFFF;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  line-height: 1.3;
}
.intro__button p span {
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: none;
}
.intro__button img {
  width: 10rem;
  height: auto;
  object-fit: contain;
  margin: 0;
  filter: drop-shadow(0 0 5px currentColor);
}
.intro__button--sun {
  color: #5BE3F4;
  border-left: 3px solid #5BE3F4;
  border-bottom: 3px solid #5BE3F4;
  box-shadow: inset 0 0 15px #A6F1FA, 0 0 10px #A6F1FA;
}
.intro__button--sun::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: 1px solid #A6F1FA;
  pointer-events: none;
  clip-path: inherit;
}
.intro__button--sun p span {
  color: #5BE3F4;
}
.intro__button--sun:hover {
  background: rgba(102, 252, 241, 0.15);
  box-shadow: inset 0 0 20px rgba(102, 252, 241, 0.3), 0 0 20px rgba(102, 252, 241, 0.4);
  transform: translateY(-2px);
}
.intro__button--moon {
  color: #FFD04B;
  border-right: 3px solid #FFD04B;
  border-top: 3px solid #FFD04B;
  box-shadow: inset 0 0 15px #FFE699, 0 0 10px #FFE699;
}
.intro__button--moon::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: 1px solid #FFE699;
  pointer-events: none;
  clip-path: inherit;
}
.intro__button--moon p span {
  color: #FFD04B;
}
.intro__button--moon:hover {
  background: rgba(245, 166, 35, 0.15);
  box-shadow: inset 0 0 20px rgba(245, 166, 35, 0.3), 0 0 20px rgba(245, 166, 35, 0.4);
  transform: translateY(-2px);
}

.end__button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: rgba(11, 12, 16, 0.7);
  border: none;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  width: 24rem;
  max-width: 90vw;
  position: relative;
  transition: all 0.3s ease;
  clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
}
.end__button p {
  font-family: "Orbitron", sans-serif;
  color: #FFFFFF;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 1rem;
  line-height: 1.3;
}
.end__button--victory {
  color: #FFD04B;
  border-right: 3px solid #FFD04B;
  border-top: 3px solid #FFD04B;
  box-shadow: inset 0 0 15px #FFE699, 0 0 10px #FFE699;
}
.end__button--victory::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: 1px solid #FFE699;
  pointer-events: none;
  clip-path: inherit;
}
.end__button--victory:hover {
  background: rgba(245, 166, 35, 0.15);
  box-shadow: inset 0 0 20px rgba(245, 166, 35, 0.3), 0 0 20px rgba(245, 166, 35, 0.4);
  transform: translateY(-2px);
}
.end__button--defeat {
  color: #F22D02;
  border-left: 3px solid #F22D02;
  border-bottom: 3px solid #F22D02;
  box-shadow: inset 0 0 15px #FF664A, 0 0 10px #FF664A;
}
.end__button--defeat::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: 1px solid #FF664A;
  pointer-events: none;
  clip-path: inherit;
}
.end__button--defeat p span {
  color: #F22D02;
}
.end__button--defeat:hover {
  background: rgba(242, 45, 2, 0.15);
  box-shadow: inset 0 0 20px rgba(242, 45, 2, 0.3), 0 0 20px rgba(242, 45, 2, 0.4);
  transform: translateY(-2px);
}

.game__chat {
  margin-top: 1rem;
  font-family: "Barlow Condensed", sans-serif;
  width: 32rem;
  height: 14rem;
  padding: 15px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid #5BF468;
  border-radius: 4px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(102, 252, 241, 0.3) rgba(0, 0, 0, 0.2);
}
.game__chat::-webkit-scrollbar {
  width: 6px;
}
.game__chat::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}
.game__chat::-webkit-scrollbar-thumb {
  background: rgba(102, 252, 241, 0.3);
  border-radius: 3px;
}
.game__chat::-webkit-scrollbar-thumb:hover {
  background: rgba(102, 252, 241, 0.6);
}
.game__message {
  margin: 1rem 0;
}
.game__message h4 {
  margin: 0;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.game__message p {
  font-size: 1.1rem;
  margin: 0;
}
.game__message--oracle {
  padding: 10px;
  align-self: flex-start;
  background: rgba(102, 252, 241, 0.05);
  border-left: 3px solid #5BE3F4;
}
.game__message--oracle h4 {
  color: #5BE3F4;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}
.game__message--player {
  padding: 10px;
  align-self: flex-end;
  background: rgba(252, 163, 77, 0.05);
  border-right: 3px solid #FFD04B;
  text-align: right;
}
.game__message--player h4 {
  color: #FFD04B;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.game__panelSection {
  position: relative;
  width: 100%;
  max-width: 550px;
  background: rgba(6, 10, 18, 0.85);
  padding: 1.5rem;
  border: 1px solid rgba(102, 252, 241, 0.25);
  border-radius: 4px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6), inset 0 0 10px rgba(102, 252, 241, 0.3);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: "Inter", sans-serif;
}
.game__panelSection::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 15px;
  height: 15px;
  border-top: 2px solid rgba(102, 252, 241, 0.8);
  border-left: 2px solid rgba(102, 252, 241, 0.8);
  border-top-left-radius: 4px;
  pointer-events: none;
}
.game__panelSection::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 15px;
  height: 15px;
  border-bottom: 2px solid rgba(102, 252, 241, 0.8);
  border-right: 2px solid rgba(102, 252, 241, 0.8);
  border-bottom-right-radius: 4px;
  pointer-events: none;
}

.planetary-indicator {
  width: 100%;
  max-width: 450px;
  margin: 1rem auto;
  font-family: "Inter", sans-serif;
}
.planetary-indicator__title {
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-align: center;
  margin: 0.2rem 0;
}
.planetary-indicator__track-wrapper {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.planetary-indicator__track-wrapper .icon {
  font-size: 1.2rem;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.4));
}
.planetary-indicator__track {
  position: relative;
  flex-grow: 1;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  background: linear-gradient(to right, #d64513 0%, #ffffff 50%, #177094 100%);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.6);
}
.planetary-indicator__pointer {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 24px;
  background-color: #ffffff;
  border-radius: 2px;
  box-shadow: 0 0 8px #ffffff, 0 0 15px #66fcf1, 0 0 25px #66fcf1;
  transition: left 0.3s ease-out;
}
.planetary-indicator__labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.6rem;
  padding: 0 1.5rem;
}
.planetary-indicator__labels .label {
  font-size: 0.75rem;
  line-height: 1.2;
  text-align: center;
}
.planetary-indicator__labels .label--north {
  color: #fca34d;
}
.planetary-indicator__labels .label--center {
  color: #ffffff;
  font-weight: bold;
}
.planetary-indicator__labels .label--south {
  color: #66fcf1;
}

.cycles h3 {
  font-size: 1.3rem;
  margin: 0;
}
.cycles span {
  font-size: 5em;
  font-family: "Orbitron", sans-serif;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.turing-meter {
  width: 100%;
  margin: 0.5rem 0;
  font-family: "Inter", sans-serif;
}
.turing-meter__title {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}
.turing-meter__container {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.turing-meter__track {
  flex-grow: 1;
  height: 16px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(252, 163, 77, 0.3);
  border-radius: 3px;
  padding: 2px;
  overflow: hidden;
}
.turing-meter__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, #fca34d, #f57c00);
  border-radius: 1px;
  box-shadow: 0 0 8px rgba(252, 163, 77, 0.6), 0 0 15px rgba(252, 163, 77, 0.3);
  transition: width 0.4s ease-out;
}
.turing-meter__percentage {
  font-family: "Orbitron", sans-serif, monospace;
  font-size: 1.2rem;
  font-weight: bold;
  min-width: 55px;
  text-align: right;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}
.turing-meter__subtitle {
  display: block;
  opacity: 0.8;
  font-size: 0.9rem;
  margin-top: 0.4rem;
  letter-spacing: 0.5px;
}

.connection-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 1rem 0;
  font-family: "Inter", sans-serif;
}
.connection-status__label {
  font-size: 0.95rem;
}
.connection-status__value {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Orbitron", sans-serif, monospace;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}
.connection-status__icon {
  width: 22px;
  height: 22px;
  transform: rotate(45deg);
}
.connection-status--unstable .connection-status__value {
  color: #fca34d;
}

.hemisphere {
  font-family: "Inter", sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 1rem 0 0.5rem 0;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.hemisphere__text {
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0;
}
.hemisphere__icon {
  font-size: 1.1rem;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.game__controls {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-top: 1rem;
}
.game__input-wrapper {
  position: relative;
  width: 100%;
}
.game__input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  color: #FFFFFF;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}
.game__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}
.game__input:focus {
  border-color: rgba(102, 252, 241, 0.6);
  box-shadow: 0 0 10px rgba(102, 252, 241, 0.2);
  background: rgba(11, 12, 16, 0.9);
}
.game__btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.2), rgba(107, 33, 168, 0.4));
  border: 1px solid rgba(147, 51, 234, 0.6);
  border-radius: 6px;
  color: #FFFFFF;
  font-family: "Orbitron", sans-serif, monospace;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 2px;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(147, 51, 234, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.game__btn-submit .game__btn-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}
.game__btn-submit:hover {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.4), rgba(107, 33, 168, 0.6));
  border-color: rgba(168, 85, 247, 0.9);
  box-shadow: 0 0 20px rgba(147, 51, 234, 0.6);
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}
.game__btn-submit:hover .game__btn-icon {
  transform: scale(1.2);
}
.game__btn-submit:active {
  transform: scale(0.98);
  box-shadow: 0 0 8px rgba(147, 51, 234, 0.4);
}

#submitBtn:disabled,
.game__btn-submit:disabled {
  opacity: 0.4 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  box-shadow: none !important;
  filter: grayscale(1) !important;
}

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