.yms-trending-layout {
  background: linear-gradient(135deg, #fef2f2 0%, #fed7aa 50%, #fef3c7 100%);
}

.yms-update-card {
  position: relative;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.yms-update-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #dc2626, #ea580c, #f59e0b);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.yms-update-card:hover::before {
  opacity: 1;
}

.yms-update-card:hover {
  transform: translateY(-5px) scale(1.02);
}

.yms-update-timeline {
  position: relative;
}

.yms-update-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #6366f1, #9333ea);
}

.yms-timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 3rem;
}

.yms-timeline-dot {
  position: absolute;
  left: 12px;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #6366f1;
  border: 3px solid #f1f5f9;
  transition: all 0.3s ease;
}

.yms-timeline-item:hover .yms-timeline-dot {
  transform: scale(1.3);
  border-color: #6366f1;
}

.yms-progress-bar {
  position: relative;
  height: 6px;
  background: rgba(99, 102, 241, 0.2);
  border-radius: 3px;
  overflow: hidden;
  margin: 1rem 0;
}

.yms-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #6366f1, #9333ea);
  border-radius: 3px;
  width: var(--progress, 0%);
  transition: width 0.8s ease-out;
}

@media (max-width: 768px) {
  .yms-update-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .yms-timeline-item {
    padding-left: 40px;
    margin-bottom: 2rem;
  }
}