.comments-container {
  max-width: 800px;
  margin: 50px auto;
  padding: 30px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.comments-header {
  text-align: center;
  margin-bottom: 30px;
}

.comments-header h1 {
  font-size: 36px;
  margin-bottom: 15px;
  color: white;
  text-shadow: 0 0 10px rgba(106, 17, 203, 0.8);
}

.comments-header p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.comment-form {
  margin-bottom: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: white;
}

.form-control {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: white;
  font-family: inherit;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  padding: 12px 25px;
  background: linear-gradient(to right, #6a11cb, #2575fc);
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(to right, #5a0cb1, #1565ec);
}

.comments-list {
  margin-top: 40px;
}

.comment {
  padding: 15px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.comment-author {
  font-weight: bold;
  color: #6a11cb;
}

.comment-date {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.comment-content {
  color: white;
  line-height: 1.6;
}

.no-comments {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  margin: 30px 0;
}
