@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&display=block');


*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


body {
  font-family: 'JetBrains Mono', monospace;
  color: #f5f5f5;
  background: #080808;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  
}


.title-main {
  margin-top: 0;
  background: linear-gradient(90deg, #fe2712, #8a0e0e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.neon-text {
  color: #ffffff;
  text-shadow: 0 0 15px #ffffff;
  font-weight: bold;
}

.gradient-text {
  background: linear-gradient(90deg, #55ff7f, #ffff7f, #ff557f, #aa55ff, #e67e22, #d35400);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.level-text {
  font-size: 18px;
  color: #e6e6e6;
  line-height: 1.6;
  margin-top: 0;
  white-space: pre-line;
}

/* ─── Layout helpers ─────────────────────────────────────── */

.container {
  text-align: center;
  max-width: 900px;
  position: relative; z-index: 2;
}

.container-mainscreen {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  text-align: center;
  border-radius: 10px;
}

.button-container {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 8px white;
}

.status-text   { color: #55ff7f; }
.status-normal { color: #ffff7f; }

/* ─── Inputs & buttons ───────────────────────────────────── */

button {
  font-family: 'JetBrains Mono', monospace;
  margin-top: 15px;
  padding: 10px 22px;
  background: #080808;
  color: #ffffff;
  border: 1px solid #222;
  cursor: pointer;
  font-size: 15px;
}

button:hover {
  background: #141414;
}

input {
  margin-top: 20px;
  padding: 10px;
  background: #080808;
  border: 1px solid #222;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
}


img {
  max-width: none;
  border: 16px solid rgba(30, 30, 30, 0.7);
  border-radius: 6px;
}


.grid {
  display: grid;
  grid-template-columns: repeat(3, 80px);
  grid-auto-rows: 80px;
  gap: 15px;
}

.grid button {
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px;
  width: 80px;
  height: 80px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

ul {
  text-align: left;
  margin-top: 10px;
}


body.home,
body.error {
  justify-content: flex-start;
  padding-top: 300px;
}

/* world select */

.descent-title {
  font-size: 20px;
  letter-spacing: 8px;
  color: #fff;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.25);
  margin-bottom: 20px;
}

.volcano-wrap {
  position: relative;
  display: inline-block;
  margin-left: 200px;   /* adjust to taste */
  margin-bottom: 100px;   /* adjust to taste */
}

.volcano-ascii {
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;       /* was 14px — change this to taste */
  line-height: 1.4;
  color: #C3110C;
  background: transparent;
  border: none;
  white-space: pre;
  display: block;
  padding-right: 200px;
}

/* ─── Annotation nodes ───────────────────────────────────── */

.ann {
  position: absolute;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  z-index: 20;
}

.ann-ring {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(116, 10, 3, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.25s, transform 0.3s;
}

.ann-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C3110C;
  box-shadow: 0 0 6px #C3110C;
  transition: background 0.25s, box-shadow 0.25s, transform 0.25s;
}

.ann-line {
  width: 60px;
  height: 1px;
  background: rgba(116, 10, 3, 0.45);
  flex-shrink: 0;
  transition: background 0.25s, box-shadow 0.25s;
}

.ann-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  color: #555;
  white-space: nowrap;
  transition: color 0.25s, text-shadow 0.25s, transform 0.2s;
}

/* Hover */
.ann:hover .ann-ring {
  border-color: #fff;
  transform: scale(1.3) rotate(90deg);
  border-style: dashed;
}

.ann:hover .ann-dot {
  background: #fff;
  box-shadow: 0 0 14px #fff;
  transform: scale(1.4);
}

.ann:hover .ann-line {
  background: #fff;
  box-shadow: 0 0 8px rgba(200, 60, 30, 0.5);
}

.ann:hover .ann-label {
  color: #fff;
  text-shadow: 0 0 14px rgba(200, 60, 30, 0.9);
  transform: translateX(6px);
}

.ann-crater  { top:  315px; left: 280px; }
.ann-throat  { top:  400px; left: 280px; }

.sky {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg,
    #020101 0%,
    #050202 25%;
  z-index: 0;
}

.shimmer {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.13) 3px,
    rgba(0,0,0,0.13) 4px
  );
}
.ann-conduit { top:  475px; left: 280px; }
.ann-chamber { top:  590px; left: 280px; }
