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

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background: #0f172a;
  color: #f8fafc;
}

header {
  background: linear-gradient(90deg, #f97316, #f59e0b);
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.44);
}

header h1 {
  font-size: 2.2rem;
  margin: 0;
  font-weight: 700;
}

header p {
  margin-top: 8px;
  color: #fff7ed;
  font-size: 1rem;
}

main {
  max-width: 800px;
  margin: 30px auto;
  background: #1e293b;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

textarea {
  width: 100%;
  height: 120px;
  padding: 12px;
  font-size: 15px;
  margin-bottom: 15px;
  border: 1px solid #334155;
  border-radius: 8px;
  resize: vertical;
  background: #0f172a;
  color: #f8fafc;
}

.buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

button {
  padding: 10px 20px;
  font-size: 15px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  background: linear-gradient(to right, #f97316, #f59e0b);
  color: white;
  box-shadow: 0px 4px 10px rgba(249, 115, 22, 0.3);
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}

button:hover {
  transform: scale(1.03);
  box-shadow: 0px 6px 14px rgba(249, 115, 22, 0.4);
}

pre {
  background: #0f172a;
  padding: 10px;
  border-radius: 6px;
  overflow-x: auto;
  font-size: 14px;
  border: 1px solid #334155;
}

h2 {
  margin-top: 25px;
  color: #fbbf24;
}

footer {
  margin-top: 40px;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  background: #1e293b;
  border-top: 1px solid #334155;
}

footer p {
  margin: 6px 0;
}

footer a {
  color: #f59e0b;
  text-decoration: none;
  font-weight: 500;
}

footer a:hover {
  text-decoration: underline;
}
