body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Fira Mono', 'Consolas', monospace;
  background: #111;
  overflow: hidden;
  color: #fff;
}
.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  filter: blur(16px) brightness(0.5);
  z-index: 0;
}
.terminal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #18181c;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  padding: 0 0 10px 0;
  color: #fff;
  font-size: 1.05rem;
  width: 900px;
  max-width: 99vw;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  text-align: left;
  border: 1.5px solid #23232a;
  min-height: 120px;
  height: auto;
}
.terminal pre {
  margin: 0;
  padding: 0 18px 0 18px;
  font-size: 1.01rem;
  line-height: 1.45;
  white-space: pre-wrap;
  font-family: 'Fira Mono', 'Consolas', monospace;
  background: none;
  color: #fff;
  text-align: left;
}
.apple-bar {
  display: flex;
  align-items: center;
  height: 32px;
  padding-left: 18px;
  border-radius: 14px 14px 0 0;
  background: #23232a;
  border-bottom: 1.5px solid #23232a;
  margin-bottom: 8px;
}
.apple-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  margin-right: 7px;
  display: inline-block;
}
.apple-dot.red { background: #ff5f56; border: 1px solid #e0443e; }
.apple-dot.yellow { background: #ffbd2e; border: 1px solid #dea123; }
.apple-dot.green { background: #27c93f; border: 1px solid #13a10e; }
.terminal .countdown {
  color: #ff5555;
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 10px;
  letter-spacing: 2px;
  text-align: left;
  padding-left: 18px;
}

.discord-btn {
  display: none;
}
.code-link {
  color: #00bfff;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s;
}
.code-link:hover {
  color: #00e6a8;
}
@media (max-width: 700px) {
  .terminal { font-size: 0.85rem; padding: 12px 4px; }
  .terminal pre { font-size: 0.85rem; }
}
