body {
  font-family: 'Segoe UI', 'Montserrat', 'Roboto', sans-serif;
  background: linear-gradient(135deg, #3ee2f8 0%, #d874e8 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background: rgba(255,255,255,0.95);
  padding: 2.5rem 2rem;
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
  width: 420px;
  text-align: center;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
}

#quoteDisplay {
  margin-bottom: 1.2rem;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #333;
  letter-spacing: 0.02em;
}

#quoteInput {
  width: 100%;
  height: 100px;
  font-size: 1.05rem;
  padding: 0.7rem;
  margin-bottom: 1.2rem;
  border-radius: 8px;
  border: 1.5px solid #ACB6E5;
  background: #f7faff;
  transition: border 0.2s;
}
#quoteInput:focus {
  border-color: #74ebd5;
  outline: none;
}

.stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  color: #555;
}

button {
  padding: 0.6rem 1.3rem;
  font-size: 1.08rem;
  background: linear-gradient(90deg, #1cde80 0%, #d8da67 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(172,182,229,0.15);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
button:hover {
  background: linear-gradient(90deg, #ACB6E5 0%, #74ebd5 100%);
  transform: translateY(-2px) scale(1.04);
}
