}

.yymh-updates-layout {
  background: linear-gradient(135deg, #0f0f23 0%, #16213e 50%, #1a1a2e 100%);
}

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

.yymh-update-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #a855f7, #3b82f6, #06b6d4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.yymh-update-card:hover {
  transform: translateY(-8px) scale(1.03);
}

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

.yymh-update-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #a855f7, #3b82f6);
}

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

.yymh-timeline-dot {
  position: absolute;
  left: 12px;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #a855f7;
  border: 3px solid #1a1a2e;
  transition: all 0.3s ease;
}

.yymh-timeline-item:hover .yymh-timeline-dot {
  transform: scale(1.3);
  border-color: #a855f7;
}

.yymh-new-series {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.yymh-series-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s ease;
  overflow: hidden;
}

.yymh-series-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(59, 130, 246, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.yymh-series-card:hover::after {
  opacity: 1;
}

.yymh-series-card:hover {
  transform: translateY(-5px);
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.3);
}

.yymh-progress-bar {
  position: relative;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin: 1rem 0;
}

.yymh-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #a855f7, #3b82f6);
  border-radius: 3px;
  width: var(--progress, 0%);
  transition: width 0.8s ease-out;
}
@media (max-width: 768px) {
  .yymh-update-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .yymh-new-series {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .yymh-timeline-item {
    padding-left: 40px;
    margin-bottom: 2rem;
  }
}