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

body {
  margin: 0;
  background-color: #0f0f0f;
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  width: 90%;
  max-width: 700px;
  background: #1a1a1a;
  border: 2px solid #ff6600;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 0 30px #ff660044;
}

h1 {
  text-align: center;
  color: #ff6600;
  text-shadow: 0 0 15px #ff660099;
}

.counter-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

textarea {
  width: 100%;
  height: 150px;
  background: #111;
  border: 2px solid #ff6600;
  border-radius: 10px;
  color: #fff;
  padding: 10px;
  font-size: 16px;
  resize: none;
  outline: none;
  transition: box-shadow 0.3s ease;
}

textarea:focus {
  box-shadow: 0 0 15px #ff6600;
}

.result-box {
  background: #222;
  border-radius: 12px;
  padding: 15px;
  border: 1px solid #ff6600;
  text-align: center;
}

.result-box p {
  font-size: 18px;
  margin: 8px 0;
}

strong {
  color: #ff6600;
}
