body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #ff6a00, #ee0979);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
}

.container {
  background: rgba(0,0,0,0.6);
  padding: 20px;
  border-radius: 12px;
  width: 400px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

h1, h2 {
  text-align: center;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

textarea {
  padding: 10px;
  border-radius: 8px;
  border: none;
  resize: none;
  min-height: 100px;
  font-size: 14px;
  outline: none;
}

button {
  padding: 10px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: #8d1dd8;
  color: #fff;
  font-weight: bold;
  transition: background 0.3s;
}

button:hover {
  background: #e762d6;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  background: rgba(255,255,255,0.1);
  margin-bottom: 8px;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

li:hover {
  background: rgba(255,255,255,0.2);
}

footer{
    text-align: center;
    padding: 10px;
    background: linear-gradient(90deg, #e71c9a, #e95613);
    color: white;
    font-size: 14px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

footer strong{
    color: #fff5fb;
}