
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #0d0d0d url('img/bg.jpg') no-repeat center center fixed;
  background-size: cover;
  color: white;
}
.container {
  max-width: 600px;
  margin: auto;
  padding: 20px;
}
header {
  text-align: center;
  margin-bottom: 20px;
}
header img {
  max-width: 150px;
}
.form-section, .terminal-section, .comments-section {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
}
input, select, button {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: none;
}
button {
  background-color: #ff0033;
  color: white;
  font-weight: bold;
  cursor: pointer;
}
#unlock-btn {
  background: linear-gradient(to right, #ff416c, #ff4b2b);
  font-size: 18px;
  padding: 12px;
}
.comment {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.comment img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}
footer {
  text-align: center;
  font-size: 14px;
  margin-top: 30px;
  opacity: 0.6;
}
