.yms-user-layout {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 50%, #a7f3d0 100%);
}

.yms-user-profile {
  position: relative;
  backdrop-filter: blur(25px);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 20px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.yms-user-profile:hover {
  transform: scale(1.01);
}

.yms-premium-badge {
  background: linear-gradient(45deg, #6366f1, #9333ea);
  animation: premiumGlow 2s ease-in-out infinite alternate;
}

@keyframes premiumGlow {
  from {
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
  }
  to {
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.6);
  }
}

.yms-reading-history {
  display: grid;
  gap: 1.5rem;
}

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

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

.yms-achievements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.yms-achievement-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.yms-achievement-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.2);
}