.tb-container {
  background-color: #000;
  color: #95a5a6;
  font-family: 'Orbitron', sans-serif;
  padding: 5px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 100px rgba(0, 0, 0, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
}

#tb-stage {
  border: 2px solid #1a1a1a;
}

/* UI New Style */
.tb-ui-new {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 250px;
  z-index: 20;
  pointer-events: none;
}

.tb-bar-container {
  width: 100%;
  height: 10px;
  background: rgba(255,255,255,0.1);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 8px;
  border: 1px solid rgba(255,255,255,0.2);
}

#tb-sanity-bar {
  width: 100%;
  height: 100%;
  background-color: #c0392b;
  transition: width 0.3s ease, background-color 0.5s;
}

#tb-stats-text {
  font-size: 0.8rem;
  color: #c0392b;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(192, 57, 43, 0.5);
}

/* Start Screen Overlay */
.tb-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100;
  text-align: center;
  padding: 40px;
}

.tb-title {
  font-size: 3.5rem;
  color: #c0392b;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(192, 57, 43, 0.8);
}

.tb-hint {
  color: #7f8c8d;
  margin-bottom: 30px;
  font-style: italic;
}

.tb-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  text-align: left;
  color: #bdc3c7;
  font-size: 1.1rem;
  line-height: 2;
}

.tb-list b { color: #fff; }

.tb-start-btn {
  background: transparent;
  color: #c0392b;
  border: 2px solid #c0392b;
  padding: 15px 40px;
  font-family: inherit;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s;
}

.tb-start-btn:hover {
  background: #c0392b;
  color: #000;
  box-shadow: 0 0 30px rgba(192, 57, 43, 0.5);
}

/* Game Over Messages */
.tb-msg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.98);
  padding: 3rem;
  border: 2px solid #c0392b;
  text-align: center;
  z-index: 150;
  display: none;
  min-width: 400px;
}

.tb-status-text {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  letter-spacing: 5px;
}

.tb-reset {
  margin-top: 2rem;
  background: #c0392b;
  color: #000;
  border: none;
  padding: 15px 30px;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: bold;
}
