/* #region VARIABLES */

:root {
  /* 0 = hotspoty niewidoczne, 1 = hotspoty widoczne */
  --hotspot-debug: 0;

  --background-color: #151719;
  --canvas-color: #111111;
  --panel-color: #202428;
  --panel-light-color: #2c3135;

  --gold-color: #d5c68c;
  --gold-light-color: #e8dfc0;

  --text-color: #f5f1df;
  --button-top-color: #3f4a51;
  --button-bottom-color: #2e363b;
}

/* #endregion */

/* #region BASE */

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;

  margin: 0;
  padding: 0;

  

}

body {
  background: var(--background-color);
  color: var(--text-color);

  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  overflow-x: hidden;
  overflow-y: auto;
}

/* #endregion */

/* #region GAME CANVAS & LAYOUT */

#gameCanvas {
  position: relative;

  width: 100%;
  max-width: 500px;
  height: 100vh;
  height: 100dvh;

  margin: 0 auto;

  overflow: hidden;

  background: var(--canvas-color);
}

.gameLayout {
  display: none;

  width: 100%;
  height: 100%;
}

.gameLayout.active {
  display: block;
}

/* #endregion */


/* #region START SCREEN */

#startScreen.active {
  display: flex;
   flex-direction: column;;
  align-items: center;
  justify-content: center;

  padding:
    max(24px, env(safe-area-inset-top))
    max(24px, env(safe-area-inset-right))
    max(24px, env(safe-area-inset-bottom))
    max(24px, env(safe-area-inset-left));

  background:
    radial-gradient(
      circle at center,
      #25292d 0%,
      #111111 72%
    );
}

.startButtonArea {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: min(320px, 100%);
}

#startGameButton {
  max-width: 320px;
}

#startGameButton:disabled {
  opacity: 0.55;
  cursor: wait;
}

#gameLogo {
  width: min(90%, 600px);
  height: auto;
  display: block;
}

/* #endregion */

/* #region SCROLLBAR */

.gameScroll {
  scrollbar-width: thin;
  scrollbar-color:
    var(--gold-color)
    var(--panel-color);
}

.gameScroll::-webkit-scrollbar {
  width: 8px;
}

.gameScroll::-webkit-scrollbar-track {
  background: var(--panel-color);
}

.gameScroll::-webkit-scrollbar-thumb {
  background: var(--gold-color);

  border: 2px solid var(--panel-color);
  border-radius: 8px;
}

/* #endregion */

/* #region BUTTONS */

.gameButton {
  width: 100%;
  min-width: 0;

  padding: 16px 18px;

  text-wrap: balance;

  border: 2px solid var(--gold-color);
  border-radius: 8px;
  

  background:
    linear-gradient(
      180deg,
      #252b2f 0%,
      #1d2225 100%
    );

  box-shadow:
    0 3px 0 rgba(0, 0, 0, 0.5);

  color: #ffffff;

  font-family: inherit;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;

  text-align: center;
  text-transform: none;
  white-space: pre-line;

  cursor: pointer;

  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.gameButton:active {
  transform: translateY(2px);

  background:
    linear-gradient(
      180deg,
      #30383d 0%,
      #252b2f 100%
    );

  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.5);
}

/* #endregion */

/* #region ROOM LAYOUT */

#roomLayout.active {
  display: grid;

  grid-template-rows:
    minmax(0, 1fr)
    auto
    minmax(0, 1fr);
}

#topPanel,
#bottomPanel {
  min-width: 0;
  min-height: 0;
}

#top-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.status-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;

  min-height: 58px;
  padding: 10px 16px;

  border: 2px solid #b89448;
  background: #111;
}

.status-label {
  font-size: 26px;
  font-weight: 700;
}

.status-label.trust {
  color: #5fa8ff;
}

.status-label.energy {
  color: #8fcf45;
}

#trustValue {
  justify-self: stretch;
  min-width: 0;

  padding: 2px 18px;

  color: #f2f5f8;
  background: rgba(255, 255, 255, 0.025);

  border: none;
  border-radius: 0;
  box-shadow: none;

  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

#energyBar {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 4px;

  width: 100%;
  height: 34px;
}

.energy-tile {
  position: relative;

  min-width: 0;
  height: 100%;

  overflow: hidden;

  background: rgba(255, 255, 255, 0.06);
}

.energy-fill {
  position: absolute;
  inset: 0 auto 0 0;

  width: 100%;
  height: 100%;

  background: #8fcf45;
}

#trustPanel {
  width: fit-content;
  min-width: 180px;

  margin: 6px auto;
  padding: 8px 14px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  background:
    rgba(18, 21, 24, 0.94);

  border: 3px solid var(--gold-color);

  box-shadow: none;

  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
}

.trustLabel {
  color: var(--gold-color);
}


#sceneArea {
  position: relative;

  width: 100%;
  aspect-ratio: 1 / 1;

  min-width: 0;
  min-height: 0;

  overflow: hidden;
}

#stationImage {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

#phone {
  position: absolute;
  right: 14%;
  bottom: 12%;
  width: 47px;
  height: auto;

  image-rendering: pixelated;
  z-index: 20;

  transform-origin: center;
}

#phone.ringing {
  animation: phone-shake 0.12s infinite;
}

@keyframes phone-shake {
  0% {
    transform: rotate(-3deg) translateX(-2px);
  }

  50% {
    transform: rotate(3deg) translateX(2px);
  }

  100% {
    transform: rotate(-3deg) translateX(-2px);
  }
}

/* #endregion */

/* #region HOTSPOTS */

.hotspot {
  position: absolute;

  padding: 0;

  border:
    calc(var(--hotspot-debug) * 2px)
    solid red;

  background:
    rgba(
      255,
      0,
      0,
      calc(var(--hotspot-debug) * 0.3)
    );

  cursor: pointer;

  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

#interactionLayer {
  position: absolute;
  inset: 0;
  z-index: 30;
  pointer-events: none;
}

.roomInteraction {
  z-index: 30;
  pointer-events: auto;
}

/* #endregion */

/* #region CUTSCENE LAYOUT */

/*
  Przewija się cały ekran cutscenki:
  obraz, tekst oraz przyciski.
*/

#cutSceneLayout.active {
  display: block;

  width: 100%;
  height: 100%;

  overflow-x: hidden;
  overflow-y: auto;

  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

#cutSceneImageArea {
  width: 100%;


  overflow: hidden;

  background: var(--canvas-color);
}

#cutSceneImageArea[hidden] {
  display: none;
}

#cutSceneImage {
  display: block;

  width: 100%;
  height: 100%;

}

#cutSceneTextArea {
  width: 100%;
  min-height: 0;

  padding-top: 18px;
  padding-right:
    max(
      18px,
      env(safe-area-inset-right)
    );
  padding-bottom:
    calc(
      24px +
      env(safe-area-inset-bottom)
    );
  padding-left:
    max(
      18px,
      env(safe-area-inset-left)
    );

  overflow: visible;
}

#cutSceneText {
  margin: 0 0 22px;

  font-size: 21px;
  line-height: 1.45;

  white-space: pre-line;
}

#cutSceneButtonsArea {
  display: flex;
  flex-direction: column;
  gap: 12px;
}


#cutSceneButtonsArea.choiceLayout-grid-2x2 {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 12px;
}

.cutSceneButton {
  width: 100%;
}

.imageChoiceButton {
  display: flex;
  flex-direction: column;

  padding: 0;

  overflow: hidden;

  text-align: center;
}

.imageChoiceButton img {
  display: block;

  width: 100%;
  aspect-ratio: 1 / 1;

  object-fit: cover;
}

.imageChoiceButton span {
  display: block;

  padding: 10px 8px 12px;

  font-size: 16px;
  line-height: 1.25;
}

.imageChoiceButton span:empty {
  display: none;
}

/* #endregion */

/* #region TRANSITION OVERLAY */

#transitionOverlay {
  position: absolute;
  inset: 0;
  z-index: 1000;

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

  padding: 24px;

  background:
    radial-gradient(
      circle at center,
      #111 0%,
      #000 70%
    );

  opacity: 0;
  visibility: hidden;

  pointer-events: none;

  transition:
    opacity 1.8s ease,
    visibility 0s linear 1.8s;
}

#transitionOverlay.visible {
  opacity: 1;
  visibility: visible;

  transition:
    opacity 1.8s ease,
    visibility 0s;
}

#transitionText {
  color: #f5f1df;

  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;

  letter-spacing: 2px;
  text-transform: uppercase;

  opacity: 0;

  transform:
    scale(0.9)
    translateY(10px);

  text-shadow:
    0 0 12px rgba(213, 198, 140, 0.25),
    0 0 28px rgba(213, 198, 140, 0.12);

  transition:
    opacity 1.2s ease,
    transform 1.8s ease;
}

#transitionOverlay.showText #transitionText {
  opacity: 1;

  transform:
    scale(1)
    translateY(0);
}

/* #endregion */

#startScreen.gameLayout.active {
  position: absolute;
  inset: 0;
  z-index: 100;

  display: flex !important;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100%;

  padding: 24px;
}

#startGameButton {
  width: min(320px, 100%);
  margin: 0;
}


/* #region CASE HELP MODE BUTTONS */

#cutSceneButtonsArea.choiceLayout-case-help-modes {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.caseHelpModeButton {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 16px;

  min-height: 150px;
  padding: 16px;

  background:
    linear-gradient(
      180deg,
      #3b454b 0%,
      #293136 100%
    );
}

.caseHelpModeIcon {
  display: block;

  width: 92px;
  height: 92px;

  object-fit: contain;
  image-rendering: pixelated;
}

.caseHelpModeContent {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
}

.caseHelpModeTitle {
  display: block;

  color: #ffffff;

  font-size: clamp(21px, 6vw, 28px);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.caseHelpModeRemoteMeta,
.caseHelpModeDistance,
.caseHelpModeOneWayValues {
  display: block;

  color: var(--gold-light-color);

  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  white-space: pre-line;
}

.caseHelpModeRemoteMeta {
  margin-top: 14px;
}

.caseHelpModeDistance {
  margin-top: 10px;
  color: var(--gold-color);
  font-size: 21px;
}

.caseHelpModeOneWayBox {
  position: relative;

  display: block;

  margin-top: 22px;
  padding: 22px 12px 12px;

  border: 2px solid rgba(213, 198, 140, 0.72);
  border-radius: 6px;

  background: rgba(0, 0, 0, 0.18);
}

.caseHelpModeOneWayLabel {
  position: absolute;
  top: 0;
  left: 50%;

  display: block;

  min-width: 72%;
  padding: 4px 10px;

  border: 2px solid var(--gold-color);
  border-radius: 5px;

  background: #242a2e;
  color: var(--gold-light-color);

  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.7px;
  text-align: center;
  white-space: nowrap;

  transform: translate(-50%, -50%);
}

.caseHelpModeOneWayValues {
  font-size: 18px;
}

.caseHelpModeButton:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

@media (max-width: 360px) {
  .caseHelpModeButton {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .caseHelpModeIcon {
    width: 76px;
    height: 76px;
  }

  .caseHelpModeOneWayLabel {
    min-width: 86%;
    font-size: 12px;
  }
}

/* #endregion */

/* #region CASE SUMMARY */

#caseSummaryLayout.active {
  display: block;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 18px;
  background: radial-gradient(circle at top, #20262b 0%, #111 72%);
}

#caseSummaryCard {
  width: 100%;
  min-height: calc(100% - 2px);
  overflow: hidden;
  border: 3px solid var(--gold-color);
  border-radius: 12px;
  background: linear-gradient(180deg, #111920 0%, #0c1115 100%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.caseSummaryHeader {
  padding: 24px 22px 20px;
  text-align: center;
  border-bottom: 2px solid rgba(213, 198, 140, 0.45);
}

#caseSummaryTitle {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(30px, 8vw, 42px);
  line-height: 1.05;
}

#caseSummaryHelpMode {
  color: var(--gold-color);
  font-size: clamp(20px, 5.3vw, 27px);
  font-weight: 800;
  letter-spacing: 1px;
}

.caseSummaryMain {
  padding: 0 20px 20px;
}

.caseSummaryBlock {
  margin-top: 16px;
  padding: 20px 16px;
  text-align: center;
  border: 1px solid rgba(213, 198, 140, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.caseSummaryBlock + .caseSummaryBlock {
  margin-top: 12px;
}

.caseSummaryAssessment,
.caseSummaryEffect {
  margin-bottom: 10px;
  font-size: clamp(25px, 6.8vw, 35px);
  font-weight: 900;
  line-height: 1.1;
}

.caseSummaryAssessment.correct,
.caseSummaryEffect.success {
  color: #8fcf45;
}

.caseSummaryAssessment.incorrect,
.caseSummaryEffect.failure {
  color: #e26767;
}

.caseSummaryAdvice {
  color: #fff;
  font-size: clamp(22px, 5.8vw, 31px);
  font-weight: 800;
  line-height: 1.2;
}

.caseSummaryResultSummary {
  color: #fff;
  font-size: clamp(20px, 5.2vw, 27px);
  line-height: 1.25;
}

.caseSummaryTrustValue {
  padding: 28px 0 24px;
  color: #f5f1df;
  font-size: clamp(32px, 8.5vw, 44px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.caseSummaryTrustValue.positive { color: #8fcf45; }
.caseSummaryTrustValue.negative { color: #e26767; }

.caseSummaryDetailsButton,
.caseSummaryReturnButton {
  margin-top: 8px;
  font-size: 22px;
}

.caseSummaryReturnButton {
  margin-top: 14px;
}

.caseSummaryDetails {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(213, 198, 140, 0.35);
  background: rgba(255, 255, 255, 0.025);
}

.caseSummaryDetails[hidden] {
  display: none;
}

.caseSummaryDetails p {
  margin: 0 0 16px;
  font-size: 19px;
  line-height: 1.5;
}

.caseSummaryDetails p:last-child {
  margin-bottom: 0;
}

.caseSummaryTotalSentence {
  padding-top: 16px;
  border-top: 1px solid rgba(213, 198, 140, 0.28);
  color: var(--gold-light-color);
  font-weight: 800;
}


/* #endregion */

#caseSummaryOutcomeSentence { white-space: pre-line; }


/* #region SLEEP */

.sleepMenuTitle {
  margin-bottom: 18px !important;
  font-size: clamp(30px, 8vw, 42px) !important;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.sleepChoiceGrid {
  align-items: stretch;
}

.sleepChoiceButton {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 12px;
}

.sleepChoiceTitle {
  display: block;
  font-size: clamp(18px, 5vw, 23px);
  font-weight: 900;
  line-height: 1.18;
  white-space: pre-line;
}

.sleepChoiceGain {
  display: block;
  color: #8fcf45;
  font-size: clamp(18px, 5vw, 24px);
  font-weight: 900;
  line-height: 1.2;
  white-space: pre-line;
}

.phoneOnSleepChoice .sleepChoiceGain {
  color: var(--gold-light-color);
}

.sleepCancelButton {
  justify-content: center;
  color: #d1d1d1;
  background: linear-gradient(180deg, #303438 0%, #25282b 100%);
}

.sleepSummaryText {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 22px !important;
  text-align: center;
}

.sleepSummaryHeading,
.sleepSummaryDuration,
.sleepSummaryEnergy,
.sleepSummaryTrust {
  display: block;
}

.sleepSummaryHeading {
  color: var(--gold-light-color);
  font-size: clamp(24px, 6.5vw, 34px);
  font-weight: 900;
  line-height: 1.15;
}

.sleepSummaryDuration {
  color: #fff;
  font-size: clamp(25px, 6.8vw, 36px);
  font-weight: 900;
  line-height: 1.15;
}

.sleepSummaryEnergy {
  color: #8fcf45;
  font-size: clamp(30px, 8vw, 42px);
  font-weight: 900;
  line-height: 1;
}

.sleepSummaryTrust {
  color: #e26767;
  font-size: clamp(26px, 7vw, 36px);
  font-weight: 900;
  line-height: 1;
}

@media (max-width: 360px) {
  .sleepChoiceButton {
    min-height: 160px;
    padding: 15px 10px;
  }
}

.sleepSummaryActions {
  gap: 12px;
}

.sleepSummaryDetails {
  padding: 18px;
  border: 1px solid rgba(213, 198, 140, 0.35);
  background: rgba(255, 255, 255, 0.025);
  font-size: 19px;
  line-height: 1.5;
}

.sleepSummaryDetails[hidden] {
  display: none;
}

.sleepSummaryDetailsButton {
  margin-top: 0;
}

/* #endregion */

/* #region CASE UI REFINEMENTS */

#gameAnchor {
  width: 1px;
  height: 12px;
  pointer-events: none;
}

#cutSceneLayout.caseLayout #cutSceneImageArea {
  height: min(32dvh, 250px);
}

#cutSceneLayout.caseLayout #cutSceneImage {
  object-fit: cover;
}

#cutSceneLayout.caseLayout #cutSceneTextArea {
  padding-top: 14px;
}

#cutSceneLayout.caseLayout #cutSceneText {
  margin-bottom: 16px;
  font-size: clamp(24px, 6.4vw, 31px);
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

#cutSceneLayout.caseLayout .cutSceneButton {
  font-size: clamp(20px, 5.4vw, 25px);
}

.caseHelpModeRemoteMeta,
.caseHelpModeOneWayValues {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.caseMetaTime {
  display: block;
  color: #6fb6ff;
}

.caseMetaEnergy {
  display: block;
  color: #8fcf45;
}

.caseSummaryAssessment.partial {
  color: #e3bd4f;
}

.caseSummaryAdvice {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: clamp(18px, 4.8vw, 25px);
}

.caseSummaryAdviceLine {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.caseSummaryAdviceLabel {
  font-weight: 800;
}

.caseSummaryAdviceLine.correct .caseSummaryAdviceLabel {
  color: #8fcf45;
}

.caseSummaryAdviceLine.incorrect .caseSummaryAdviceLabel {
  color: #e26767;
}

.caseSummaryAdviceText {
  color: #ffffff;
  font-weight: 400;
}

.caseSummaryTrustValue,
.caseSummaryTrustValue.positive,
.caseSummaryTrustValue.negative {
  color: #5fa8ff;
}

.secondaryDetailsButton {
  position: relative;
  width: 100%;
  min-width: 0;
  padding: 11px 46px;
  border-width: 2px;
  border-color: rgba(213, 198, 140, 0.82);
  background:
    linear-gradient(
      180deg,
      #30373c 0%,
      #252b2f 100%
    );
  box-shadow:
    0 2px 0 rgba(0, 0, 0, 0.45);
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
}

.secondaryDetailsButton::after {
  position: absolute;
  top: 50%;
  right: 18px;
  content: "▼";
  margin: 0;
  font-size: 20px;
  line-height: 1;
  transform: translateY(-50%);
}

.secondaryDetailsButton[aria-expanded="true"]::after {
  content: "▲";
}

.caseSummaryDetailsButton {
  margin-right: 0;
  margin-left: 0;
}

.caseSummaryReturnButton {
  font-size: 23px;
  font-weight: 800;
}

/* #endregion */

/* #region SLEEP OVERLAY */

#sleepOverlay {
  position: absolute;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(18px, env(safe-area-inset-top)) 18px max(18px, env(safe-area-inset-bottom));
  background: rgba(0, 0, 0, 0.82);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 0s linear 180ms;
}

#sleepOverlay.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 180ms ease, visibility 0s;
}

#sleepPanel {
  width: min(440px, 100%);
  max-height: 100%;
  overflow-y: auto;
  padding: 20px;
  border: 2px solid var(--gold-color);
  border-radius: 12px;
  background: linear-gradient(180deg, #20272c 0%, #11171b 100%);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.65);
}

#sleepPanelTitle {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(30px, 8vw, 42px);
  line-height: 1;
  text-align: center;
}

#sleepButtonsArea.sleepChoiceGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

#sleepButtonsArea .sleepCancelButton {
  min-height: 180px;
}

#roomLayout.sleep-open #interactionLayer {
  pointer-events: none;
}

@media (max-width: 360px) {
  #sleepPanel {
    padding: 15px;
  }

  #sleepButtonsArea.sleepChoiceGrid {
    gap: 9px;
  }
}

/* #endregion */

/* #region DEMO END SCREEN */

#demoEndLayout.active {
  display: block;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--canvas-color);
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

#demoEndImageArea {
  width: 100%;
  max-height: 55dvh;
  overflow: hidden;
  background: var(--canvas-color);
}

#demoEndImage {
  display: block;
  width: 100%;
  height: auto;
  max-height: 55dvh;
  object-fit: cover;
}

#demoEndContent {
  padding:
    22px
    max(18px, env(safe-area-inset-right))
    calc(26px + env(safe-area-inset-bottom))
    max(18px, env(safe-area-inset-left));
}

#demoEndText {
  margin: 0 0 24px;
  color: var(--text-color);
  font-size: clamp(21px, 5.6vw, 27px);
  line-height: 1.45;
  white-space: pre-line;
}

#demoEndButton {
  font-size: 22px;
  font-weight: 800;
}

/* #endregion */
