* {
  font-family: Inter;
}

.star {
  width: 20px;
  height: 20px;
  color: #ffe500;
}

.comment-container {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.avatar {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border: 1px solid rgb(224, 224, 224);
  border-radius: 50%;
  background-color: #f1f5f9;
  color: #334155;
}

.comment-content {
  flex: 1;
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.comment-name {
  font-weight: 600;
  color: #1e293b;
}

.comment-time {
  font-size: 14px;
  color: #64748b;
}

.verified-badge {
  background-color: #ecfdf5;
  color: #047857;
  border: 1px solid #34d399;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50px;
  font-weight: bold;
}

.comment-text {
  color: #475569;
  margin-bottom: 8px;
}

.like-button {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #64748b;
  cursor: pointer;
}

.like-button:hover {
  color: #0050aa;
}

.like-icon {
  width: 16px;
  height: 16px;
}

#renderWelcome {
  opacity: 1;
  transition: opacity 0.1s ease-in-out;
}

#renderSurvey {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

#renderProcessing {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

#renderReward {
  opacity: 1;
  transition: opacity 1.4s ease-in-out;
}

.hidden-class {
  opacity: 0 !important;
  pointer-events: none;
  max-height: 0;
  visibility: hidden;
}

.content-class {
  width: 100%;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  display: block;
}

#footer-bottom {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px 0;
  position: relative;
  width: 100%;
}

.footer-content {
  flex: 1;
  padding: 20px;
}

wjEtEfU7z { background-color: red; }