body {
  font-family: 'Segoe UI', sans-serif;
  background: #0f172a;
  color: #d0faff;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px; /* Added padding for mobile spacing */
}

.container {
  width: 90%;
  max-width: 600px;
  background: #1e293b;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
  text-align: center;
}

h1 {
  color: #7dd3fc;
  margin-bottom: 20px;
}

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

button {
  padding: 10px 20px;
  background-color: #06b6d4;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 20px;
}

button:hover {
  background-color: #0ea5e9;
}

a {
  color: #93c5fd;
  text-decoration: none;
  display: block;
  margin-top: 10px;
}

.home-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.btn {
  padding: 12px 30px;
  font-size: 18px;
  background-color: #06b6d4;
  border: none;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn:hover {
  background-color: #0ea5e9;
}

button[type="button"] {
  background-color: #3b82f6;
  margin-top: 10px;
}

button[type="button"]:hover {
  background-color: #60a5fa;
}

/* ✅ Mobile Responsive Styles */
@media screen and (max-width: 480px) {
  body {
    flex-direction: column;
    padding: 15px;
  }

  .container {
    padding: 20px;
    font-size: 14px;
  }

  h1 {
    font-size: 1.5rem;
  }

  textarea {
    font-size: 14px;
    height: 100px;
  }

  button,
  .btn {
    width: 100%;
    font-size: 16px;
    padding: 10px;
  }

  .home-buttons {
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

  a {
    font-size: 0.95rem;
  }
}
