/* === Modal === */
.modal {
  display: flex;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}
.modal-content {
  background: #111;
  padding: 20px;
  border-radius: 12px;
  max-width: 420px;
  width: 90%;
  color: rgb(252, 252, 252);
  text-align: center;
}
.modal input {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  background-color: #222;
  border: 1px solid #555;
  color: white;
}
.unlock-btn {
  padding: 10px 20px;
  background: #6e1104;
  color: white;
  border: none;
  border-radius: 5px;
}
.error-message {
  color: #e74c3c;
  display: none;
}

/* === Terminal Blocks === */
.chirpy-terminal {
  border-radius: 8px;
  overflow: hidden;
  margin: 1.5rem 0;
  border: 1px solid #333;
  background: #26676a;
  box-shadow: 0 0 5px #000;
}
.chirpy-terminal-header {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  background: #2d2d2d;
  color: #ccc;
  font-size: 0.8rem;
  font-family: monospace;
  border-bottom: 1px solid #444;
  text-transform: uppercase;
}
.chirpy-terminal pre,
.chirpy-terminal pre code {
  background: transparent !important;
  color: #ddd !important;
  font-family: monospace;
  font-size: 0.9rem;
  overflow-x: auto;
  margin: 0;
  padding: 1rem;
  box-shadow: none !important;
  border: none !important;
  white-space: pre;
  display: block;
}
.hljs.language-bash,
.hljs.language-sh,
.hljs.language-shell {
  background: transparent !important;
  color: inherit !important;
}
