body {
  background-color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  margin: 0;
  padding-bottom: 80px;
}

.top-bar {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid #eee;
  background: #fff;
  font-size: 16px;
  font-weight: bold;
}

.top-bar .back-btn {
  font-size: 18px;
  color: #333;
  margin-right: 12px;
}

.task-tabs {
  display: flex;
  overflow-x: auto;
  border-bottom: 1px solid #eee;
  background-color: #fff;
}

.task-tabs .tab {
  flex: 1;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  color: #555;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}

.task-tabs .tab.active {
  color: #007bff;
  border-color: #007bff;
  font-weight: bold;
}

.task-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 12px;
}

.task-card {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  cursor: pointer;
}

.task-content {
  padding: 10px;
  font-size: 13px;
}

.task-title {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 4px;
  color: #111;
}

.task-meta {
  color: #888;
  font-size: 12px;
  margin-bottom: 6px;
}

.banner-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #f2f2f2;
  overflow: hidden;
  border-radius: 6px;
}

.banner-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.banner-wrapper .time-remaining {
  position: absolute;
  top: 6px;
  right: 6px;
  background: #e53935;
  color: #fff;
  padding: 2px 6px;
  font-size: 10px;
  border-radius: 10px;
  line-height: 1;
}

.task-tags {
  display: flex;
  flex-direction: column;
  margin-top: 6px;
  gap: 4px;
  font-size: 12px;
}

.task-tags span {
  background: #ff9800;
  color: #fff;
  border-radius: 4px;
  padding: 2px 6px;
  width: fit-content;
}

.author {
  display: flex;
  align-items: center;
  padding: 10px 12px 4px 12px;
  gap: 8px;
}

.author-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-nickname-group {
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  min-width: 0;
  flex-shrink: 1;
}

.author-nickname {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100px;
  line-height: 1;
}

.verification-icon {
  width: 16px;
  height: 16px;
  margin-left: 4px;
  object-fit: contain;
  flex-shrink: 0;
  vertical-align: middle;
  margin-top: 0 !important;
  border: none !important;
  border-radius: 0 !important;
}

img.verification-icon {
  margin-top: 0 !important;
  border: none !important;
  border-radius: 0 !important;
}
