body {
  margin: 0;
  font-family: monospace, Arial, sans-serif;
  background-color: #000;
  color: white;
}

#main-header {
  text-align: center;
  margin-top: 20px;
}

#intro-text {
  text-align: center;
  margin-bottom: 10px;
}

#map {
  width: 100vw;
  height: 90vh;
  background-color: #444;
  display: flex;
  align-items: center;
  justify-content: center;
}

#language-switcher {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1000;
}

#stone-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 1001;
  cursor: pointer;
}

#stone {
  position: relative;
  width: 320px;
  height: 320px;
  background-image: url('https://i.imgur.com/OnMITkL.png');
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  box-shadow: inset 0 0 15px rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

#stone-text {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: 88%;
  font-family: 'Unica One', Arial Black, Arial, sans-serif;
  font-weight: 900;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #1f1f1f;
  text-shadow:
    1.5px 1.5px 0 #c1bebe,
    -1.5px -1.5px 0 #5e5a5a;
  white-space: pre-line;
  text-align: center;
  padding-left: 6%;
  padding-right: 6%;
  z-index: 10;
}

#stone-text b {
  display: block;
  font-size: 32px;
  margin-bottom: 6px;
}

#stone-text i {
  font-style: italic;
  font-weight: normal;
  font-size: 18px;
  color: #555555;
}
