  body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
    transition: background-color 0.6s ease;
  }
  button {
    font-family: 'Source Code Pro';
    color: inherit;
    -webkit-text-fill-color: currentColor;
  }

  .container {
    max-width: 100%;
    }

  .page-title {
    text-align: center;
    font-size: 1.5rem;
    margin: 20px 10px 10px;
    font-weight: 600;
  }

  .navButtons {
      text-decoration: none;
      position: sticky;
      top: 10px;
      padding-top: 10px;
      display: flex;
      justify-content: center;
      gap: 10px;
      z-index: 100;
  }
  
  .navButtons button {
    padding: 8px 16px;
    border: 1px solid #333;
    background: white;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
  }
  
  .navButtons button:hover {
    background: #f0f0f0;
  }
  
  .navButtons button.active {
    background: #333;
    color: white;
    border-color: #333;
  }

  .firstRow {
    min-height: 100px;
  }

.introDiv {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.introImgWrapper {
  position: relative;
  width: 500px;
  min-width: 500px;
  /* max-width: 100%; */
}

.introImg {
  padding-top: 10px;
  width: 100%;
  height: auto;
  display: block;
}

.introDiv .pathTarget {
  position: absolute;
  left: 27.8%;
  bottom: -5%;  
  height: 50px;
  width: 50px;
  /* background-color: red; */
}

  .titleText {
    display: flex; 
    justify-content: space-between;
    margin: 20px;
    flex-direction: column;
    align-items: center;
  }
  .titleText h2 {
    font-weight: 250;
    margin: 0;
    text-align: center;
  }
  .titleText h4 {
    font-weight: 100;
    margin: 0;
    text-align: center;
  }
  .flexCol { 
    display: flex; 
    flex-direction: column;
    position: relative;
  }
  .flexRow { 
    display: flex; 
    justify-content: space-around;
    align-items: center;
    position: relative;
  }
  .photoBox { 
    display: block;
    height: 100%;
    padding: 30px;
    max-width: 400px;
  }
  .normalSquare{
    width: 100%;
    max-height: 200px;
  }
  .reviewText{
    font-size: 16px;
  }
  .entryName {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    flex: 1;
  }
  .entryLink {
    display: block;
    cursor: pointer;
    text-decoration: none;
  }

  .entryLink:hover {
    text-decoration: none;
  }

  .entryLink:hover .entryName,
  .entryLink:hover .reviewText {
    text-decoration: none;
  }

  .clickPrompt {
    font-size: 12px;
    color: #666;
    margin-top: 8px;
    font-style: italic;
    text-decoration: none;
    transition: text-decoration 0.2s ease;
  }

  .entryLink:hover .clickPrompt {
    text-decoration: underline;
    cursor: pointer;
  }
  .moonTower {
    max-width: 25px;
  }
  .beer{
    max-width: 75px;
  }
  .cigarettes{
    max-width: 50px;
  }

  .restaurantSign{
    max-width: 400px;
    padding: 20px;
    margin: 40px auto;
  }

  .barSign,
  .itinerarySign {
    padding: 20px;
    max-width: 400px;
    margin: 40px auto;
}

  .armadillo{
    align-self: flex-end;
    margin-bottom: 25px;
    max-width: 100px;
  }
  .pathTarget { 
    display: block;
    /* background-color: red; */
    min-height: 100px;
    min-width: 100px;
  }

  .emptyDiv { 
    display: block;
    height: 100px;
    width: 200px;
  }
  
  #pathSvg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .roadEdge {
    fill: none;
    stroke: black;
  }
  #windingPath {
    fill: none;
    stroke: white;
    stroke-width: 3;
    stroke-dasharray: 15, 10;
    opacity: 0.9;
    stroke-linecap: round;
  }
  
  .barsSection .roadEdge {
    stroke: white;
  }

  .barsSection .clickPrompt {
    color: white;
  }

  .barsSection .reviewText{
    color: white;
  } 

  .barsSection .entryName{
    color: white;
  } 
  
  #walker, #walker2 {
    width: 100px;
    height: 100px;
    position: absolute;
    will-change: transform;
  }

  #walkerWrapper {
    position: absolute;
    width: 100px;
    height: 100px;
    z-index: 20;
    transform-origin: center;
  }

  #walker.spin {
    animation: walkerSpin 0.8s linear;
  }

  .hidden {
    display: none !important;
  } 

  #loadingOverlay {
  position: fixed;
  top:0; left:0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#loadingWalkerWrapper {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

#loadingWalker {
  width: 100%;
  height: 100%;
  animation: walkerSpin 1s linear infinite;
}

#loadingText {
  font-family: 'Source Code Pro', monospace;
  font-size: 16px;
  color: #333;
}

  @keyframes walkerSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
  
.detail-panel {
    position: fixed;
    top: 0;
    width: 100vw;
    max-width: 600px;
    height: 100dvh;
    background: white;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    transition: left 0.6s ease-out, right 0.6s ease-out;
    overflow-y: auto;
    z-index: 1000;
    padding: 24px;
    box-sizing: border-box;
}

  /* Left side panel */
  .detail-panel.panel-left {
    left: -150%;
    right: auto;
  }

  .detail-panel.panel-left.open {
    left: 0;
  }

  /* Right side panel */
  .detail-panel.panel-right {
    right: -150%;
    left: auto;
  }

  .detail-panel.panel-right.open {
    right: 0;
  }

  .itineraryContainer {
  width: 100%;
  max-width: 800px;
  padding-right: 100px; /* Leave space for the path on the right */
}

.itineraryEntry {
  margin-bottom: 40px;
  position: relative;
}

.itineraryEntry h3 {
  margin-bottom: 10px;
}

.itineraryEntry .pathTarget {
  position: absolute;
  right: -80px;
  top: 20px;
}

.itinImage {
  display: block;
  width: clamp(220px, 70%, 420px);
  margin: 16px auto 0;
  border: 5px solid #000;
}

.contributorText {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.contributorText h2 {
  font-weight: 250;
  margin: 0 0 20px 0;
}

.contributorText h5 {
  font-weight: 100;
  margin: 5px 0;
}

#walker.atEnd {
  animation: celebrateBounce 1s ease-in-out infinite;
}

@keyframes celebrateBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  25% { transform: translateY(-15px) scale(1.1) rotate(-5deg); }
  50% { transform: translateY(0) scale(0.95) rotate(0deg); }
  75% { transform: translateY(-10px) scale(1.05) rotate(5deg); }
}

.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #202020;
  animation: confettiFall 3s linear infinite;
  opacity: 0;
  pointer-events: none;
}

@keyframes confettiFall {
  0% { 
    transform: rotate(0deg);
    opacity: 1;
  }
  100% { 
    transform: translateY(300px) rotate(720deg);
    opacity: 0;
  }
}

.section-marker{
  height: 1px;
  width: 1px;
}

.bonusContent {
  margin-top: 40px;
  padding: 30px;
  border: 2px dashed #333;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 100%;
  box-sizing: border-box;
}

.bonusTitle {
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bonusButtons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.download-btn, .podcast-btn, .store-btn {
  padding: 12px 24px;
  background: black;
  color: white;
  border: 2px solid black;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  border-radius: 4px;
  white-space: nowrap;
}

.download-btn:hover, .podcast-btn:hover, .store-btn:hover {
  background: white;
  color: black;
}

.confetti:nth-child(2n) { background: #d2d2d2; animation-delay: 0.3s; }
.confetti:nth-child(3n) { background: #c6c6c6; animation-delay: 0.6s; }
.confetti:nth-child(4n) { background: #ececec; animation-delay: 0.9s; }
.confetti:nth-child(5n) { background: #f7f7f7; animation-delay: 1.2s; }
.confetti:nth-child(6n) { animation-duration: 2.5s; }
.confetti:nth-child(7n) { animation-duration: 3.5s; }

  @media only screen and (max-width: 767px) {
  .flexRow{
    justify-content: space-between;
  }
  .firstRow {
    min-height: 100px;
  }
  .titleText h2 {
    font-size: 12px;
  }
  .titleText h4 {
    font-size: 8px;
  }
  .entryName {
    font-weight:bolder;
    font-size: 10px;
  }
  .clickPrompt {
    font-size: 8px;
    margin-top: 4px;
  }
  .normalSquare{
    max-height: 150px;
  }
  .photoBox { 
    max-width: 150px;
  }
  .reviewText{
    font-size: 8px;
  }
  .itinText{
    font-size:12px;
  }
  .armadillo{
    max-width: 60px;
  }
  .moonTower {
    max-width: 20px;
  }
  .beer{
    max-width: 60px;
  }
  .cigarettes {
    max-width: 40px;
  }
  .barSign,
  .itinerarySign {
    max-width: 200px;
  }
}