body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0e0e1a;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.home-container {
  text-align: center;
}

.options {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.option {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s ease;
}

.option:hover {
  background: rgba(255, 255, 255, 0.1);
}

.option img {
  width: 50px;
  margin-bottom: 1rem;
}

footer {
  position: absolute;
  bottom: 1rem;
  display: flex;
  gap: 1rem;
}

footer img {
  width: 24px;
  height: 24px;
}

.report-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.report-form input,
.report-form textarea {
  padding: 0.5rem;
  border: none;
  border-radius: 6px;
}

.report-form button {
  background-color: #2d88ff;
  color: white;
  padding: 0.7rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.report-form button:hover {
  background-color: #1a5ed9;
}
