/* My List 页面样式 */
.mylist-page {
  padding-bottom: 70px;
}

.tabs {
  display: flex;
  gap: 0;
  padding: 16px;
  background: var(--surface);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-btn {
  flex: 1;
  padding: 10px 20px;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: none;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}

.tab-btn.active {
  color: white;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}

.tab-content {
  padding: 16px;
}

/* For you 页面样式 */
.foryou-page {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  z-index: 1000;
  overflow: hidden;
}

.foryou-initial-loading {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  gap: 16px;
}

.foryou-swiper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.foryou-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.foryou-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.foryou-actions {
  position: absolute;
  right: 12px;
  bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 10;
}

.foryou-actions .action-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  transition: transform 0.2s;
}

.foryou-actions .action-btn:active {
  transform: scale(0.9);
}

.foryou-info {
  position: absolute;
  bottom: 80px;
  left: 16px;
  right: 80px;
  z-index: 10;
  color: white;
}

.foryou-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.foryou-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.foryou-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.foryou-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  pointer-events: none;
  z-index: 5;
}

.foryou-loading {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

/* Rewards 页面样式 */
.rewards-page {
  padding-bottom: 70px;
}

.rewards-content {
  padding: 40px 20px;
}

.placeholder-box {
  text-align: center;
  padding: 60px 20px;
  background: var(--surface);
  border-radius: 12px;
  margin: 20px;
}

.placeholder-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.placeholder-hint {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}
